@charset "utf-8";

/* CSS Document */

/* Clear browser defaults */
h1,h2,h3,h4,p,a,img {
	margin: 0px;
	border: 0px;
	padding: 0px;
}

/* Page structure divs */
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align:center;
	background: #efc;
	margin: 0px;
	padding: 0px;
	border-width: 0px;
	color: #000;
	border-style: none;
	font-size: 75%;
}
#wrapper {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	position:relative;
}
#header {
	background-color:#efc;
	z-index:100;
	width:900px;
	height: 150px;
	position: fixed;
	top: 0px;
}
#leftpane {
	z-index:100;
	text-align:left;
	position:fixed;
	margin-top:150px;
	padding-left:10px;
	width: 200px;
	height:100%;
}
#window {
	text-align:left;
	padding:20px;
	top:150px;
	width:750px;
	overflow:visible;
	z-index:1;
	position: relative;
	left: 200px;
}
#logo {
	float:left;
	position:static;
	width:200px;
	height:140px;
	background: url(../images/logo.png) no-repeat center center;
	margin: 5px;
}
.headertitle {
	float:left;
	position:static;
	width:680px;
	margin:5px;
	height:65px;
	line-height:65px;
	vertical-align:middle;
	text-align:center;
}
.headerbox {
	float:left;
	position:static;
	display:block;
	width:680px;
	margin:0px;
	height:80px;
	line-height:80px;
	vertical-align:middle;
	text-align:center;
}

/* nav horizontal menu div */
#nav {
	text-align:left;
	display:block;
	margin:0 auto;
	padding: 7px 6px 0;
	line-height: 100%;
	border-radius: 2em;

	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);

	background: #8b8b8b; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#a9a9a9', endColorstr='#7a7a7a'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#a9a9a9), to(#7a7a7a)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #a9a9a9,  #7a7a7a); /* for firefox 3.6+ */

	border: solid 1px #6d6d6d;
}
#nav li {
	margin: 0 5px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#nav a {
	font-weight: bold;
	color: #e7e5e5;
	text-decoration: none;
	display: block;
	padding:  8px 20px;
	margin: 0;
	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1); /* for firefox 3.6+ */

	color: #444;
	border-top: solid 1px #f8f8f8;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}
/* sub levels link hover */
#nav ul li:hover a, #nav li:hover li a {
	background: none;
	border: none;
	color: #666;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav ul a:hover {
	background: #0399d4 !important; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#04acec', endColorstr='#0186ba'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top,  #04acec,  #0186ba) !important; /* for firefox 3.6+ */

	color: #fff !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}
/* level 2 list */
#nav ul {
	background: #ddd; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fff,  #cfcfcf); /* for firefox 3.6+ */

	display: none;
	margin: 0;
	padding: 0;
	/* width was...
	width: 185px; */
	width:auto;
	position: absolute;
	top: 35px;
	left: 0;
	border: solid 1px #b4b4b4;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
/* dropdown */
#nav li:hover > ul {
	display: block;
}
#nav ul li {
	float: none;
	margin: 0;
	padding: 0;
}
#nav ul a {
	font-weight: normal;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .9);
}
/* level 3+ list */
#nav ul ul {
	left: 181px;
	top: -3px;
}
/* rounded corners for first and last child */
#nav ul li:first-child > a {
	-webkit-border-top-left-radius: 9px;
	-moz-border-radius-topleft: 9px;
	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topright: 9px;
}
#nav ul li:last-child > a {
	-webkit-border-bottom-left-radius: 9px;
	-moz-border-radius-bottomleft: 9px;
	-webkit-border-bottom-right-radius: 9px;
	-moz-border-radius-bottomright: 9px;
}
/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
}
html[xmlns] #nav {
	display: block;
}
* html #nav {
	height: 1%;
}



/* Logo and home button */
.headerlogo {
	float:left;
	position:static;
	width:200px;
	height:140px;
	line-height:140px;
	margin:5px;
	background-image:url(../images/buttons/logobutton.png);
	background-position:top left;
}
a.headerlogo:link{
	background-position:top left;
}
a.headerlogo:visited{
	background-position:top left;
}
a.headerlogo:hover{
	background-position:top left;
}
a.headerlogo:active{
	background-position:bottom left;
}

#headermenu {
	float:left;
	position:static;
	height:30px;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
	margin-bottom:5px;
}
a:link {
	color:#900;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #900;
}
a:hover {
	color:#333;
	text-decoration:underline;
}
a:active {
	text-decoration: none;
	color: #FFF
}
.mainheadmenuend {
	height: 30px;
	width: 45px;
	float: left;
	background-image: url(../images/buttons/menustripends.png);
}
.bglt {
	background-position: top left;
}
.bgrt {
	background-position: top right;
}
.bglb {
	background-position: bottom left;
}
.bgrb {
	background-position: bottom right;
}
.thisbutton {
	background-position: top right;
}
.mainheadmenubutton {
	height: 30px;
	width: 100px;
	background-image: url(../images/buttons/menustrip.png);
	text-align: center;
	vertical-align: middle;
	float: left;
	line-height: 30px;
}
a.mainheadmenubutton:link {
	color:#999;
	background-position: top left;
}
a.mainheadmenubutton:visited {
	color:#999;
	background-position: top left;
}
a.mainheadmenubutton.thisbutton:link {
	color:#999;
	background-position: top right;
}
a.mainheadmenubutton:hover {
	color:#FFF;
	text-decoration:none;
	background-position: bottom left;
}
a.mainheadmenubutton:active {
	background-position: bottom right;
}
.floatbox {
	position:static;
	float:left;
	padding:5px;
	margin:5px;
}
.centerbox {
	text-align:center;
/*	position:static;
/*	width:500px; */
	margin-left:auto;
	margin-right:auto;
/*	padding:5px; */
}
.foc {
	color:#000;
	cursor:default;
}
.foc:hover, 
.foc:focus {
	color:#444;
	cursor: pointer;
}
	
.padleft{
	padding-left:20px;
}
.draggable {
	background-color: #CCC;
	padding: 5px;
	height: auto;
	width: auto;
	border: 1px solid #000;
	z-index: 900;
}
.resizeable {
	background-color: #CCC;
	padding: 5px;
	height: auto;
	width: auto;
	border: 1px solid #000;
	z-index: 900;
}
