/*
Company:	Retrospectives
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, label, fieldset, address { margin:10px 0; }

blockquote { margin-left: 40px; }

fieldset { padding:10px; }

img { border: 0px; }
/* @end */

/* @group HTML, Body */
body {
	background-color: #71552d;
}
/* @end */

/* @group Layout */
div#outer-wrapper {
	font-family: Verdana, Arial, sans-serif;
	font-size: 13px;
	background-color: #f4ede3;
}
div#hd {
	background: url(../images/hd-bkg.gif) repeat-x;
	text-align: center;
}

div#bd {
	width: 805px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	line-height: 150%;
	font-size: 85%;
	color: #666666;
}
body#inside div#bd {
	width: 910px;
}

body#index div#left-col {
	width: 388px;
	float: left;
	display: inline;
}
body#index div#right-col {
	width: 408px;
	text-align: center;
	float: right;
	display: inline;
}

body#inside div#left-col {
	width: 257px;
	float: left;
	display: inline;
}
body#inside div#right-col {
	width: 622px;
	float: right;
	display: inline;
}

div#ft {
	background: url(../images/ft-bkg.gif) repeat-x;
	height: 85px;
	padding-top: 20px;
	text-align: center;
	color: #9cc9c9;
	font-size: 77%;
}
div#ft a:link, div#ft a:visited {
	color: #9cc9c9;
	text-decoration: none;
}
/* HR's */
hr {
  border : 0;
  height : 2px;
  background : URL(../images/hr.gif) 0 0 repeat-x;
  margin : 1em 0;
}

div.left-box {
	background-color: #c2d8d4;
	border: 3px solid #fff;
	padding: 10px;
}


/* @end */

/* @group Nav */
div#nav {
	height: 47px;
	background: url(../images/nav-bkg.gif) repeat-x;
	font-size: 77%;
	text-transform: uppercase;
	margin-bottom: 25px;
}
div#nav ul {
	width: 920px;
	margin-left: auto!important;
	margin-right: auto!important;
	text-align: center;
}
div#nav ul li {
	list-style-type: none;
	display: inline;
	line-height: 30px;
	padding-right: 10px;
	padding-left: 5px;
	border-right: 1px solid #90bfbf;
}
div#nav ul li a {
	padding-bottom: 2px;
}
div#nav a:link, div#nav a:visited {
	color: #fff;
	text-decoration: none;
}
div#nav a:hover {
	color: #006666;
}
div#nav li.selectedPage a {
	border-bottom: 1px dashed #006666;
	color: #006666!important;
}
/* @end */

/* @group Headings */
h1 {
	color: #3d2601;
	font-size: 169%;
	font-weight: normal;
	font-family: Georgia, Times, serif;
}
h1.italic {
	font-style: italic;
}

h2 {
	color: #339999;
	font-size: 107%;
        line-height: 1.8em;
	font-weight: normal;
	font-style: italic;
	font-family: Georgia, Times, serif;
}
h3 {
	color: #336666;
	font-size: 169%;
	font-weight: normal;
	font-family: Georgia, Times, serif;
	font-style: italic;
	border-bottom: 1px dashed #fff;
	padding-bottom: 15px;
	margin-top: 0;
}
h4 {
	color: #336666;
	font-size: 107%;
	font-weight: normal;
	font-style: italic;
}
h5 {
	color: #000;
	font-size: 100%;
	font-weight: bold;
}
h6 {
	font-size: 100%;
	color: #000;
	font-weight: normal;
}
/* @end */

/* @group Text Styles */
.quote {
	color: #3d2601;
	text-align: center;
	font-family: Georgia, Times, serif;
        font-style: italic;
	font-size: 92%;
        line-height: 1.8em;
}
.quote-name {
	color: #66b3b0;
	text-align: center;
	margin-top: 0;
}

/* @end */

/* @group Lists */
div#outer-wrapper ul {
	margin-left: 20px;
}
div.left-box ul {
	margin-left: 0!important;
}
div.left-box ul li {
	list-style-type: none;
	background: url(../images/bullet.gif) no-repeat 0 3px;
	padding-left: 20px;
	margin: 5px 0;
}
div#outer-wrapper ol {
	margin-left: 27px;
}
/* @end */

/* @group Forms */
	
/* @end */

/* @group Links - link visited hover active */
a:link, a:visited {
	color: #339999;
}
a:hover, a:active {
	text-decoration: none;
}
/* @end */

/* @group Misc */
.clear {
	clear: both;
}
/* @end */