@charset "utf-8";

/* ~~ Element/tag selectors ~~ */
ul, ol, dl 
{ /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6, p 
{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}




/* ~~ The footer ~~ */
.footer 
{
	padding: 10px 0;
	background: #6F7D94;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt 
{  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}

.fltlft 
{ /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat 
{ /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}



body 
{
	font:  10pt Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

h1
{
	font-weight:bold;
	font-size: 12pt;
	padding-top: 20px;
}

h2
{
	font-size: 11pt;
	padding-top: 20px;
}

h3
{
	font-size: 10pt;
	padding-top: 20px;
}

h4
{
	font-style:italic;
	font-size: 10pt;
	padding-top: 20px;
}


div#header
{
	background-image:url(../Images/header0.jpg);
	background-size:120%;
/*	background-size: cover;*/
	background-position:50% 50%;
	background-repeat: no-repeat;
	padding-top: 2px;
	padding-bottom: 200px;
/*	padding-right:10px;
*/	border-radius:5px;
	box-shadow: 10px 10px 5px #888888;
	margin-right:10px;

}
	
div#sidebar 
{
	float: left;
	width: 20%;
	padding-top: 10px;
	padding-bottom: 10px;
}


div#content 
{
	padding: 10px 0;
	width: 80%;
	float: left;
	border: 1;
}

div#background
{
	background-image:url(../Images/shadow.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	padding-bottom: 142px;
}
	

caption
{
	display : none;
}



/*
	Toggle menu
	------------
*/

/*first level menu unstorted list */
.menu, 
.menu ul 
{
	margin:0;
	padding-left: 10px;
	list-style:none;
}

.menu 
{
	width:100px;
}

.menu li 
{
	margin:0;
	padding:0;
	margin-bottom:1px;
}

.menu a 
{
	color:black;
	font-weight: bold;
	display: block;
	text-decoration: none;
	padding: 2px 5px 2px 5px;
	border-top: 0px solid #3484BF;
	border-right: 2px solid #585858;
	border-bottom: 2px solid #585858;
	border-left: 0px solid #3484BF;
	width: 100px;
	background: #3484BF;
	border-radius: 3px;
	box-shadow: 6px 6px 3px #888888;
	margin: 1px 0px 1px 0px;
}
.menu li a:hover
{
	color:#5ED5F9;
	background:black;
	border: 0px solid;
/*	border-top: 0px solid #3484BF;
	border-right: 1px solid black;
	border-bottom: 0px solid #585858;
	border-left: 0px solid #3484BF;
*/	font-weight: bold;
	box-shadow: 3px 3px 2px #888888;
	margin: 3px 0px 0px 2px;
}

.menu ul li 
{
	list-style:none;
}


.menu ul a 
{
	background: #19AEDA;
	margin: 1px 0px 1px 15px;
	list-style: none;
	font-weight: normal;
}

.menu ul li a:hover
{
	color: white;
	background : black;
	margin: 3px 0px 0px 18px;	
}

.hidden 
{	
	display:none;
}
/* remove border arround image link in ie */
img
{
	border: 0;	
}


