/* -------------------------------------------------------------
	Untitled
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Description:	Screen Style
	Filename:		style.css
	Version:		1.3
	Date:			19 July 2007
------------------------------------------------------------- 

Table of Contents (subject to change):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	+ Semantic Elements / Defaults
	+ Custom Classes
		- Document Setup
		- Masthead
		- Messaging
		- Sidebar
		- Content
		- Footer
	+ Form Styles
	+ Miscellaneous

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
*/


/* -------------------------------------------------------------
	Semantic Elements / Defaults
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

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,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

body {
	background: #000 url(/images/mainBg.jpg) top no-repeat;
	font: normal 0.7em/1.6em Verdana, Helvetica, sans-serif;
	color: #999;
	text-align: center;
}

a img, :link img, :visited img {
	border: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

a:link, a:visited {
	color: #ed241c;
	text-decoration: underline;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}

ul li {
	padding-left: 10px;
	position: relative;
	list-style-type: none;
	background: url(/images/icon_list.gif) no-repeat 0 8px;
}

.homeLink{
display:block;
width: 940px;
height: 300px;
margin: 0 auto;
text-indent: -9999em;
}

h2 {
	font-size: 1.8em;
	color: #fff;
	font-weight: bold;
        margin-bottom: 5px;
        margin-top: 10px;

}

h3 {
	font-size: 1.5em;
	color: #ed241c;
        margin-bottom: 15px;
}

h4 {
	font-size: 1.3em;
}

h5 {
	font-size: 1em;
	font-weight: bold;
}

p {
padding: 0 0 15px 0;
text-align: left;
}

quote{
font-style: italic;
}

quote p{
padding-left: 20px;
}

.homepage {
margin: 15px 0 40px 0;
border: 5px solid #333;
}



/* -------------------------------------------------------------
	Custom Classes
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/*	Document Setup
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#index {
	width: 1200px;
	margin: 0 auto;
	text-align: left;
}

#index2 {
	width: 980px;
	margin: 50px auto 0 auto;
	text-align: left;
}

#left{
float: left;
width: 568px;
background: url(/images/trans80black.png) repeat;
padding: 20px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
margin-bottom: 20px;
}

#left img{
max-width: 565px;
width: expression(this.width > 565 ? 565: true);
border: 4px solid #111;
}

#right{
float: right;
width: 350px;
margin: 0px 0 0 0;
}

#right img{
margin-top: 50px;
}

#right p{
width: 265px;
margin-bottom: 50px;
background: url(/images/trans80black.png) repeat;
padding: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}

#right h2{
margin: 50px 0 15px 0;
}

#right ul li{
width: 300px;
border-bottom: 1px solid;
margin-bottom: 10px;
padding-bottom: 10px;
}


#right table{margin-top: 40px;}

#right td font{
font-size: 18px;
}


#right td p font{
font-size: 12px;
}

#right td img{
margin-top: 15px;
max-width: 264px;
margin-bottom: 10px;
}
.title, .title a {
	display: block;
	text-indent: -9000em;
	overflow: hidden;
}

#content p,
#content ul,
#content ol {
	margin-bottom: 15px;
}



/*	Masthead
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#masthead {
height: 115px;
}

#brand, #brand a {
}




/* --- UI --- */

#ui {
}



/*	Messaging
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#messaging {
height: 373px;
}



/*	Sidebar
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#sidebar {
}



/*	Content / Main Body
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#content {
	padding: 0 0 30px 0;
}

#heading {
}





/*	Content: General/Miscellaneous
- - - - - - - - - - - - - -  */

#content strong {
	font-weight: bold;
}

#content em {
	font-style: italic;
}


/* --- Image Positioning --- */

.float_left {
	float: left;
	padding: 0 8px 8px 0;
}

.float_right {
	float: right;
	padding: 0 0 8px 8px;
}


/* --- Sitemap --- */

.sitemap_list {
	width: 49%;
	padding: 0;
	float: left;
}




