/* ----------- layout.css ---------------------------- */

* {
 font-family: Verdana, Arial, Helvetica, sans-serif;
 padding: 0;
 margin: 0;
}

#background {
	background-color: #370000;
}

#main {
	background-color: #FFFFFF;
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	border: 20px solid #800000;
}
#header { margin-left: 10px; margin-top: 10px; padding-top: 10px; height: 320px; }
#body { margin: 10px; }
#footer {
	color: #6C6C6C;
	font-weight: bold;
	font-size: 12px;
	margin: 10px;
	padding-top: 5px;
	border-top: 2px solid #6C6C6C;
}

ul#menu {
	width: 100%;
	height: 43px;
	background: #FFF url("../img/menu-bg.gif") top left repeat-x;
	font-size: 0.8em;
	font-family: "Lucida Grande", Verdana, sans-serif;
	font-weight: bold;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
ul#menu li {
	display: block;
	float: left;
	margin: 0 0 0 5px;
	padding: 0px;
}
ul#menu li a {
	height: 35px;
	color: #777;
	text-decoration: none;
	display: block;
	float: left;
	line-height: 200%;
	padding: 8px 15px 0;
}
ul#menu li a:hover {
	color: #333;
}

ul#menu li.userDetails {
	height: 35px;
	color: #333;
	text-decoration: none;
	display: block;
	float: right;
	line-height: 200%;
	padding: 8px 2px 0;
}
ul#menu li a.current {
	color: #FFF;
	background: #FFF url("../img/current-bg.gif") top left repeat-x;
	padding: 5px 15px 0;
}


/* Side menu */

#side-menu {
	width: 225px;
	float: left;
	margin-top: 25px;
	/*border-top: #800000 1px solid;*/
	border-bottom: #800000 1px solid;
}

#side-menu ul {
	width: 100%;
	height: 100%;
	font-size: 12px;
	font-family: "Lucida Grande", Verdana, sans-serif;
	font-weight: bold;
	list-style-type: none;
	margin: 0px;
	padding: 0;
}
#side-menu ul.sub-menu {
	padding-left: 15px;
}
#side-menu ul li {
	padding: 10px 5px;
	color: #333333;
	border-right: #800000 1px solid;
	border-top: #800000 1px solid;
}
#side-menu ul li.header-expanded {
	background: url(../img/down-arrow.gif) 3px 13px no-repeat;
}
#side-menu ul li.header-collapsed {
	background: url(../img/right-arrow.gif) 3px 13px no-repeat;
}
#side-menu ul a , #side-menu ul p{
	color: #333333;
	text-decoration: none;
	margin-left: 15px;
	padding-top: 0px;
	padding-bottom: 0px;
}
#side-menu ul li.leaf {
	border-bottom: #333333 1px solid;
	background: url(../img/thin-right-arrow.gif) 3px 13px no-repeat;
}
#side-menu ul li.leaf a {
	margin-left: 15px;
}
#side-menu ul li:hover {
	background-color: #F7F7F7;
	color: #80;
}
#side-menu ul a:hover {
	color: #800000;
}

/* Content */
#content {
	width: 725px;
	float: right;
}
div.section { margin-top: 20px; border: 1px solid #969696; padding: 5px; font-size: 12px; }
div.section h3 {
	font-weight: bold;
	font-size: 18px;
	color: #000000;
	background-color: #575757;
	color: #FFFFFF;
	border-top: 2px solid #000000;
	border-bottom: 2px solid #000000;
	padding: 5px;
}
div.section h3.expanded  {
	background-image:url('../img/panel-up-arrow.png');
	background-repeat: no-repeat;
	background-position: 98% 5px;
}
div.section h3.collapsed {
	background-image:url('../img/panel-down-arrow.png');
	background-repeat: no-repeat;
	background-position: 98% 5px;
}
div.section h3.expanded:hover, div.section h3.collapsed:hover {
	background-color: #ADADAD;
	border-top: 2px solid #575757;
	border-bottom: 2px solid #575757;
	cursor: pointer;
}
div.section hr {  margin: 0px 10px; color: #575757; }
div.panel { padding: 15px; }
.clear { clear: both; }

/* -----End of layout.css ------------- */