/*
Company:		icase.org
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/*<group=Global Browser Reset>*/
* {

padding:0;

margin:0;

}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, label, ul, ol, dl, fieldset, address { margin:20px 0; }

li, dd, blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/*</group>*/

/*<group=HTML, Body>*/
body {
	text-align: center;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
}
/*</group>*/

/*<group=Layout>*/
div#header {
	width: 100%;
	height: 194px;
	text-align: center;
	background: url("../images/headBack.jpg") repeat-x;
}
div#wrapper {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
div.columnL {
	width: 300px;
	padding-right: 16px;
	float: left;
	border-right: 1px solid #d3d3d1;
}
div.columnR {
	width: 343px;
	float: right;
}
div.columnWide {
	width: 659px;
	float: left;
}
div.divider {
	width: 100%;
	height: 1px;
	background-color: #d3d3d1;
	margin: 20px 0 20px 0;
	padding: 0;
	overflow: hidden;
}
div#footer {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #d3d3d1;
}
/*</group>*/

/*<group=Nav>*/
div#navWrapper {
	width: 215px;
	background: url("../images/navBack.gif") repeat-y;
	float: left;
}
ul#nav {
	width: 192px;
	border-top: 4px solid #000033;
	margin: 0;
	padding: 0;
}
ul#nav li {
	list-style-type: none;
	padding: 4px 0 4px 4px;
	margin-left: 20px;
	border-bottom: 2px solid #7493b9;
	font-size: 116%;
}
/*</group>*/

/*<group=Headings>*/
h1 { }
h2 {
	font-size: 175%;
	color: #000138;
	margin-top: 0;
	margin-bottom: 8px;
}
h3.month {
	font-size: 175%;
	color: #000138;
	margin: 0;
	padding: 2px 0 2px 0;
	background: url("../images/calMonthBack.jpg") repeat-y;
	border-top: 1px solid #5d6638;
}
h4 {
	font-size: 150%;
	color: #000138;
	margin: 5px 0 5px 0;
}
h5 { }
h6 { }
/*</group>*/

/*<group=Text Styles>*/
p.event {
	border-top: 1px solid #ccc;
	margin: 4px 0 4px 6px;
	font-size: 116%;
	color: #333;
}
p {
	margin: 5px 0 5px 0;
	line-height: 150%;
	color: #000138;
}
div#footer p {
	color: #90b7da;
	font-size: 91%;
}
/*</group>*/

/*<group=Lists>*/
div#body ul {
	margin: 0;
}
div#body ul li {
	margin: 3px 0 3px 18px;
	padding-left: 0;
	font-size: 116%;
	color: #000138;
}
/*</group>*/

/*<group=Forms>*/
	
/*</group>*/

/*<group=Links - link visited hover active>*/
div#body a:link, div#body a:visited {
	color: #000033;
}
div#body a:hover, div#body a:active {
	color: #90b7da;
	text-decoration: none;
}

/* Nav Links */
ul#nav a:link, ul#nav a:visited {
	color: #000033;
	text-decoration: none;
	font-weight: bold;
}
ul#nav a:hover, ul#nav a:active {
	text-decoration: none;
	font-weight: bold;
	color: #00008f;
}
/*</group>*/

/*<group=Misc>*/
.clear {
	clear: both;
}
/*</group>*/

