#bottom_menu {
	height: 38px;
	color: white;	
	font-size: 12px;
	/*font-family: Arial,Tahoma,Verdana,sans-serif;*/
	width: 750px;
	float: left;
}

#bottom_menu a {
	color: white;
}

ul#primary-nav2 li {
/* floating left will set menu items to line up left to right else they will stack top to bottom */
	float: left;
/* no margin/padding keeps them next to each other, the padding will be in the "a" */
	margin: 0px;
	padding: 0px;
}

ul#primary-nav2 li a {
/* specific font size, this could be larger or smaller than default font size */
	font-size: 1em;
/* make sure we keep the font normal */
	font-weight: normal;
/* set default link colors */
	color: #fff;
/* pushes out from the text, sort of like making links a certain size, if you give them a set width and/or height you may limit you ability to have as much text as you need */
	padding: 11px 12px 11px 12px;  /*padding na dole odsuwa drugi poziom menu*/
	
	display: block;
/* sets no underline on links */
	text-decoration: none;
}


