/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */

/* Font Colors Used
 * Red: #880000
 * Very dark gray: #05191c
 * Light grey: #999999
 * Dark grey: #333333
 * FAI Gold: #ffc121
 */
 
/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following
 * articles:
 * - http://www.alistapart.com/articles/howtosizetextincss
 * - http://24ways.org/2006/compose-to-a-vertical-rhythm
 *
 * All modern browsers use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-to-nav,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */

  /* Use a 12px base font size with a 18px line height */
  font-size: 0.75em; /* 16px x .75 = 12px */
  line-height: 1.5em; /* 12px x 1.5 = 18px */

  /* Use a 14px base font size with a 21px line height 
  font-size: 0.875em;  16px x .875 = 14px 
  line-height: 1.5em;  14px x 1.5 = 21px */
}

/*
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;

@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}

 */

/***********************************************
		MY STYLES
***********************************************/
input.form-checkbox, 
input.form-radio{
	vertical-align:text-top;
}

body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * and Nimbus Sans fonts are commonly available on Linux systems where the MS
   * fonts are less common. Tahoma and Helvetica are also widely available.
   *
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif, serif or
   * monospace) hints at what type of font to use if the web browser doesn't
   * find any of the fonts in the list.

  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;

  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;

  font-family: "Courier New", "DejaVu Sans Mono", monospace;

  font-family: Helvetica, Arial, sans-serif;
   */
  font-family: Droid Sans, Helvetica, Arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt,
var {
  font-family: Droid Sans, Helvetica, Arial, sans-serif;
}

/*
 * Block-level elements
 *
 * To achieve a pleasant vertical rhythm, we use the 1.5em line height of our
 * base font as the top and bottom margins for our block level elements and make
 * the line heights of any larger fonts be a multiple of 1.5 ems. For more
 * information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
h1, h2, h3, h4, h5, h6
p, blockquote, pre,
ul, ol, dl,
hr, table, fieldset {
  margin: 1.5em 0;
}

/* Headings */
h1 {
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size: 3.33em;  /* 40px divided by 12px default browser font size = 3.33em [EAP-20111116] */
	color:#05191c; /* black */
	padding:0.5em 0em 0em 0em;
	line-height:1em;
  /* 0.75em is equivalent to 1.5em in the page's base font. font. Remember, a
     margin specified in ems is relative to the element's font-size, not to the
     pages' base font size. So, for example, if we want a 1.5em margin (relative
     to the base font), we have to divide that length by the element's
     font-size:  1.5em / 2em = 0.5em  */
}

h2 {
	/* font-family: Franklin Gothic Demi, Helvetica, Arial, sans-serif; */
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:28px;
	color:#4b5b5d; /* dark grey */
	border-bottom: dotted 1px #999;
	padding: 16px 0 10px 0;
	line-height:28px;
	margin: 10px 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.5 = 1em */
}


h3 {
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-weight:normal;
	font-size:18px;
	color:#4b5b5d; /* dark gray to match body text [EAP-2011116] */
	text-decoration:none;
	margin: 1.154em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.3 = 1.154 */
}

h4,
h5,
h6 {
	font-size: 1.1em;
	margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

/* Other block-level elements */
p {
	/*font-family: Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:14px;
	color:#0f1b2e; /* dark grey */
	line-height: 1.5em;
}

.view-tweets .view-footer p{
	font-size:10px;
	font-weight:bold;
	color:#03589a; 
	text-align:center;
	text-transform:uppercase;
}
.view-tweets .view-footer p a{
	font-size:12px;
	text-transform:none;
}

.field-name-field-top-body-text p{
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-weight:normal;
	font-size:1.5em;
	color:#4b5b5d; /* light grey */
	line-height:1.4em;
}
.field-name-field-top-body-text li{
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-weight:normal;
	font-size:1.5em;
	color:#4b5b5d; /* light grey */
	line-height:1.4em;
}

blockquote {
  margin-left: 2em;
  margin-right: 2em;
}

pre {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */
}

hr {
  height: 7px;
  background-color:#ffc121; /* FAI gold */
  border: 1px solid #ffc121; /* FAI gold */
}

address {
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size: inherit;
	font-weight: normal;
	margin-left: 0; /* LTR */
	padding-left: 0px; /* LTR */
}

.item-list ul /* Drupal overrides */ {
	margin: 1.5em 0;
	padding: 0 0 0 0em; /* LTR */
}

ul ul, ul ol,
ol ol, ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
	margin: 0;
}

