/*
Table Of Contents:
	1. Reset
	2. Headings
	3. Anchors
	4. Form Elements
	5. General Classes
	6. Template & Layout
	7. Print
	8. CSS Diagnostics


Sizing in EMs

HTML - Parent 100% -- Number/16px = 0.0EMs
	11px     .7em
	12px     .75em
	13px     .8em
	14px     .9em
	15px     .95em
	18px    1.1em
	20px    1.3em
--------------------------------
#container - Parent .75em -- Number/12px = 0.0EMs
	11px      .9em
	12px     1.0em
	13px     1.1em
	14px     1.2em
	15px     1.25em
	16px     1.3em
	19px     1.6em
	
CSS References
http://www.w3.org/TR/css3-selectors/#selectors
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(CSS)
http://www.tanfa.co.uk/css/examples/

IE Bugs
http://css-class.com/articles/explorer/guillotine/
http://www.satzansatz.de/cssd/onhavinglayout.html

Layout Source
http://www.tutorialtastic.co.uk/page/create_a_tableless_layout

@import url("stylesheet.css") screen, print;
*/



/****************************************************************
 1.  Reset  -  http://tantek.com/log/2004/undohtml.css  -  http://meyerweb.com/eric/tools/css/reset/
****************************************************************/

html, body, h1, h2, h3, h4, h5, h6, img, blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form, input, textarea, fieldset, pre
{ margin: 0px; padding: 0px; }

