/**
 * Main EMCS Style Sheet.
 *
 * This is the main style sheet for the EMCS website.  It contains files for
 * the base system, as well as the pages that aren't part of a separate
 * module, such as the calendar or information packet.
 *
 * @author Daniel J. Summers <daniel@djs-consulting.com>
 * @version 1
 * @since 1
 * @package EMCS
 * @subpackage Style
 */ 

/* HTML Tag Styling. */
body {
	font-family: Arial, Helvetica, 'Nimbus Sans L', sans-serif; 
	margin: 0px;
	background-color: #FAFAFF;
}
p {
    text-indent: 30px;
}
sup {
   font-size:75%;
   vertical-align:text-top;
}   
p.flush {
   text-indent:0px;
}
a, a:visited {
	font-weight: bold;
	color: #006400;
	text-decoration: none;
}
a:hover {
	border-bottom: dashed 1px #006400;
}

/* Link Menu. */
#menu_table {
	width: 100%;
	border-bottom: solid 1px white;
}
#menu_table .items {
	background-color: #00008B;
	color: white;
	font-weight: bold;
	text-align: center;
	font-size: 12pt;
	border: solid 5px yellow;
}
#menu_table .items .me {
	color: yellow;
}
#menu_table .items .toplink {
	text-decoration: none;
	color: white;
}	

/* Page Header. */
#header {
	width: 100%;
	border-bottom: solid 5px #00008B;
}
#header_content {
	background-color: #006400;
	color: white;
	text-align: center;
	font-family: 'Times New Roman', 'CG Times', serif;
}
#header_content .header_cell {
	border-bottom: solid 1px white;
}
#header_title {
	font-size: 24pt;
	font-weight: bold;
}

/* Front Page "Large" Header. */
#big_header_line_1 {
	font-size: 18pt;
	font-variant: small-caps;
	font-family: sans-serif;
	font-weight:bold;
}
#big_header_line_2 {
	font-size: 28pt;
	font-variant: small-caps;
	font-weight: bold;
}
#big_header_line_3 {
	font-size: 18pt;
}
#big_header_line_4 {
	font-size: 12pt;
}

/* Page Content. */
#content {
	margin-left: .5%;
	margin-right: .5%;
	padding-top: 15px;
	padding-bottom: 15px;
}

/* Page Footer. */
#footer_blue {
	border-top: solid navy 5px;
	clear: both;
	
}
#footer_white {
	border-top: solid white 2px;
}
#footer_green {
	border-top: solid #006400 5px;
	font-size: 8pt;
	font-style: italic;
}
#footer_notes {
	font-size: 7pt;
}

/* Front Page "Welcome" text. */
#welcome_heading {
	text-align: center;
	width: 100%;
}

/* Letterhead Styling. */
#letterhead_hoff {
	width: 100%;
	text-align: center;
	font-family: Arial, 'Luxi Sans', sans-serif;
	font-variant: small-caps;
	font-weight: bold;
}
#letterhead_emcs {
	width: 100%;
	text-align: center;
	font-family: serif;
	font-variant: small-caps;
	font-weight: bold;
}
#letterhead_address {
	font-family: serif;
	margin: auto;
	border-collapse: collapse;
}
#letterhead_address td {
	vertical-align: top;
	padding: 0;
	text-align: center;
	white-space: nowrap;
}
#letterhead_people {
	font-family: serif;
	margin: auto;
	border-collapse: collapse;
}
#letterhead_people td {
	padding: 0;
}

/* Page-wide no border, no padding table. */
.page_wide_table {
	width: 100%;
	border-collapse: collapse;
}
.page_wide_table td {
	padding: 0;
}

/* Short-cuts for various styles. */
.sc {
	font-variant: small-caps;
}
.underline {
	border-bottom: solid 1px black;
}
.dbl_line {
	border-bottom: double 3px black;
}
.text_center {
	text-align: center;
}
.i {
	font-style: italic;
}
.b {
	font-weight: bold;
}
.u {
	text-decoration: underline;
}
.rj {
	text-align: right;
}
.nw {
	white-space: nowrap;
}