/* CSS Document */

/* Adapted from: 
 *	Horizontal, top-2-bottom
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 *	(c) 2004 - Aleksandar Vacic, www.aplus.co.yu
 * Some rights reserved, http://creativecommons.org/licenses/by/2.0/
 *	- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 */

/*		------	Basic style	------		*/

#menuup {
	display: block;
}

#menuup ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	font-size: 15px; /* needed to keep IE from text-sizing and falling apart */
}

#menuup li {
	margin: 0;
	padding: 0;
	display: block;
	float: left;
	position: relative;
}

#menuup a {
	display: block;

}

#menuup li li {
	width: 100%;
}

/* fix the position for 2nd level submenuups. first make sure no horizontal scrollbars are visible on initial page load... */
#menuup li li ul {
	top: 0;
	left: 0;
}

/* ...and then place it where it should be when shown */
#menuup li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menuups */
#menuup li ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
#menuup li:hover>ul {
	display: block;
}

/* this is needed if you want to style #menuup div - force containment of floated LIs inside of main UL */
#menuupList:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

/* Clear-fix for IE5/Mac \*//*/
#menuupList {
	display: inline-block;
}
/*  */

/*		------   Make-up	--------			*/

#menuup {
	margin-top: 0;
}

#menuup a {
	padding: 4px 0;
	width: 97px;
}

#menuup li:hover>a {
	background-position: 0 100%;
}

li#userv {
	border: none;
}

/* images */

#thome a {
	width: 60px;
}

#ttime a {
	width: 80px;
}

#tprofile a {
	width: 72px;
}

#tcomms a {
	width: 101px;
}

#tfly a {
	width: 89px;
}

#tpetition a {
	width: 176px;
}

#tnews a {
	width: 50px;
}

/* tweaks */

#uservMenu, #uaucMenu {
	left: auto;
	right: 0;
}

