@charset "utf-8";
/* CSS Document */

/* Define the body style */
body {
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #000;
	background-image:url(images/backback.png);
	margin: 16px 0px 0px 0px;
	padding: 0;
	color: #fff;
}

/* We remove the margin, padding, and list style of UL and LI components */
#menuwrapper ul, #menuwrapper ul li{
    margin:0;
    padding:0;
    list-style:none;
}

/* We apply background color and border bottom white and width to 150px */
#menuwrapper ul li{
    background-color:#000;
    background: -moz-linear-gradient(top, #111111 0, #000000 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #111111), color-stop(100%, #000000));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111', endColorstr='#000000', GradientType=0);
    border-bottom:solid 0px #000;
    width:180px;
    cursor:pointer;
}

/* We apply the background hover color when user hover the mouse over of the li component */
#menuwrapper ul li:hover{
    background-color:#222;
    background: -moz-linear-gradient(top, #111111 0, #222222 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #111111), color-stop(100%, #222222));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#111111', endColorstr='#222222', GradientType=0);
    position:relative;
}

/* We apply the link style */
#menuwrapper ul li a{
    padding:5px 15px;
    color:#ffffff;
    !text-shadow: #0000ff 1px 1px 1px;
    display:block;
    text-decoration:none;
}

/**** SECOND LEVEL MENU ****/
/* We make the position to absolute for flyout menu and hidden the ul until the user hover the parent li item */
#menuwrapper ul li ul{

    position:absolute;
    display:none;
}

/* When user has hovered the li item, we show the ul list by applying display:block, note: 150px is the individual menu width.  */

#menuwrapper ul li:hover ul{
    left:180px;
    top:0px;
    display:block;
}

/* we apply different background color to 2nd level menu items*/
#menuwrapper ul li ul li{
    background: -moz-linear-gradient(top, #222222 0, #333333 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #222222), color-stop(100%, #333333));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#333333', GradientType=0);
    color: #000;
}

/* We change the background color for the level 2 submenu when hovering the menu */

#menuwrapper ul li:hover ul li:hover{

    background: -moz-linear-gradient(top, #444444 0, #666666 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #444444), color-stop(100%, #666666));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#666666', GradientType=0);

    !background-color:#666;
    color: #fff;
}

/* We style the color of level 2 links */
#menuwrapper ul li ul li a{
    color:#fff;
    display:block;
    width:180px;
}

/**** THIRD LEVEL MENU ****/
/* We need to hide the 3rd menu, when hovering the first level menu */

#menuwrapper ul li:hover ul li ul{
    position:absolute;
    display:none;
}

/* We show the third level menu only when they hover the second level menu parent */

#menuwrapper ul li:hover ul li:hover ul{
    display:block;
    left:180px;
    top:0;
}

/* We change the background color for the level 3 submenu*/

#menuwrapper ul li:hover ul li:hover ul li{
    background: -moz-linear-gradient(top, #888888 0, #999999 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #888888), color-stop(100%, #999999));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#999999', GradientType=0);
    !background:#888;
    color:#fff;
}

/* We change the background color for the level 3 submenu when hovering the menu */

#menuwrapper ul li:hover ul li:hover ul li:hover{
    background: -moz-linear-gradient(top, #999999 0, #aaaaaa 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #999999), color-stop(100%, #aaaaaa));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#999999', endColorstr='#aaaaaa', GradientType=0);
    !background:#bbb;
}

/* We change the level 3 link color */

#menuwrapper ul li:hover ul li:hover ul li a{
    color:#ffffff;
}

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

ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px; 
}
a img { 
	border: none;
}

a:link {
	color: #FFD200;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #6E6C64;
	font-weight: bold;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	text-decoration: underline;
}

.container {
	width: 960px;
	background: #000;
	margin: 0 auto;
	border: 1px solid #111;
}

.header {
	background: #000;
}

.sidebar1 {
	float: left;
	width: 180px;
	background: #000;
	!background-image:url(images/contback.png);
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 600px;
	float: left;

	!background-image:url(images/contback.png);
}
.sidebar2 {
	float: left;
	width: 180px;
	background: #000;
	!background-image:url(images/contback.png);	
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px;
}

ul.nav {
	list-style: none; 
	border-top: 1px solid #666;
	margin-bottom: 15px;
}

ul.nav li {
	border-bottom: 1px solid #666;
}
ul.nav a, ul.nav a:visited { 
	padding: 5px 5px 5px 15px;
	display: block;
	width: 160px;
	text-decoration: none;
	background: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
	background: #FFD200;
	color: #FFF;
}

.footer {
	padding: 5px 0;
	font-size:9px; 
	background: #000;
	position: relative;
	clear: both;
}

.fltrt { 
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

h1 {
	font-size: 24px;
	color: #FFD200;
}
h2 {
	font-size: 18px;
	color: #FFD200;
}
h3 {
	font-size: 14px;
	color: #FFD200;
}
h4 {
	font-size: 12px;
	color: #FFD200;
}

h5 {
	font-size: 9px;
	color: #FFD200;
}
h6 {
	font-size: 9px;
	color: #FFF;
	text-align:center;
	margin-top:auto;
}

hr {
	topmargin: 0;
	border: none;
	background-color: #111;
	color: #111;
	height: 1px;
	width: 100%;
}