@charset "UTF-8";

/* USS JOHN C. STENNIS */
/* CASCADING STYLE SHEET */
/* DESIGNED BY ROSALIND WILLS (FSF BLACKJACK) */

/* CSS 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, 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%;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}

/* 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: "" "";
}

/* STENNIS CSS CODE */

body  {
	background: #000000;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #AAAAAA;
}

#container { 
	width: 780px;  /* 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 */
	text-align: justify; /* this overrides the text-align: center on the body element. */
} 

#header { 
	background-image: url(images/stennisheader.jpg);
	height: 191px;
} 

#header a {
	display: block;
	width: 780px;
	height: 191px;
}

#header span {
	display: none;
}

#container2 {
	height: auto;
	border: 1px solid #ffffff;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	padding: 15px 10px 15px 20px;
}

#sidebar1 ul {
	list-style: none;
}

#sidebar1 ul, #sidebar1 li {
	margin: 0px;
	padding: 0px;
}

#sidebar1 span {
	display: none;
}

#sidebar1 .menu a {
	display: block;
	width: 140px;
	height: 50px;
}

#sidebar1 .menu a:hover {
	background-position: 0 -50px;
}

#sidebar1 .menu #home {
	background-image: url(images/fullhome.jpg);
}

#sidebar1 .menu #news {
	background-image: url(images/fullnews.jpg);
}

#sidebar1 .menu #specs {
	background-image: url(images/fullspecs.jpg);
}

#sidebar1 .menu #roster {
	background-image: url(images/fullroster.jpg);
}

#sidebar1 .menu #links {
	background-image: url(images/fulllinks.jpg);
}

#sidebar1 .menu #awards {
	background-image: url(images/fullawards.jpg);
}

#sidebar1 .menu #join {
	background-image: url(images/fulljoin.jpg);
}

#sidebar1 .menu #forums {
	background-image: url(images/fullforums.jpg);
}

#mainContent {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	line-height: 130%;
	margin: 10px 0 0 180px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 20px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	text-align: center;
	text-decoration: underline;
	padding-bottom: 20px;
}

#mainContent h2 {
	text-align: center;
	font-style: italic;
	font-weight: normal;
}

#mainContent p {
	margin-bottom: 20px;
}

#newscon {
	padding: 0;
}

#specscon {
	text-align: left;
}

#specscon img {
	float: right;
	padding: 20px;
	width: 250px;
}

#specscon ul {
	margin-top: 0px;
}

#rostercon {
	text-align: center;
}

#rostercon td {
	padding: 5px;
	vertical-align: middle;
	border: 1px solid #111111;
}

#links ul {
	margin-left: 150px;
}

#clear {
	clear: both;
}

#footer { 
	font-family: Arial, Helvetica, sans-serif;
	padding: 10px 10px 10px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000; 
	text-align: center;
	font-size: x-small;
	line-height: 150%;
} 

#footer 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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.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;
}

a {
	color: #881111;
}

a:hover {
	color: #AAAAAA;
}

span.red {
	color: #660000;
}