/* == Resets based on Eric Meyer's 2008 rest  */
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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	background-color: #fff;
	line-height: 1.5;
}
ol {
	list-style-type: decimal;
	list-style-position: outside;
}

ul {
	list-style-type: none;
}
/*If you want quotes, put them in the mark-up*/
blockquote, q {
	quotes: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* == Oliver's Global Settings */
html, body {
	border:0;
	margin:0;
	padding:0;
}
body {
	font-size: 14px;
	font-family:Arial, Helvetica, sans-serif;
	color: #442506;
}
/* == Headings */
h1 {margin:30px 0 20px 0;}
h2 {margin:20px 0 20px 0;}
h1, h2 {
	padding:0;
	font-size: 16px;
	color: #442506;
	text-transform: uppercase;
}
h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: normal;
}
h4, h5, h6 {
	color: #9c913a
}
/* == Common Formatting */
p, ul, ol, address, blockquote {
	margin:0;
	padding:0 0 20px 0;
}
address {
	font-style: normal;
}
ul, ol, dl {
	margin: 0;
	padding:0 0 20px 20px;
}
ol {
	padding-left: 40px;
}
ol li {
	margin: 0;
	padding:0;
}
/*The general rule is no bullets - use class withBullet to add bullets to an un-rodered list*/
ul {
	list-style-type: none;
	list-style-image: none;
}
ul li {
	background: none;
}
dt {
	font-weight: bold;
}
blockquote {
	margin:0.25em;
	padding:0.25em 1.25em 1em 1.25em;
}
blockquote p {
	margin: 0;
	padding: 0;
}
small {
	font-size:0.85em;
}
img {
	border:0;
	margin: 0;
	padding: 0;
}
sup {
	position:relative;
	bottom:0.3em;
	vertical-align:baseline;
}
sub {
	position:relative;
	bottom:-0.2em;
	vertical-align:baseline;
}
acronym, abbr {
	cursor:help;
	letter-spacing:1px;
	border:none;
}
 
/* == Anchor Links */
a,
a:link,
a:visited{
	text-decoration: underline;
	color:blue;
}
a:hover, a:focus, a:active, .here {
	 text-decoration: none;
	 color: purple;
	 outline: none;
}

/* == Form Controls */
form {
	margin:0;
	padding:0;
	display:inline;
}
input, select, textarea {
	font:14px/16px Arial, Helvetica, sans-serif;
}
textarea {
	width:100%;
	line-height:16px;
}
label {
	cursor:pointer;
}
 
/* == Tables */
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;	
}
table tr td {
	padding:2px;
}
 
/* == Global Classes */
/* general image replacement */
.replace {
	text-indent: -9999px;
	font-size: 1px;
	/*do we need a line-height here?*/
}
/* my handy in-line menu classes 
pipeLine is for pipe-separated linked menu
ineLine is for list menu with no links and the ul needs to inline as well
flaotLine is a inline menu that uses the float method instead of display inline */
.pipeLine, 
.inLine {
	list-style-position: inherit;
}
.inLine {
	display: inline;
	padding-left: 0;
}
.pipeLine li, 
.inLine li {
	/*height: 50%;*/
	display: inline;
	border-right-width: 1px;
	border-right-style: solid;
	margin: 0;
}
.pipeLine li {
	padding: 0 0.55em 0 0; /* padding bigger on li to compensate for border */
}
.inLine li {
	padding: 0 0.5em 0 0.5em;
}
.inLine li.first {
	padding: 0 0.5em 0 0;
}
.pipeLine a {
	padding-left: 0.5em;
	padding-bottom: 2px;
}
.pipeLine li.last, 
.inLine li.last {
	border-right: none;
}
/* my handy floated in-line menu class */
.floatLine {
	list-style-position: inherit;
}
.floatLine li {
	float: left;
	border: none;
	padding: 0 0.55em 0 0; /* padding bigger on li to compensate for border */
	margin: 0;
}
.floatLine a {
	padding-left: 0.5em;
	padding-bottom: 2px;
}
.floatLine li.last {
}

/* == General Formatting classes */
.clear			{clear:both;}
.floatLeft		{float:left;}
.floatRight		{float:right;}
 
.textLeft		{text-align:left;}
.textRight		{text-align:right;}
.textCenter		{text-align:center;}
.textJustify	{text-align:justify;}
 
.bold			{font-weight:bold;}
.italic			{font-style:italic;}
.underline		{border-bottom:1px solid;}
.highlight		{background:#ffc;}
 
.imgLeft		{float:left;margin: 0;}
.imgRight		{float:right;margin: 0;}
 
.noPadding		{padding:0;}
.noIndent		{margin-left:0; padding-left:0;}
.noBullet		{list-style-image:none; list-style-type:none;}
.withBullet li { 
	border: none;
	background: #fff url(../../media/img/cssImages/content_bullet.gif) no-repeat scroll left 50%;
	margin: 0;
	padding: 0 0 0 20px;
}
