/******************************************************
/* Base.css
/* This stylesheet contains the default styling 
/* of html elements and general classes used 
/* throughout the project.
/*
/* Don't add control, framework, template 
/* or contentblock specific classes to this file! 
/*****************************************************/

:root
{
	overflow-y: scroll;
}

body, form, h1, h2, h3, h4, h5, h6, h6, p, img, blockquote, ul, ol, li, dl, dt, dd 
{
	margin: 0;
	padding: 0;
}

html, body, td, th
{
	color: #fff;
	font-family: Verdana, Georgia, Arial,Helvetica,Sans-serif;
	font-size: 13px;
}

html
{
	font-size: small;
}

body
{
	/*font-size: 70%;*/
	line-height: 1.455; /*$lineHeight;*/

}

form
{
}

p
{
	margin-bottom: 15px; /*$DefaultMargin;*/
}

.ingress
{
	font-weight: bold;
	margin-bottom: 15px /*$DefaultMargin;*/
}

.category
{
	color: #666;
	text-transform: uppercase;
	font-size: .9em;
}

.toUpper
{
	text-transform:uppercase;
}

/******************************************************
/* Headings
/*****************************************************/
h1, h2, h3, h4, h5, h6
{
	margin-bottom: .3em;
}

h1
{
	color: #fff; /*#$h1Color;*/
	font-size: 180%;
}

h2
{
	color: #fff; /*#$h2Color;*/
	font-size: 140%;
	font-style: normal;
	font-weight: normal;
	font-family: Times New Roman;
}

h3
{
	color: #fff; /*#$h3Color;*/
	font-size: 110%;
}

h4, h5, h6
{
	font-size: 100%;
}

/*********************************
/ Links 
/********************************/
a
{
	color: #fff; /*$LinkColor;*/
}

a:hover
{
	color: #fff; /*$LinkHoverColor;*/
	font-style:italic;
}

a.imgLink
{
	display: block;
	line-height: 0;
}

.toUpperLink
{
	text-transform:uppercase;
	text-decoration:none;
	font-weight:bold;	
	font-size:90%;
}

/*********************************
/ Lists 
/********************************/
ul
{
	list-style-image: url(/Images/Icons/ListBullet.gif);
	margin-left: 16px;
	margin-bottom: 15px; /*$DefaultMargin;*/
}

ol
{
	margin-bottom: 15px; /*$DefaultMargin;*/
	margin-left: 20px;
}

* html ol
{
	margin-left: 25px;
}

li
{
	margin: 0 0 .3em;
	vertical-align: middle;
}

dl
{
	margin-bottom: 15px; /*$DefaultMargin;*/
}

dt
{
	font-weight: bold;
	margin-bottom: .3em;
	clear: both;
}

dd
{
	margin-bottom: 15px; /*$DefaultMargin;*/
}

/******************************************************
/* Images
/*****************************************************/
img
{
	border: 0;
}

img.blockImage
{
	display: block;
	line-height: 0;
}

img.leftAligned
{
	float: left;
}

img.rightAligned
{
	float: right;
}


/******************************************************
/* Separators
/*****************************************************/
hr
{
	clear: both;
	display: block;
	border-width: 0;
	height: 1px;
	color: #fff; /*$borderColor;*/
	background-color: #ccc; /*$borderColor;*/
	margin: 10px 0;
}

/******************************************************
/* pre-tag for documents...
/*****************************************************/
pre
{
	font-family: monospace;
}

/******************************************************
/* Float container fix
/*****************************************************/
.fc:after
{
	content: ".";
	clear: both;
	display: block;
	visibility: hidden;
	height: 0;
	font-size: 0;
}

.fc {display:inline-block;} 
/* Hide from IE Mac \*/ 
.fc {display:block;} 
/* End hide from IE Mac */ 

* html .fc
{
	height: 1px;
}