li {
  font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size: inherit;
	font-weight: normal;
	margin: 0;
	padding: 0;
	color: #0f1b2e;
}

.item-list ul li,
ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size: inherit;
	font-weight: normal;
	margin: 0;
	padding: 0;
	list-style:none;
	//line-height:1.5em;
}

ul          { list-style-type: disc; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }

dl {
}

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em; /* LTR */
  padding: 0;
}

rteindent1{
margin-left: 1cm;
}

rteindent2{
margin-left: 2cm;
}

rteindent3{
margin-left: 3cm;
}

rteindent4{
margin-left: 4cm;
}


p.rteleft {
  text-align: left;
}
p.rteright {
  text-align: right;
}
p.rtecenter {
  text-align: center;
}
p.rtejustify {
  text-align: justify;
}

/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {
  border-collapse: collapse;
  /* width: 100%; */ /* Prevent cramped-looking tables */
}

th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
  padding:5px;
}

tbody {
  border-top: none;
}

thead {
}

tfoot {
}

caption {
}

colgroup {
}

col {
}

tr {
}

td {
	padding:5px;
}

/*
 * Forms
 */
form {
  margin: 0;
  padding: 0;
}

fieldset {
  padding: 0.5em;
}

legend {
}

label {
}

input {
}

select {
    text-decoration: underline;
}

optgroup {
}

option {
   text-decoration: underline;
}

textarea {
}

button {
}

/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
 
h3 a{
	font-family: Droid Sans, Helvetica, Arial, sans-serif; 
	font-weight:normal;
	font-size:18px;
	/*color:#bc2025; /* subheader red link [EAP-20111116] */
	color:#005581; /* subheader red link [EAP-20111116] */
	text-decoration:none;
  	margin: 1.0em 0;
} 
h3 a:link{
    font-family: Droid Sans, Helvetica, Arial, sans-serif; 
	font-weight:normal;
	font-size:18px;
	text-decoration:underline;
	color:#005581; /* subheader red link [EAP-20111116] */
}
h3 a:visited{
    font-family: Droid Sans, Helvetica, Arial, sans-serif; 
	font-weight:normal;
	font-size:18px;
	color:#005581; /* subheader red link [EAP-20111116] */
/*     color:#0f1b2e; paragraph dark gray [EAP-20111116] */
	text-decoration:underline;
}
h3 a:hover{
    font-family: Droid Sans, Helvetica, Arial, sans-serif; 
	font-weight:normal;
	font-size:18px;
/*	color:#35474A; /* Olga choice of grey hover */
	text-decoration:underline;
	font-style:normal;
}

p a,
p a:link,
td a,
td a:link,
#content li a,
#content li a:link{
	color:#005581;
	/*font-style:italic; 
	text-decoration:underline;*/
	padding:0.1em;
}
p a:hover,
td a:hover,
#content li a:hover{
	color:#008df2;
	/*background:#808080;
	background:#eeeeee;*/
	font-family:inherit;
	font-size:inherit;
	text-decoration:underline;
	padding:0.1em;
}

#content a:link{
	font-weight:bold;
}
/* Specification for the Search Results links [EAP-20111117] */ 
#content li h3 a,
#content li h3 a:link{
	color:#0f1b2e;  /* paragraph dark gray */
	background:none;
	font-style:bold;
	font-size:1.25em;
	text-decoration:none;
	padding:none;
}
#content li h3 a:hover{
	color:inherit;
	background:none;
	font-style:bold;
	font-size:1.25em;
	text-decoration:underline;
	padding:none;
}
#content li h3 a:visited{
	color:#0f1b2e;  /* paragraph dark gray */
	background:none;
	font-style:bold;
	font-size:1.25em;
	text-decoration:none;
	padding:none;
}
/* End Specification for the Search Page Results Links [EAP-20111117] */ 

a{
    color:#333333;  /* dark gray */
	text-decoration:none;
font-style:bold;
} 
 
a:link{
   /* color:#808080;  /* med gray */
font-style:bold;
}

a:visited{
/*     color:#0f1b2e; paragraph dark gray */
	text-decoration:none;
}

