﻿.menuContainer{
	width:100%;
	background-color:#336699;
	height:30px;

	.menuItem{
		border-left-style:solid;
		border-left-color:#ffffff;
		border-left-width:1px;
		float:left;
		width:150px;
		height:30px;
		color:#ffffff;	
		text-align:center;
		font-size:1.6em;
		padding-top:5px;
		cursor:pointer;

		&:hover{
			background-color:#FF9900;
		}
	}

	.menuItemFirst{
		.menuItem;
		border-style:none;	
	}

	.menuItemSelected{
		.menuItem;
		cursor:default;
		background-color:#FF9900;	
	}

	.menuItemSelectedFirst{
		.menuItemSelected;
		border-style:none;	
	}
}