/* $Id$ */

/**
 * @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/
 */


/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following ALA
 * article:
 *   http://www.alistapart.com/articles/howtosizetextincss
 *
 * All modern browsrs 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.
 */
* {
	padding: 0;
	margin: 0;
}

body {
  font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

#skip-link,
#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 14px base font size with a 18px line height */
  font-size: .8125em; /* 16px x .875 = 14px */
  line-height: 1.6; /* 14px x 1.286 = 18px */
}

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
   * 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 or serif)
   * 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: Verdana, Tahoma, "DejaVu Sans", sans-serif;
	color:#58595b;
}

pre,
code {
  font-size: 1.1em; /* Monospace fonts can be hard to read */
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
}

/*
 * Headings
 */
h1 {
	font-size: 1.7em;
	line-height: 1.3;
	margin: 0 0 .5em 0;
	font-weight: normal;	
}

h2 {
	font-size: 1.5em;
	line-height: 1.3;
	margin: .5em 0;
	font-weight: normal;
}

h3 {
	font-size: 1.4em;
	line-height: 1.3;
	margin: .5em 0;
	font-weight: bold;
}

h4 {
	font-size: 1.2em;
	line-height: 1.3;
	margin: .5em 0;
	font-weight: bold;
}

h5 {
	font-size: 1em;
	line-height: 1.4;
	margin: .5em 0;
	font-weight: bold;
}

h6 {
 	font-size: 0.9em;
	line-height: 1.3;
	margin: .5em 0;
	font-weight: bold;
}

/*
 * Block-level elements
 */
p,
ul,
ol,
dl,
pre,
table,
fieldset {
	margin: .5em 0;
}

blockquote {
	margin: 1em 0;
	background-color: #FFFAF4;
	padding: 1em;
	border: 1px solid #E1A071;
}

/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {
  margin-left: 0;
  padding-left: 2em; /* LTR */
}

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

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

li {
  margin: .3em 0;
  padding: 0;
}

.item-list ul li /* Drupal override */ {
	margin: 0;
	padding: 0;
	list-style: inherit;
}

ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {
  margin: 0;
  padding: 0;
}

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; }

dt {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0 0 0 2em;
  padding: 0;
}

/*
 * 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
 */
a:link {
	text-decoration: none;
	color: #F79422;
}

a:visited {
	text-decoration: none;
	color: #F79422;
}

a:hover,
a:focus {
	text-decoration: underline;
	color: #F9AB55;	
}

a:active {
	text-decoration: none;
	color: #F79422;
}

/*
 * 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,
thead th,
tbody th {
  text-align: left; /* LTR */
  padding: 0;
  border-bottom: none;
}

tbody {
  border-top: none;
}

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

abbr.created /* Date-based "abbreviations" show computer-friendly timestamps which are not human-friendly. */ {
  border: none;
  cursor: auto;
  white-space: normal;
}

/*
 * Images
 */
img {
  border: 0;
}

/*
 * Horizontal rules
 */
hr {
   background-color: transparent;
	 border: 0 none;
	 border-top: 1px dashed #B0B9BB;
   color: #B0B9BB;
   height: 0px;
   text-align: left;
   width: 100%;
}

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

fieldset {
  margin: 1em 0;
  padding: 0.5em;
}

/* DSA Changes */
#admin-menu {
	font-size:0.8em;
}
body.admin-menu {
    margin-top: 26px !important;
}

#footer a {
	color: #f79422;
}
#footer .footermenu_key_topics a {
	color: #FC5923;
}
#footer 
	text-decoration: none;
}
#footer a a:active {
	text-decoration: none;
	color: #f79422;
}
#footer {
	font-size: 0.8em;
	color: #54B9C7;
	text-decoration: none;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #ceebef;
	margin-top: 20px;
}
#footer p {
	color: #54B9C7;
	margin: 0;
	padding-left: 0px;
}
#footer p a:active{
	color: #54B9C7;
}
#footer a:visited {
	text-decoration: none;
}
#footer .region-footer p {
	color: #54B9C7;
	padding-bottom: 5px;
}

