﻿/*
 * TOC
 * 2.Defaults
 * 3.Default block elements and fonts
 * 4.Default links
 * 5.Default images
 * 6.Structure
 */

/*** 2.Defaults ***/
*
{
	margin:			0em;
	padding:		0em;
}
body
{
	font:			400 62.5% Verdana, Arial, Helvetica, sans-serif;
}
body.medium
{
	font-size:		69%;
}
body.large
{
	font-size:		75%;
}

/*** 3.Default block elements and fonts ***/
/* Element reference */
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,
dd, dl, dt, li, ol, ul,
fieldset, form, label, legend, input,
table, caption, tbody, tfoot, thead, tr, th, td
{
}
table
{
	font:			400 1em Verdana, Arial, Helvetica, sans-serif;
}
th, tr, td
{
}
h1, h2, h3, h4, h5, h6
{
	font-size:		1em;
	font-weight:	400;
}
del
{
	text-decoration:	none;
}

/*** 4.Default links ***/
a,
a:link,
a:visited
{
	color:			#1d92cb;
	text-decoration:	none;
}
a:hover,
a:active
{
	color:			#1d92cb;
	text-decoration:	underline;
}
.noClick
{
	cursor: not-allowed;
}

/*** 5.Default images ***/
a img
{
	border:			0px;
}
.imgblock
{
	display:		block;
}
.flLeft
{
	float:			left;
}
.flRight
{
	float:			right;
}

/*** 6.Structure ***/
#wrapper
{
	background-color:	#fff;
	margin:			0em auto;
	max-width:		100%;
	min-width:		840px;
	width:			840px;
}
#wrapper.medium
{
	min-width:		910px;
	width:			910px;
}
#wrapper.large
{
	min-width:		960px;
	width:			960px;
}

#container
{
	float:			left;
	background:		url(images/layout/saga-blue-wash.jpg) 0% 0% repeat-x; 
	background-color:	#6EC8ED;
	padding:			0;
	width:			100%;
}
#subwrapper
{	
	float:			left;
	margin-left:		21%;
	width:			79%;
}
/* Defaults to clear floats */
div.clearLeft,
div.clearRight,
div.clearBoth,
span.clearLeft,
span.clearRight,
span.clearBoth
{
	clear:			left;
	display:		block;
	font-size:		0em;
	height:			0px;
	line-height:		0;
}
div.clearRight,
span.clearRight
{
	clear:			right;
}
div.clearBoth,
span.clearBoth
{
	clear:			both;
}
/* defaultSpacer */
div.spacer
{
	clear:			both;
	display:		block;
	font-size:		0em;
	height:			5px;
	line-height:		0;
}
/* Images */
div.stretchyImage img
{
	display:		block;
	width:			100%;
}
div.imageRight
{
	float:			right;
	margin:			0em 0px 0em 5px;
}
div.imageRight img
{
	display:		block;
}
div.imageLeft
{
	float:			left;
	margin:			0em 5px 0em 0px;
}
div.imageLeft img
{
	display:		block;
}