address { font-style: normal; }
acronym, abbr { border-bottom: 1px #000000 dashed; cursor: help; }

a img, img { border: none; }
a { text-decoration: none; }
img { display: block; } /* http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps  -  http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps */

table { border: 1px solid #999999; border-collapse: collapse; border-spacing: 0px; }
table td, table th { border: 1px solid #999999; margin: 0px; padding: .3em; empty-cells: show; vertical-align: top; }
caption {}
th {}
/* table tr:nth-child(even) table tr:nth-child(odd) */
table .def td { background: #ffffff; }
table .alt td { background: #ececec; }

ul, ol
{
margin-top: 1em;
margin-bottom: 1em;
}


li ol li  /*ADDED*/
{
	list-style-type: lower-alpha;
}

li ol li li
{
	list-style-type: lower-roman;
}

/****************************************************************
 2. Headings
****************************************************************/

#topbar h1 { /*UWGB logo*/ }

#topbar h2 { /*Conneting learning to life*/ }

#titleBar h3 /*normal page header*/
{
	position: absolute;
	left: 50px;
	top: 7px;
	font-size: 2.0em;
	font-weight: bold;
}
#titleBar li h3 /*index links */
{
	font-size: 1.2em;
	position: static;
	display: inline;
}

.content h4
{
	font-size: 1.4em;
	margin: 0em 0 0.25em;
}

.content h5 
{
	font-size: 1.3em;
	margin: 0.9em 0 0.25em;
}

.content h6
{
	font-size: 1.1em;
	margin: 0.9em 0 0.25em;
}




/****************************************************************
3.  Anchors - Link - Visited - Hover - Focus - Active
****************************************************************/

.content a:link { border-bottom: 1px solid #889780; color: #2e7d00; } /* IF IE 6 */
.content a:visited { border-bottom: 1px solid #9fb394; color: #809b70; }
.content a:hover { border-bottom: 1px solid #90a2b4; }
.content a:active { border-bottom: 1px solid #345575; color: #21364a; } /* IF IE 6 */
.content a:focus, #footer a:focus { outline: 1px dotted #aaaaaa; }

.content a.unstyled { border-bottom-width: 0px !important; color: #555555 !important; }

#footer a:link { border-bottom: 1px solid #8d8c8c; color: #747474; } /* IF IE 6 */
#footer a:visited { border-bottom: 1px solid #949494; color: #8d8a8a; }
#footer a:hover { border-bottom: 1px solid #90a2b4; }
#footer a:active { border-bottom: 1px solid #345575; color: #21364a; } /* IF IE 6 */

#titleBar a:link { text-decoration: none; color: #ffffff; } /* IF IE 6 */
#titleBar a:visited { text-decoration: none; color: #ffffff; }
#titleBar a:hover { border-bottom: 1px solid #ffffff; }
#titleBar a:active { border-bottom: 1px solid #ffffff; color: #ffffff; } /* IF IE 6 */

*[accesskey]:focus { outline: 1px solid #aaaaaa; }


a[href^="http://"], a[target="_blank"] { }
a[href^="mailto:"] { }

a[href^="#"] { }

/****************************************************************
4. Form Elements - http://www.456bereastreet.com/archive/200410/styling_even_more_form_controls/
****************************************************************/

.content fieldset
{
border: 1px solid #ececec;
padding: 0px 20px 20px 20px;
}

.content legend
{
color: #345575;
font-size: 1.1em;
font-weight: bold;
padding: 0px 10px;
}

label { }

optgroup { font-style: normal; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"]
{
padding: 1px 3px;
/* http://www.viget.com/inspire/comments/styling-the-button-element-in-internet-explorer/ */
overflow: visible;
width: auto;
}

input[type="password"], .content input[type="text"], textarea, select
{
border: 1px solid #cccccc;
color: #555555;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
outline-width: 0px;
}

input[type="password"], .content input[type="text"], textarea { padding: 4px; }
input[type="password"]:focus, .content input[type="text"]:focus, textarea:focus { border: 1px solid #aaaaaa; }

textarea { overflow-y: auto; resize: both; }


/****************************************************************
5.   General Classes
****************************************************************/
.top { vertical-align: top; }
.bottom { vertical-align: bottom; }
.middle { vertical-align: middle; }
.sub { vertical-align: sub; }
.sup { vertical-align: super; }

.left { text-align: left; }
.right { text-align: right; }
.center { text-align: center; }
.justify { text-align: justify; }
.distribute { text-justify: distribute; }

.smallcaps { font-variant: small-caps; }
.b { font-weight: bold; }
.i { font-style: italic; }
.u { text-decoration: underline; }
.o { text-decoration: overline; }
.s { text-decoration: line-through; }
.su { text-decoration: line-through underline; }

.ucase { text-transform: capitalize; }
.lowercase { text-transform: lowercase; }
.uppercase { text-transform: uppercase; }

.slant { font-style: oblique; } /* http://usabletype.com/css/font/styles/ */
.indent { text-indent: 1em; }
.wrap { word-wrap: break-word; white-space: normal; }
.pre { white-space: pre; }
.clear { clear: both; line-height: 0; font-size: 0; margin: 0; }

.block { display: block; }
.inline { display: inline; }
.none { display: none; }
.visible { visibility: visible; }
.hidden { visibility: hidden; }
.collapse { visibility: collapse; }


.large { font-size: 1.3em;}
.xlarge { font-size: 2.2em;}

.circle { list-style-type: circle; }
.disc { list-style-type: disc;}

.dropcap:first-letter { font-size: 1.3em; font-weight: bold; }

.semitransparent { opacity: 0.75; }

ul.collapse
{
display: inline;
list-style-type: none; 
list-style-position: inside; 
margin: 0em; 
padding: 0em; 
}
ul.collapse li { display: inline; }

.hr 
{
border-bottom: 1px solid #bfbfbf;
height: 1px;
margin: 1em 0em;
text-align: center; 
width: 100%;
}
hr { display: none; }

::-moz-selection{
background: #b9dd48;
color: #2f4400;
} 

::selection {
background: #b9dd48;
color: #2f4400;
}

q, blockquote { }

.error
{
	background:#F9F0F0 none repeat scroll 0% 0%;
	border:1px solid #DAA2A2;
	padding:3px 5px;
}

/****************************************************************
6.  Template & Layout
****************************************************************/
html
{
font-size: 100%; /* http://www.alistapart.com/articles/howtosizetextincss */
overflow-y: auto; /* http://webdevel.blogspot.com/2007/05/controlling-browser-scrollbars.html */
background: url(http://www.uwgb.edu/files/images/bgstripe.gif) repeat-x left 0px;
}


body 
{
color: #555555;
font-family: sans-serif, Arial, Helvetica;
font-size: .75em; /* http://clagnut.com/blog/348/#c794 */
text-align: center; /* center things in <= IE6 */
vertical-align: baseline;
padding-bottom: 10px;
}

#container 
{
margin: 0px auto;
text-align: left;
width: 1016px;
}
	
	#topShadow 
	{
		background: #ffffff url(http://www.uwgb.edu/files/images/bgContainer.gif) no-repeat left 0px;
		width: 1000px;
		padding: 0 8px 0 8px;
	}
	#bottomShadow
	{
		background: #ffffff url(http://www.uwgb.edu/files/images/bgWhiteShadow.gif) repeat-y left 0px;
		width: 1000px;
		padding: 0 8px 0 8px;
	}

	#topBar 
	{
		width: 1000px;
		background-color: #003300;
		height: 71px;	
		position: relative;	
		border-bottom: 2px solid white;
	}
		#uwgbLogo
		{
			position: absolute;
			left: 40px;
			top: 8px;		
		}
		#connectLogo
		{
			position: absolute;
			left: 575px;
			top: 10px;			
		}
		#logo360 {
			position: absolute;
			left: auto;
			right: 80px;
			top: 0;
		}
	#printLogo {
		display: none;
	}
	#titleBar 
	{
		color: white;
		position: relative;
		width: 1000px;
		height: 38px;
		background:transparent url(http://www.uwgb.edu/files/images/titleBarBG.gif) repeat-x;
		border-bottom: 2px solid #003300;
	}

		#titleBarLinks
		{
			position: absolute;
			left: 670px;
			top: 0px;
			height: 35px;
		}
		#indexLinks
		{
			list-style-type: none;
			position: absolute;
			top: 11px;
			left: 0; /*36px;*/
			margin: 0;
			padding: 0 0 0 40px;
		}
			#indexLinks li
			{
				display: inline;
				padding: 0px 11px;
				padding: 0 20px 0 0;
			}
		
			#atozmaps 
			{
				position: absolute;
				top: 13px;
				width: 80px;
			}
			#titleBarLinks fieldset
			{
				border: none;
			}
				#searchForm 
				{
					position: absolute;
					top: 5px;
					left: 100px;
					width: 200px;
				}
					#searchText 
					{
						color: #888888;
						display: block;
						margin-top: 4px;
						float: left;
					}
					#searchButton 
					{
						display: block;
						padding-left: 5px;
						margin-top: 5px;
					}

#accessibility { display: none; }

.content
{
background-color: #ffffff;
letter-spacing: normal;
word-spacing: normal;
line-height: 1.75em;
text-align: normal;
}

.padding
{
	padding: 30px 30px 10px;
}

	.content ul li
	{
		background: 0 0.6em url(http://www.uwgb.edu/files/images/goldDisc.gif) no-repeat;
		margin: 0px;
		padding-left: 12px;
		list-style-type: none;
	}
	.threeColumnStripe
	{
		background: url(http://www.uwgb.edu/files/images/threeColumnStripe.gif) right top no-repeat;
	}

#alphabetical {
color:#aaa;
}

#aboveFooter
{
	width: 1016px;
	background: url(http://www.uwgb.edu/files/images/bgAboveFooter.gif) no-repeat left 0px;
}
#footer 
{
	font-size: .8em;
	color: #807e7e;
	margin-left: 58px;
	line-height: 1.3em;
}

	#footer ul 
	{
		list-style-type: none;
		margin: 0px;
		padding: 0px;	
	}
	#footer li 
	{	
	border-left: 1px solid #bbbbbb;
	display: inline;
	padding: 0px 7px;
	}
	#footer li.firstChild 
	{ 
		border-left-width: 0px; 
		padding-left: 0px;
	}
	
/****************************************************************
 7. Print - http://www.alistapart.com/stories/goingtoprint/
****************************************************************/
@media print {

	body {
		background: white;
		font-size: 12pt;
		}
	#topBar, #footer, #splashImage, #titleBarLinks, #rightSplash { display: none; }
	#printLogo { display: block; padding-bottom: 20px; }
	
	#splash { height: 350px !important; }
	
	#transContent h3 { font-size: 12pt; font-weight: normal; margin: 0px; padding: 0px;}
	
	#titleBar { border-botom: none; }
	
	#transContent ul li { padding: 0px; } 
	
	.content {
		width: auto;
		margin: 0 5%;
		padding: 0;
		border: 0;
		float: none !important;
		color: black;
		background: transparent none;
	}
	
	a:link, a:visited {
		color: #520 !important;
		background: transparent;
		font-weight: bold;
		text-decoration: underline !important ;
		border-bottom-width: 0px !important;
	}

	
	.content a:link:after, .content a:visited:after {
	   content: " (" attr(href) ") ";
	   font-size: 90%;
	   }
	.content a[href^="/"]:after {
	   content: " (http://www.uwgb.edu" attr(href) ") ";
	   }
}