/*	Footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#footer {
	width: 750px;
	height: 60px;
	margin: 0 auto;
	clear: both;
	color: #000;
	text-align: left;
}

#footer a:link, #footer a:visited,
#footer a:hover, #footer a:active, #footer a:focus {
	color: #000;
}

#copyright {
	width: 500px;
	float: left;
}

#credit {
	width: 240px;
	float: right;
	text-align: right;
}



/* -------------------------------------------------------------
	Form Styles
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.required {
	color: #f00;
}





/* -------------------------------------------------------------
	Miscellaneous
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* http://www.access-board.gov/sec508/guide/1194.22.htm#(o) */
#skip {
	position: absolute;
	left: -9000em;
}

.clearfix {
	width: 100%;
	height: 0;
	clear: both;
}

#test_zone img{
margin: 15px 0 40px 0;
border: 5px solid #333;
}

#fancy_img{
position: relative;
left: 0;
}

.forum{
display: block;
width: 300px;
height: 100px;
text-indent: -9999em;
background: url(/images/visitForum.gif) no-repeat 0 0;
}

.forum:hover{
background-position: 0 -100px;
}


/* -------- COMMENTS ---------------- */

.jot-err {border: 1px solid red;font-weight: bold;color: red;padding: 5px;margin-bottom: 10px;}
.jot-cfm {
border: 1px solid #df9c1c;
font-weight: bold;
color: #df9c1c;
padding: 5px;
margin-bottom: 10px;
}

.jot-row {

}

.jot-row-alt {

}
.jot-row-me {background-color: #FFDDDD;}
.jot-row-up {border: 1px dotted red;}
.jot-row-new {border: 1px dotted green;}

.jot-comment {

}

.jot-posticon {
float: right;
width: 45px;
height: 39px;


}
.jot-posticon img {border: 0px;}
.jot-mod {float: right;width: 100px;text-align: right;color: #666666;font-weight: bold;}
.jot-mod img {border: 0px;}
.jot-mod a {float: right;padding: 1px;padding-left: 2px;padding-right: 2px;}
.jot-mod a:hover {background-color: #666666;color: #666666;}
.jot-poster {padding: 0px;text-align: left;font-size: 10px;}
.jot-nav {padding: 0px;text-align: center;margin: 10px;}
.jot-list ul {padding: 0px;text-align: left;margin-bottom: 10px;list-style-position: inside;}
.jot-subscribe {margin-bottom: 10px;}
.jot-form {margin-bottom: 10px;}
.jot-form fieldset {border: 0px;}
.jot-form label {display: block;}

.jot-user {
width: 105px;
float:left;
color: #ed241c;
font-weight: bold;
margin-bottom: 10px;
}
.jot-post-number{
display:block;
color: #fff;
font-weight: normal;
}
.jot-date{
font-weight: normal;
color: #fff;
}
.jot-arrow{
width: 27px;
float:left;
position:relative;
z-index: 5;
margin-left: -27px;
margin-top: 40px;
background: url(/images/commentsArrow.png) no-repeat;
}
.jot-row-author .jot-arrow{
background: url(/images/authorArrow.png) no-repeat;
}
.jot-message {
width: 432px;
float:left;
padding: 15px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
position: relative;
background: #333;
border: 1px solid #666;
margin: 0 0 25px -1px;
overflow: auto;
}
.jot-row-author .jot-message {
background: #ed241c;
color: #fff;
border: 1px solid #ff4f4f;
}
.jot-subject {
color: #ed241c;
font-weight: bold;
display:block;
}
.jot-row-author .jot-subject{
color: #fff;
}
.jot-row-author .jot-user {
background: transparent;
margin-bottom: 10px;
}
.jot-extra {text-align: right;}
.jot-editby {font-size: 10px;color: #666666;font-style: italic;}

.jot-form{
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid #333;
}

.jot-form input, .jot-form textarea{
display: block;
background: #333;
border: 1px solid #666;
padding: 5px;
width: 250px;
color: #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
font-family: 'QuicksandBook', Helvetica, Arial, Sans-Serif;
}

.jot-form input[type="hidden"]{
display:none;
}

.jot-form textarea{
width: 500px;
margin-bottom: 0px;
overflow: auto;
}
.jot-form #submit{
width: 196px;
height: 33px;
padding: 0px;
border: 0px;
cursor: pointer;
text-indent: -9999em;
background: url(/images/addComment.gif) no-repeat;
}
