/***** Begin Reset *****/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	}
/* remember to define focus styles! */
:focus {
	outline: 0;
	}
body {
	line-height: 1.4em;
	color: black;
	background: white;
	}
ol, ul {
	list-style: none;
	}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
	}
caption, th, td {
	text-align: left;
	font-weight: normal;
	}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	}
blockquote, q {
	quotes: "" "";
	}
/***** End Reset *****/

/***** Begin Typography *****/
body {
	font-family: georgia,times,serif;
	background: #fff url(../img/background-tile.jpg) 50% 0 repeat-x;
	font-size: 12px;
	}
a {
	text-decoration: none;
	color: #0489b7;
	}
a:active, a:hover {
	text-decoration: underline;
	color: #026080;
	}
a:visited {
	text-decoration: none;
	color: #0489b7;
	}
td.light{
	color: #555;
	}
strong {
	font-weight: bold;
	}
p {
	margin-bottom: 12px;
}
#countbox .big {
	font-family: arial;
	font-size: 24px;
	color: #f0f0f0;
	font-weight: bold;
}
#countbox td {
	text-align: center;
}
/***** End Typography *****/

/***** Begin Structure *****/
#header {
	width: 900px;
	height: 60px;
	margin: 0 auto;
	background: url(../img/header-background.png) no-repeat;
	}
#header-right{
	padding-top: 20px;
	padding-right: 15px;
	color: #7eacd4;
	text-align: right;
	}
#header-right a{
	color: #c7ddff;
}
#header-right a:hover{
	border-bottom: 1px dotted #c7ddff;
}

.comment {
	padding-top: 10px;
	border-top: 2px solid #ccc;
	overflow: hidden;
}
.comment .meta {
	line-height: 1.5em;
	
}
.comment .meta a{
	font-size: 14px;
}
.comment .meta img {
	float: left;
	margin-right: 5px;
	border: 4px solid #f0f0f0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.comment .text {
	
}

#footer {
	clear: both;
	background: #fff url(../img/footer-border.png) top center repeat-x;
	padding: 30px 0;
	margin-top: 30px;
	color: #888;
	}
#footer-inside{
	width: 900px;
	margin: 0 auto;
	}
/***** End Structure *****/

/***** Begin Navigation *****/

/**
 * Horizontal CSS Drop-Down Menu Module
 *
 * @file		dropdown.css
 * @package		Dropdown
 * @version		0.7.1
 * @type		Transitional
 * @stacks		597-599
 * @browsers	Windows: IE6+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2006-2008 Live Web Institute. All Rights Reserved.
 *
 */



ul.dropdown,
ul.dropdown li,
ul.dropdown ul {
 list-style: none;
 margin: 0;
 padding: 0;
 font-size: 12px;
 font-weight: bold;
}

ul.dropdown a{
	color: #dff0ff;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Helvetica, Arial, sans-serif;
}

ul.dropdown a:hover{
	color: #97c8ff;
	text-decoration: none;
}

ul.dropdown {
 position: relative;
 z-index: 597;
 float: left;
}

ul.dropdown li {
 float: left;
 line-height: 1.3em;
 vertical-align: middle;
 padding: 19px 15px;
 background: url(../img/header-nav-divider.png) no-repeat right;
}


ul.dropdown li.hover,
ul.dropdown li:hover {
 position: relative;
 cursor: default;
 background-color: #163754;
}

ul.dropdown ul {
 visibility: hidden;
 position: absolute;
 top: 100%;
 left: 0;
 width: 200px;
}

ul.dropdown ul li {
 float: none;
 font-size: 12px;
 background-color: #163754;
 border-bottom: 1px solid #092741;
  border-left: 1px solid #092741;
   border-right: 1px solid #092741;
   padding: 7px 15px;
}

ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}

ul.dropdown li:hover > ul {
 visibility: visible;
}
/***** End Navigation *****/

/***** Begin Headers *****/
h1{
	font-size: 36px;
	color: #1e4262;
	}
h2{
	font-size: 24px;
	color: #1e4262;
	}
h3{
	font-size: 20px;
	}
h4{
	font-size: 18px;
	}
h5{
	font-size: 16px;
	}
h6{
	font-size: 14px;
	}
/***** End Headers *****/

/***** Begin Images *****/

/***** End Images *****/

/***** Begin Lists *****/
li {
	padding: 3px 0;
	}

/***** End Lists *****/