#footer .block .content {
	padding:0 0px 5px;
}
#footer .region-footer a {
	color: #54B9C7;
}

.roundcorner {
	background-color: #ceebef;
	padding: 2px;
}
.roundcorner .blockInner {
	background-color: #FFFFFF;
	background-image: url(../images/border-1000x1000_white.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.block h3 {
	font-size:1.15em;
	padding-left:10px;
	padding-top: 10px;
	margin-bottom: 0.3em;
	color: #ec2028;
	margin-top: 0px;
}
.forum-folder-legend dd {
	font-size: 0.8em;
}
#forum-statistics-header, .forum-statistics-sub-header, .forum-statistics-sub-body {
	font-size: 0.8em;
}

#forum th {
	font-size: .9em;
}

table.sticky-table td, 
table.sticky-table th {
	padding: 0em .3em;
}


.rate-widget-thumbs_up_down ul {
	padding-left: 0;
}
.rate-widget-thumbs_up_down ul li {
	color: #54B9C7;
	font-size: 11px;
    width: 50px;
}
.rate-widget-thumbs_up_down ul li .percent {
	padding-top: 5px;
}


#forum tr.even, 
#forum tr.odd {
	border-bottom: 1px solid #B0B9BB;
	padding: 0.1em 0.6em;
	background: #F4FEFF;
}

/* Tables */
table.displayTable {
	border-top: 1px solid #B0B9BB;
	border-left: 1px solid #B0B9BB;
	background-color: #CCEAEE;
}
table.displayTable th {
	border-bottom: 1px solid #B0B9BB;
	border-right: 1px solid #E2F3F5;
	padding: .1em .625em;
	vertical-align: top;
}
table.displayTable td {
	border-bottom: 1px solid #B0B9BB;
	border-right: 1px solid #B0B9BB;
	padding: .1em .5em;
	vertical-align: top;
}
table.displayTable th {
	font-size: .8em;
	color: #FFFFFF;
	background-color: #75C5D0;
}
table.displayTable tr.odd {
	background-color: #F5FBFC;
}
table.displayTable tr.even {
	background-color: #E2F3F5;
}

table.orangeTable {
	border-top: 1px solid #E1A071;
	border-left: 1px solid #E1A071;
	background-color: #FEF4E9;
}
table.orangeTable th {
	border-bottom: 1px solid #E1A071;
	border-right: 1px solid #FFFAF4;
	padding: .1em .625em;
	vertical-align: top;
}
table.orangeTable td {
	border-bottom: 1px solid #E1A071;
	border-right: 1px solid #E1A071;
	padding: .1em .5em;
	vertical-align: top;
}
table.orangeTable th {
	font-size: .8em;
	color: #FFFFFF;
	background-color: #FFC387;
}
table.orangeTable tr.odd {
	background-color: #FFFAF4;
}
table.orangeTable tr.even {
	background-color: #FEF4E9;
}

table.abbreviationTable {
	border-top: 1px solid #B0B9BB;
	border-left: 1px solid #B0B9BB;
	background-color: #E2F3F5;
}
table.abbreviationTable td {
	border-bottom: 1px solid #B0B9BB;
	border-right: 1px solid #B0B9BB;
	padding: .1em .5em;
	vertical-align: top;
}
table.abbreviationTable th {
	font-size: .8em;
	color: #FFFFFF;
	background-color: #75C5D0;
}
table.abbreviationTable tr.odd, table.abbreviationTable tr.even {
	background-color: #E2F3F5;
}

/*
 * Read More
 */
.read-more {
	font-size: 0.8em;
	font-weight: normal;
  }

/* Custom Search */
input.custom-search-default-value {
	width: 98%;
}
