/* 
	Author: Bryan Husinger
	Website: http://www.bryanhunsinger.com
	Email: bryanhun@gmail.com
*/

* {
	margin: 0;
	padding: 0;
}

body {
	margin: 20px 0;
	background: #FFFFFF;
	font: normal 13px Arial, Helvetica, sans-serif;
	color: #666666;
}

a {
	color: #253b92;
}

a:hover {
	text-decoration: none;
	color: #E16629;
}

/* Boxed */

.title {
	background: url(images/img4.gif) no-repeat right center;
	border-bottom: 3px solid #CFCFCF;
}

.boxed1 .title {
	font: bold 100% "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.boxed1 .content {
	background: url(images/img05.gif) no-repeat left bottom;
	padding: 20px;
}

.boxed2 .title {
	font: normal 132% "Trebuchet MS", Arial, Helvetica, sans-serif;
	padding-top:5px;
}

.boxed2 .content {
	background: url(images/img06.gif) repeat-x left bottom;
	padding: 20px;
}

.boxed3 .title {
	font: normal 129% "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.boxed3 .content {
	padding: 20px;
}

.boxed3 ol, .boxed3 ul {
	margin-left: 1em;
}


/* Header */

#header {
	width: 760px;
	height: 161px;
	margin: 0 auto;
	background: url(img02_2.jpg) no-repeat 100% 0px;
	background-position:middle;
	/*background-color: #00FF00;*/
	/*border-bottom: 5px solid #E16629;*/
}

/* Logo */

#logo {
	float: left;
	width: 240px;
	height: 160px;
	background: #253b92 url(images/logo.gif) no-repeat center;
	text-align: center;
}

#logo h1 {
	padding-top: 80px;
	font: bold 36px Georgia, "Times New Roman", Times, serif;
}

#logo h2 {
	font: bold 11px Verdana, Arial, Helvetica, sans-serif;
}

#logo a {
	text-decoration: none;
	color: #FFFFFF;
}

/* Menu */

/* style the outer div to give it width */
.menu {
	width: 760px;
	height: 40px;
	background: #F4F4F4;
	text-align:center;
	margin:auto;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	height: 5px;
	background:#;
	background: url(images/nav_bg.jpg) repeat-x;
	list-style: none;
}
.menu ul ul {
	width:150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	position:relative;
	text-align:left;
	font-size:14px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	float: left;
	height: 25px;
	padding: 10px 10px 0 10px;
	border-top: 5px solid #E16629;
	text-decoration: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}
* html .menu ul a, * html .menu ul a:visited {width:auto;w\idth:auto; background-color:#f4f4f4;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#fff;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background: #000;
	border-top-color: #E16629;
}
.menu ul ul :hover > a.drop {
	background: #000;
	border-top-color: #E16629;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #fff;
	border-top-color: #fff;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #000;
	border-top-color: #E16629;
}
.menu ul ul ul :hover > a {
	background: #000;
	border-top-color: #E16629;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:40px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:40px;
t\op:40px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#253b92; /*F4F4F4*/
	color:#fff; /*000*/
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:160px /* second level link width ************/
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width:170px; 
	w\idth:170px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	border-top-color: #253b92;
	color:#E16629;
}
.menu :hover > a, .menu ul ul :hover > a {
	border-top-color: #253b92;
		color:#E16629;

}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

/*
#menu {
	float: left;
	width: 520px;
	height: 40px;
	background: #F4F4F4;
}

#menu ul {
	height: 5px;
	background: #253b92;
	list-style: none;
}

#menu li {
	display: inline;
}

#menu a {
	display: block;
	float: left;
	height: 25px;
	padding: 10px 14px 0 14px;
	border-top: 5px solid #253b92;
	text-decoration: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
}

#menu a:hover {
	background: #000;
	border-top-color: #E16629;
}

#menu .active a {
	background: #FFA800;
	border-top-color: #E16629;
}

#menu a b {
	text-decoration: underline;
}
*/
/* Page */

#page {
	width: 760px;
	margin: 0 auto;
	/*background: url(images/img03.gif) repeat-y;*/
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
}

/* Content */

#content {
	float: right;
	width: 480px;
	padding: 20px;
	border-bottom: 1px solid #FFFFFF;
}

#content p, #content ol, #content ul {
	line-height: 152%;
}

/* Sidebar */

#sidebar {
	float: left;
	width: 200px;
	padding: 20px;
	background: url(images/img03.gif) repeat-y;

}

/* News */

#news {
	padding-top: 10px;
	padding-bottom: 0;
}

#news ul {
	list-style-type: square;
}

#news li {
	margin-bottom: 0px;
}

#news h3 {
	margin-bottom: 10px;
	font-size: 92%;
}

#news h3 a {
	display: block;
}

#news p {
	font-size: 85%;
}

/* Welcome */

#welcome {
	margin-bottom: 20px;
}

/* Samples */

#sample1, #sample2 {
	float: left;
	width: 230px;
}

#sample1 {
}

#sample2 {
	margin-left: 20px;
}

/* Footer */

#footer {
	width: 760px;
	margin: 0 auto;
	padding: 20px 0;
	border-top: 5px solid #E16629;
}

#footer p {
	text-align: center;
	font-size: 77%;
}