@charset "UTF-8";
body {
	background-image: url(../images/CTL_Logo_background.jpg);
	background-repeat: repeat;
	margin: 0px;
	padding: 0;
}

/* ~~ 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. */
}

/* Type Selector Styles */

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
a:link {
	text-decoration: none;
	color: #FFEFBC;
}
a:visited {
	text-decoration: none;
	color: #FFEFBC;
}
a:hover a:active, a:focus {
	text-decoration: underline;
	color: #FFEFBC;
}

/* Class selectors used in the frontpage template */

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
}
/* ~~the header is not given a width. It will extend the full width of the layout. */
.header {
	background: #6F7D94;
}
.banner_fill_left {
	background-image: url(../images/color_slice_left.jpg);
	background-repeat:repeat-x;
	margin: 0px;
	padding: 0px;
}
.banner_fill_right {
	background-image: url(../images/color_slice_right.jpg);
	background-repeat:repeat-x;
	margin: 0px;
	padding: 0px;
}
.subcontainer {
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px; 
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 25px;
	padding-right: 0px;
	padding-bottom: 25px;
	padding-left: 0px;
}
.footer {
	background-color: #003b63;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 0;
}
.bottagline {
	font-family: "Times New Roman", Times, serif;
	font-size: 10px;
	font-style: normal;
	line-height: normal;
	font-weight: bolder;
	font-variant: small-caps;
	text-transform: none;
	letter-spacing: normal;
	text-align: right;
	word-spacing: normal;
	left: auto;
	top: auto;
	right: auto;
	bottom: auto;
	color: #FFEFBC;
	text-decoration: none;
	vertical-align: bottom;
}

/* Class selectors used in (or avaliable to) the index file */

.content {
	background-image: url(../images/Space_background.jpg);
	background-repeat: no-repeat;
	background-color: #a9a9a9;
	background-position: center top;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	border: 0px;
}
.content_inner {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

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

/*this defines the font style for the title of each page such as 'Welcome'*/

.frontPageTitle{
	color: #FFEFBC;
	line-height:24px;
	letter-spacing:.15em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: bold;
	}
.frontPageSubTitle{
	color: #FFEFBC;
	line-height:18px;
	letter-spacing:.12em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding: 1px;
	}
.bodyText {
	color:#00003B;
	line-height:20px;
	margin-top:0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	}
.bodyTextHighlight {
	color: #FFEFBC;
	line-height:14px;
	margin-top:0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	}	
/* ID Selector Styles */

#logo { /* this is needed for the Create To Learn banner logo */
	width: 400px;
	background-image: url(../images/Title_Gradient_no_text.jpg);
	margin: 0px;
	padding: 0px;
}
#bottagline a:link {
	text-decoration: none;
	color: #00003B;
}
#bottagline a:visited {
	text-decoration: none;
	color: #00003B;
}
#bottagline a:hover {
	text-decoration: underline;
}
#bottagline a:active {
	text-decoration: none;
}
#bottagline {
	bkgcolor: #709bc8;
	margin: 0px;
	padding: 0px;
}	