/***** Begin Form Elements *****/
.header-text {
	border: 1px solid #222;
	width: 75px;
	background: #fff url(../img/input-bg.gif) repeat-x;
	padding: 4px;
	color: #555;
	}
.text {
	padding: 5px;
	background: #fff url(../img/input-bg.gif) repeat-x;
	border: 1px solid silver;
	font-size: 14px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	}
textarea {
	font-family: georgia;
	}
/***** End Form Elements *****/

/***** Begin Various Tags & Classes *****/
acronym, abbr, span.caps {
	cursor: help;
	}

acronym, abbr {
	border-bottom: 1px dashed #999;
	}

blockquote {
	margin: 15px 30px 0 10px;
	padding-left: 20px;
	border-left: 5px solid #ddd;
	}

blockquote cite {
	margin: 5px 0 0;
	display: block;
	}

.center {
	text-align: center;
	}

.hidden {
	display: none;
	}
	
.screen-reader-text {
     position: absolute;
     left: -1000em;
}

hr {
	display: none;
	}

a img {
	border: none;
	}
p {
  margin-top: 0;
}

.warning {
	background: #fff6bf url('../images/icons/error.png') center no-repeat;
	background-position: 15px 50%;
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #ffd324;
	border-bottom: 2px solid #ffd324;
}



.error {

   background: #fee4e3 url('../img/exclamation.png') center no-repeat;
	background-position: 15px 50%;

   text-align: left;

   padding: 5px 20px 5px 45px;

   border-top: 2px solid #e37d78;

   border-bottom: 2px solid #e37d78;

}
.info strong {
	font-size: 18px;
	font-weight: normal;
	color: #1e4262;
	}


.success {

   background: #e1fed2 url('../images/icons/tick.png') center no-repeat;

   background-position: 15px 50%;

   text-align: left;

   padding: 5px 20px 5px 45px;

   border-top: 2px solid #8ad66a;

   border-bottom: 2px solid #8ad66a;

}



.info {
	background: #e3f1fe url('../img/information-32.png') center no-repeat;
	background-position: 15px 50%;
	text-align: left;
	color: #555;
	padding: 5px 20px 5px 65px;
	border-top: 3px solid #7aa6d3;
	border-bottom: 3px solid #7aa6d3;

}

.info strong {
	font-size: 18px;
	font-weight: normal;
	color: #1e4262;
	}

/***** End Various Tags & Classes *****/


/***** Awesome Buttons *****/
.awesome, .awesome:visited {
	background: #222 url(../img/button-overlay.png) repeat-x; 
	display: inline-block; 
	padding: 5px 10px 6px; 
	color: #fff; 
	text-decoration: none;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.4);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
	font-family: arial;
}
.awesome:hover {
	background-color: #111; 
	color: #fff; 
	text-decoration: none;
	}
.awesome:active	{ 
	top: 1px; 
	}
.small.awesome, .small.awesome:visited 			{ font-size: 11px;  }
.awesome, .awesome:visited,
.medium.awesome, .medium.awesome:visited 		{ font-size: 13px; font-weight: bold; line-height: 1; text-shadow: 0 -1px 1px rgba(0,0,0,0.25); }
.large.awesome, .large.awesome:visited 			{ font-size: 20px; padding: 8px 14px 9px; }

.green.awesome, .green.awesome:visited		{ background-color: #319a10; }
.green.awesome:hover						{ background-color: #338421; }
.blue.awesome, .blue.awesome:visited		{ background-color: #1879c4; }
.blue.awesome:hover							{ background-color: #005ba1; }
.red.awesome, .red.awesome:visited			{ background-color: #e33100; }
.red.awesome:hover							{ background-color: #872300; }
.magenta.awesome, .magenta.awesome:visited		{ background-color: #a9014b; }
.magenta.awesome:hover							{ background-color: #630030; }
.orange.awesome, .orange.awesome:visited		{ background-color: #ff5c00; }
.orange.awesome:hover							{ background-color: #d45500; }
.yellow.awesome, .yellow.awesome:visited		{ background-color: #ffb515; }
.yellow.awesome:hover							{ background-color: #fc9200; }

.gray.awesome, .gray.awesome:visited		{ background-color: #808080; }
.gray.awesome:hover						{ background-color: #555555; }
	
.silver.awesome, .silver.awesome:visited { background-color: #c0c0c0; color: #555555; }
.silver.awesome:hover					{background-color: #a0a0a0; color: #555555; }
/***** End Awesome Buttons *****/