﻿#menu_navigation {
	float:right;
	width: 150px;             /* LC width */
    font-size:12px;
	background-color:lightblue;
}

.opt_box
{
	padding-bottom:5px;
	margin-right:5px;
	width:70px;
	float:left;
	background-color:yellow;
}
		
/* We remove the margin, padding, and list style of UL and LI components */
#menu_wrapper ul, #menu_wrapper ul li{
    margin:0;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menu_wrapper ul li{
    background-color:#7f95db;
    border-bottom:solid 2px white;
    width:60px;
	cursor:pointer;
}

/* We apply width to any images */
#menu_wrapper ul li img{
    width:50px;
}

/* We apply the background hover color when user hover the mouse over of the li component */
/* for IE < 9 we using class .iehover */
#menu_wrapper ul li:hover,
#menu_wrapper ul li.iehover{
    background-color:#6679e9;
    position:relative;
}

/* We apply the link style */
#menu_wrapper ul a li{
    padding:5px 0 0 10px;
    color:#ffffff;
	font-weight:bold;
    display:inline-block;
    text-decoration:none;
}



/* Clear float */
.clear{
    clear:both;
}