/** Fonts **/
body {
	font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}

body, caption, th, td, legend, fieldset {
	font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
	color: #4C4641;
}

#navbar li {
	font-family: "arial black", verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

pre, code {
	font-size: 1.1em; /* Monospace fonts can be hard to read */
	font-family: "Courier New", "Bitstream Vera Sans Mono", monospace;
}

#page {
	/* Use a 12px base font size with a 16px line height */
	 font-size: 0.75em; /* 16px x .75 = 12px */
	 line-height: 1.333em; /* 12px x 1.333 = 16px */

	/* Use a 14px base font size with a 18px line height */
	/* font-size: 0.875em;  (16px x .875 = 14px) */  /* Alt: 0.82em */
	/* line-height: 1.286em;  (14px x 1.286 = 18px) */
}

#footer {
	color: #8C8681;
	font-family: verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 0.6em;
	line-height: 0.75em;
}

#footer-inner {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#footer-inner p { margin: 0px; }

#footer-inner a:link { color: #Cf5C5C; text-decoration: none; }
#footer-inner a:visited { color: #Cf5C5C; text-decoration: none; }
#footer-inner a:hover,
#footer-inner a:focus { color: #8C8681; text-decoration: none; }
#footer-inner a:active { color: #8C8681; text-decoration: none; }

#footer-inner .links {
	list-style-type: none;
	margin: 8px 0px 0px 0px;
	padding: 0px;
}

#footer-inner .links li {
	border-left: 1px solid #aCa6a1;
	display: inline;
	margin: 0px -2px;
	padding: 0px 6px;
}

#footer-inner .links li.first { border-left: 0px; }

#footer-inner .links li a { margin: 0px; padding: 0px; }


/** headings **/
h1 {
	color: #94070A;
	font-family: "arial black", verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 2.3em;
	font-weight: bold;
	line-height: 1.3em;
	margin-top: 0;
	margin-bottom: 0.5em; /* 0.5em is equavalent to 1em in the page's base 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 1em margin
                             (relative to the base font), we have to divide that
                             length by the element's font-size:
                             1em / 2em = 0.5em */
}

h2 {
	color: #94070A;
	font-family: "arial black", verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.3em;
	margin-top: 0.667em; /* Equivalent to 1em in the page's base font: 1 / 1.5 = 0.667em */
	margin-bottom: 0.667em;
}

h3 {
	color: #94070A;
	font-family: "arial black", verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.3em;
	margin-top: 0.769em; /* Equivalent to 1em in the page's base font: 1 / 1.3 = 0.769 */
	margin-bottom: 0.769em;
}

h4, h5, h6 {
	color: #94070A;
	font-family: "arial black", verdana, "Bitstream Vera Sans", sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.3em;
	margin-top: 0.909em; /* Equivalent to 1em in the page's base font: 1 / 1.1 = 0.909 */
	margin-bottom: 0.909em;
}

/** block-level elements **/
p, ul, ol, dl, pre, table, fieldset {
	margin: 0 0 1em 0;
	letter-spacing: 0.01em;
	word-spacing: 0.02em;
}

#primary ul, #footer .leaf {
	letter-spacing: 0em;
	word-spacing: 0em;
}

/** lists **/
/* standardize list item indentation */
ul, ol {
	margin-left: 0;
	padding-left: 2em;
}

.block ul, /* Drupal overrides */
.item-list ul {
	margin: 1em 0;
	padding: 0 0 0 2em;
}

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: 0;
	padding: 0;
}

.item-list ul li /* Drupal override */ {
	margin: 0;
	padding: 0;
	list-style: inherit;
}

ul.menu li, /* Drupal override */
li.expanded,
li.collapsed,
li.leaf {
	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 {
	color: #b22222;
	text-decoration: none;
}

a:visited {
	color: #b22222;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #dc143c;
	text-decoration: underline;
}

a:active {
	color: #b22222;
	text-decoration: none;
}

/** tables **/
/* Override Drupal default CSS */
table {
	border-collapse: collapse;
}

th,
thead th,
tbody th {
	text-align: center;
	padding-right: 0;
	border-bottom: none;
}

tbody {
	border-top: none;
}

/** images **/
img {
	border: 0;
}

/** horizontal rules **/
hr {
	height: 1px;
	border: 1px solid #999;
}

/** forms **/
form {
	margin: 0;
	padding: 0;
}

fieldset {
	margin: 1em 0;
	padding: 0.5em;
}

/** LOGIN & SIGNUP FORM **/
/* Using JQuery's UI */
#login_form {
	margin: 25px 0px;
}

#login_form .form-text,
#signup_form .form-text {
	background: #f5f5f5;
	border: 1px solid #fff;
	font-family: arial, helvetica, sans-serif;
	display: block;
	margin: 0px auto 9px auto;
	width: 185px;
	height: 17px;
}

#login_form .form_submit,
#signup_form .form_submit {
	background: #efefef;
	border: 1px solid #fff;
	color: #333;
	cursor: pointer;
	display: block;
	font-family: arial, helvetica, sans-serif;
	font-size: 0.9em;
	font-weight: bold;
	margin: 10px auto;
	padding: 0px 9px;
	text-transform: uppercase;
}

#login_form label,
#signup_form label {
	display: block;
	margin: 9px auto 1px auto;
	width: 187px;
	text-transform: capitalize;
}

#login_signup {
	background: #f5f5f5;
	border: 1px solid #999;
	margin-bottom: 8px;
}

#tabs { margin:5px; }

#tabs-1, #tabs-2 {
	border-top: 0px solid #000;
}

#tabs ul, #tabs li {
	margin: 0px;
	padding: 0px;
}

#tabs li {
	width: 50%;
	overflow: hidden;
}

#tabs li a  {
	padding: 4px 10px;
	width: 83%;
}