@charset "UTF-8";
/* ------------------------------
		COLORS 
Blue BCKG		-	#1b3664
Red				-	#990000
Grey			-	#666666
------------------------------ */

/* Default
-------------------------------------------------- */
/* Reset all margins and padding */
* { margin:0; padding:0; }


body {
	margin:0;
	background-image: url(images/bckgrnd_bluefade.gif);
	background-repeat: repeat-x;
	background-color:#dcddde; }

a:link, a:visited { color:#990000; text-decoration:underline; }
a:hover, a:active { color:#990000; text-decoration:none; }
a img { border:0; }

ul {
	list-style-type:disc;
	padding: 0 40px;
}

ol { padding: 0 40px; }

h1,h2,h3,h4,h5,h6 { font-weight:normal; padding: 0 0 10px 0;
}

h1 { font-family: Georgia, Trebuchet, Trebuchet MS, Arial, Helvetica, sans-serif; font-size:32px; line-height:32px; color: #1b3664; padding: 15px 0 10px 0; }
h2 { font-family: Georgia, Arial, Helvetica, sans-serif; font-size:21px; line-height:24px; color: #990000; padding: 15px 0 10px 0; }
h3 { font-family: Trebuchet, Arial, Helvetica, sans-serif; font-size:18px; line-height:24px; color: #1b3664; padding: 15px 0 10px 0; }

.clear { clear:both; }

hr { color:#CCCCCC; }

/* Tables
-------------------------------------------------- */

th,td   { font-size:12px;line-height:14px; vertical-align:top; }
th	{ font-family:Georgia, Verdana, Arial, Helvetica, sans-serif; }


.avialable { width:100%; }
.avialable th { color:#990000; border-bottom:#FDC67B 1px solid; padding:.7em}
.avialable td { font-size:11px; border-bottom:#FDC67B 1px solid; padding:.7em}


/* Fonts
-------------------------------------------------- */

.preview {
	font-family:Georgia, Verdana, Arial, Helvetica, sans-serif;
	margin-left:10px;
        font-size:14px;
	font-weight:bold;
        line-height:18px;
        color: #990000;
}
.previewbig {
        font-family:Georgia, Verdana, Arial, Helvetica, sans-serif;
        margin-left:10px;
        font-size:15px;
        font-weight:bold;
        line-height:18px;
        color: #990000;
}
.author {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height:18px;
	color: #333333;
}
.link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color: #990000;
}
.footer1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #333333;
}
.footer2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color: #333333;
}
.footer3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	color: #333333;
	padding: 10px 0;
}


/* Containers
-------------------------------------------------- */

.main #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.main #header2 {
	margin: 0;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.main #headleft {
	margin: 0;
	padding: 0;
	float: left; /* since this element is floated, a width must be given */
	width: auto; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	text-align: center;
}
.main #headright {
	padding: 0 0 0 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	float: right; /* since this element is floated, a width must be given */
	width: 700px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
.main #headright p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 50px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	text-align: right;
}
.main #navbar {
	margin: 0;
	padding: 0;
}
.main #mainContent {
	margin: 0;
	padding: 0 70px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(../img/bckgrnd_content.gif)
}
.main #footer {
	margin: 0;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.main #footer2 {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align: center;
}

/* floats */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
