@charset "UTF-8";
/* $Id: layout_base_2.css 200 2010-05-13 13:28:56Z wah $ */

.base-layout #main-container {
	float: left;
	width: 690px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	background-color: #000;
}

/* LED Slide Menu */
/* remove the list style */
#nav {
	margin:0;
	padding:0;
	list-style:none;
}
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left;
	display:block;
	width:134px;
	/*background:#fff;*/
	position:relative;
	z-index:500;
	margin:0;
}
/* this is the parent menu */
#nav li a {
	display:block;
	padding:0;
	font-weight:700;
	height:53px;
	text-decoration:none;
	color:#fff;
	text-align:left;
}
#nav li a:hover {
	color:#01bcf3;
}
/* you can make a different style for default selected value */
#nav a.selected {
	color:#01bcf3;
}
/* submenu, it's hidden by default */
#nav ul {
	position:absolute;
	left:0;
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}
#nav ul li {
	width:130px;
	float:left;
	/*border-top:1px solid #fff;*/
	background-image:url('/images/share/buttons/intro_sub_box.png');
}
#nav ul li.last {
	background-image:url('/images/share/buttons/intro_sub_box_last.png');
}
/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;
	height:16px;
	padding:2px 10px;
	color:#fff;
}
#nav ul a:hover {
	/*text-decoration:underline;*/
}
/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
	margin:0 0 0 -2px;
}