/* used in Bottom Footer */
a:hover,
a:focus {
   font-family:inherit; 
   font-size:inherit;
   /*color:#ffc121; /* FAI gold */
   color:#008df2; /* FAI gold */
   text-decoration:underline; 
}

a:active {
    font-family:Droid Sans, Helvetica, Arial, sans-serif;
    color:#999999; /* light gray */
	text-decoration:none;
}

/************** home slider text style*********************/
h2.home_slider_title{
    /*font-family: Franklin Gothic Demi Italic, Franklin Gothic Demi, Franklin Gothic Medium Italic, Franklin Gothic Medium, Trebuchet, Trebuchet MS, sans-serif; */
	font-family:  Droid Sans, Helvetica, Arial, serif;
	font-style: italic;
	font-size:40px;
	font-weight:normal;
	color:#05191c; /* very dark gray */
	line-height:1em;
	margin: 0 0 5px 0;
	border:none;
	padding:0;
	
}
.region-highlighted .home_slider_text p{
    font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:16px; 
	color:#05191c;  /* very dark gray */
	fine-height:1.125em;
	margin-bottom:10px;
}
.views-field-field-slider-link a:visited{
	display:block;
	width:174px;
	height:47px;
	background:url("../images/findout_button_blank.png") no-repeat transparent;
	background-position: top;
	/*font-family: Droid Sans, Georgia Italic, Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	/*font-style: italic;*/
	text-align:center;
	font-size:16px;
	color:#35454a; /* white */
	line-height:39px;
	/*text-shadow: 0px 1px 1px #004987;*/
	position:absolute;
	bottom:54px;
}
.views-field-field-slider-link a{
	display:block;
	width:174px;
	height:47px;
	background:url("../images/findout_button_blank.png") no-repeat transparent;
	background-position: top;
	/*font-family: Droid Sans, Helvetica, Arial, Georgia Italic, Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	/*font-style: italic;*/
	text-align:center;
	font-size:16px;
	color:#35454a; /* white */
	line-height:39px;
	/*text-shadow: 0px 1px 1px #004987;*/
	position:absolute;
	/*bottom:154px;*/
	top:0px;
	right:0px;
}
.views-field-field-slider-link a:hover{
	background-position:bottom;
	/*font-family: Droid Sans, Georgia Italic, Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size: 16px;
	/*font-style: italic;*/
	color:#35454a; /* white */
}

/************** home highlight text style  *********************/
.region-highlighted #block-block-4 h2,
.region-highlighted #block-block-3 h2,
.region-highlighted #block-block-5 h2,
#block-poll-recent h2{
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-style: bold;
	font-size:20px;
	line-height:10px;
	font-weight:bold;
	color:#061a1c; /* very dark gray */
	/*margin-bottom:5px;
	border:none;
	padding:0;
	line-height:25px;*/
}
.region-highlighted p,
#block-poll-recent .title{
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:13px;
	font-weight:normal;
	color:#666666; /* medium gray */
	line-height:1.2em;
	margin:0 0 5px 0;
}
a.highlightLink,
#block-poll-recent label.option{
	/*font-family: Georgia, serif;*/
	/*font-family: Droid Sans, Helvetica, Arial, Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:12px;
	font-weight:bold;
	/*color:#333333; /* dark gray */
	color:#03589a;
	text-transform:uppercase;
}
a.highlightLink:hover,
#block-poll-recent label.option:hover{
	text-decoration:underline;
	/*font-family:Georgia, serif;*/
	/*font-family: Droid Sans, Helvetica, Arial, Georgia, serif;*/
	font-family: Droid Sans, Helvetica, Arial, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#03589a;
	/*color:#05191c;*/
}

/*
 * Other inline elements
 */
img {
  border: 0;
  /* vertical-align: bottom; */ /* Suppress the space beneath the baseline */
}

abbr, /* Abbreviations */
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap;
}

q {
}

cite {
}

strong, b {
}

em, i {
}

code,
kbd,
samp,
tt,
var /* Code, keyboard input, sample output, teletype, variable */ {
}

del {
}

ins {
}

big {
}

small {
}

sub {
}
sup {
}
.SACFileList{
margin-top: .2cm;
margin-bottom: .2cm;
border-bottom: 1px solid #000000;
}
