﻿@import url(reset.css);
@import url(structure.css);
@import url(form.css);
@import url(lln-tables.css);

/*************************************
Table of Contents
-01 Global
	General styles applies to tags
-02 spans and general classes
	Span and classes can appear anywhere, and should not depend on a heirarchical structure
-03 divs
	Divs should be identified by #ids
-04 ?
**************************************/

/*************************************
-01 Global
**************************************/
body
{
	background-color:#374E76
}
div, 
li, 
p, 
td, 
th
{
	font-family:Arial, Helvetica, Sans-Serif;
	font-size:12px;
	line-height:1.6em;
}

a
{
	color: #374E76;
	font-weight:bold;
	text-decoration:none;
}

a:hover
{
		text-decoration:underline;
}
/*************************************
-02 spans and general classes
**************************************/

.hide
{
	display:none;
}

.clear-both
{
	clear:both;
}

.section-label
{
	text-indent:-9999px;
	display:none;
}

.blue-bold
{
	color: #374E76;
	line-height:normal;
	font-weight:bold;
	font-size:11px;
}

.print-only { display:none;}