/* Import the fonts from the google font directory
@import url(http://fonts.googleapis.com/css?family=Crimson+Text);
@import url(http://fonts.googleapis.com/css?family=Vollkorn);
*/
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size:  76%;
	height: 100%;
}
body {
	color: #ffffff;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-color: #000;
	background-image: url(/images/backgrounds/geronimo.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
}
#header .leftButton, #header .titletext { /* Hide the iPhone menu and Title Text from normal browsers */
	display: none;
}
#header .titlebanner { /* Align the title banner center */
	text-align:center;
}
/* Sets the style for table rows to be aligned top. */
td {
	vertical-align:middle;
}
td a img {
	vertical-align:middle;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #2D4262;
}
/* Sets the style for visited links. */
a:visited {
	color: #2D4262;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #5275AA;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}

.clear {
	clear:both;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
}
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	padding-left: 15px;
	margin-top: 8px;
}
/* ---------- Page Structure CSS ---------- */

#header {
	text-align: left;
	vertical-align:middle;
	height: 75px;
	padding-left: 30px;
	padding-right: 30px;
	background: url(/images/header-bg.gif) no-repeat center top;
}
#title a p #titletext{
	float:left;
	letter-spacing: normal;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 36px;
	line-height: 70px;
	font-weight: bold;
	font-variant: normal;
	filter: DropShadow(Color=#000000, OffX=1, OffY=1, Positive=1px); /* Adds a shadow for IE users */
	text-shadow: #000000 2px 2px 2px; /* Adds a shadow for non-IE, x px, y px, blur px */
	padding-top: 5px;
	display: none; /* Hide the title for non-mobile browsers */
}

#title a:hover {
	text-decoration: underline;
}
#title a p img {
	display:block
}
#headlinks {
	float:right;
	width:200px;
	text-align:right;
	color: #C1D0E1;
	padding-top: 2px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#headlinks a, #headlinks a:link, #headlinks a:visited, #headlinks a:active {
	color: #C1D0E1;
	text-decoration:none;
}
#headlinks a:hover {
	color: #FFF;
	text-decoration:none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 920px;
}
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
	background: url(/images/content-fill.gif) repeat-y left;
	width: 920px;
}
#threeColumns #leftColumn {
	float: left;
	padding: 15px 0px 10px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
#threeColumns #rightColumn {
	float: right;
	padding: 15px 30px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#threeColumns #content {
	margin: 0 205px 0 215px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
	background: url(/images/content-fill.gif) repeat-y left;
	width: 920px;
}
#twoColumnleft #content, #twoColumnright #content {
	width:580px;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnleft #content {
	margin: 0px 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: hidden;
	background: url(/images/content-fill.gif) repeat-y left;
	width: 920px;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float: right;
	padding: 35px 35px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#twoColumnright #content {
	margin: 0 0px 0 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 30px 10px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#twoColumnright #content table tr td {
	padding-top: 1px;
	padding-bottom: 1px;
}
	
#twoColumnright #forum {
	margin: 0 0px 0 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 30px 10px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#footer {
	padding: 25px 30px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: url(/images/footer.gif) no-repeat left top;
	color: #C1D0E1 !important;
	height: 48px;
	clear: both;
	vertical-align:middle;
}
#footer table tr td {
	color: #C1D0E1;
}
#footerleft {
	float:left;
	padding: 0px 10px 0px 0px;
	width: 190px;
}
#middle {
	padding-left: 200px;
	padding-right: 200px;
	margin: 0px;
	text-align: center;
	padding-top: 0.5em;
	font-size: 80%;
}
#imagine {
	float:right;
	text-align:right;
	text-decoration:none !important;
	padding: 0px 10px 0px 0px;
	width: 190px;
}
a {
	text-decoration:none !important;
}
#credit {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 8px;
	font-size: 11px;
	color: #456290;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
#credit a, #credit a:hover, #credit a:visited, #credit a:active, #credit a:focus {
	color: #456290;
	font-weight: normal;
	text-decoration: none;
}
#HostsImage {
	float: left;
	width: 28%; /* Width of HostsImage and HostsBio must equal width:580px */
	padding-bottom: 10px;
	padding-top: 3px;
}
#HostsBio {
	float: left;
	width: 71%;
	font-size: 1.0em;
	line-height: 1.4em;
	padding-bottom: 10px;
}

/* ---------- Navigation CSS ---------- */

#navcontainer {
	position:relative;
	height:40px;
	width:100%;
	font-family:Helvetica, Arial, Verdana, sans-serif;
}
#nav {
	position:relative;
	height:40px;
	text-transform:uppercase;
	background:url(/images/nav-container-bg.gif) no-repeat left top;
	padding:0 0 0 23px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-size: 11px;
	font-weight: bold;
}
#nav ul {
	margin:0;
	padding:15px 15px 0px 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	list-style-type:none;
}
#nav ul li {
	display:inline;
	margin:0px;
	padding-right: 20px;
	width: auto;
}
#nav ul li a {
	color:#C1D0E1;
	text-decoration:none;
}
#nav ul li a:hover {
	color:#FFF;
}

/* ---------- Typography CSS ---------- */

h1 {
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	font: normal 1.5em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
h2 {
	margin: 1.2em 0em 0em 0em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	color: #4C6D9E;
	font: normal 1.4em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
h3 {
	margin: .5em 0em;
	font-weight: bold;
	font: normal 1.3em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif
}
h4 {
	font-size: 1.1em;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
}
h5 {
	font-size: 1.0em;
	margin: .5em 0em;
	font-weight: bold;
}
h6 {
	margin: .5em 0em;
	font: normal 1.0em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif
}
img {
	border: 0;
}
p {
	font-size: 1.0em;
	line-height: 1.1em;
	margin: 1.1.1em 0em 1.1.1em 0em;
}
pre {
	font-family: monospace;
	font-size: 1.1.1em;
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}
#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #C1D0E1;
}
#footer a:hover {
	color: #FFF;
}
#imagine a, #imagine a:link, #imagine a:visited, #imagine a:active {
	color: #C1D0E1;
	text-decoration:none
}
#footer a:hover {
	color: #FFF;
	text-decoration:underline
}
/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:hidden;
	width: 100%;
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_2 {
	margin: 0;
	float: left;
	width:48%;
}
#col_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:48%;
}
/* ---------- Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_3 {
	margin: 0;
	float: left;
	width:31%;
}
#col_two_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
#col_three_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
/* ---------- Four Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_4 {
	margin: 0;
	float: left;
	width:23%;
}
#col_two_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_three_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_four_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
/* ---------- Side column menu styles ---------- */

.styledmenu {
	width: 100%; /*width of menu*/
}
.styledmenu .headerbar {
	font: bold 13px Verdana;
	color: white;
	background: #2D4262 url(images/styled-menu-bg.jpg) no-repeat right top; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 8px; /*31px is left indentation of header text*/
}
.styledmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0; /*bottom spacing between each UL and rest of content*/
}
.styledmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
	margin: 0px;

}

.styledmenu ul li:hover { /*hover state CSS*/
	color: white;
	text-decoration: none;
}  
.styledmenu ul li a {
	color: black;
	background: #E2E9F1;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
	vertical-align: middle;
}
.styledmenu ul li a:visited {
	color: black;
}
.styledmenu ul li a:hover { /*hover state CSS*/
	color: white;
	background: #5A7EB4;
	text-decoration: none;
}
.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font: bold 13px Verdana;
	color: #000; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 0 0 20px; /*bottom spacing between each UL and rest of content*/
	margin: 0;
	vertical-align:middle
}
.simplemenu ul li {
	margin: 0px;
	padding-bottom: 2px;
	vertical-align:middle
}
.simplemenu ul li a {
	font: normal 12px Arial;
	color: black;
	background: #FFF;
	display: block;
	padding: 4px 0 4px 5px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
	border-bottom: 1px solid #E2E9F1;
	vertical-align:middle	
}
.simplemenu ul li a:visited {
	color: black;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #000;
	background: #E2E9F1;
	text-decoration: none;
}

/* ---------- Common styles shared between both left and right columns ---------- */

.sidebarlt {
	padding: 6px;
	border: 1px solid #9CB1D1;
	background: #E2E9F1 url(images/sidebarlt-bg.gif) no-repeat right top;
}
.sidebardk {
	color: #FFFFFF;
	border: 1px solid #131D2B;
	padding: 6px;
	background-color: #2D4262;
}
.sidebardk a, .sidebardk a:hover, .sidebardk a:visited, sidebardk a:active {
	color: #FFFFFF;
	text-decoration:underline;
}


	.more {
		display: none;
		border-top: 1px solid #666;
		border-bottom: 1px solid #666; }
	a.showLink, a.hideLink {
		text-decoration: none;
		color: #36f;
		padding-left: 0px;
		/* background: transparent url(down.gif) no-repeat left; */ }
	a.hideLink {
		background: transparent url(up.gif) no-repeat left; }
	a.showLink:hover, a.hideLink:hover {
		border-bottom: 1px dotted #36f;
}
hr {
	height: 1px;
	width: 98%;
	background-color: #AFC6DB;
	border: none;
	border-top: 1px;
	border-bottom: 1px;
}
#HR {
	text-align:center;
}


/* ---------- The following is the forum CSS styling ---------- */


/* Normal, standard links. */
a:link, a:visited
{
	color: #2D4262;
	text-decoration: none;
}
a:hover
{
	color: #5275AA;
	text-decoration: none;
}
/* Navigation links - for the topics at the bottom of a post (Remove topic, lock topic etc) */
.mirrortab_first, .mirrortab_back
{
	color: #000000;
	background-color: transparent;
	text-decoration: none;
	font: normal 1.2em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
	color: #000000;
	text-decoration: none;
	font: normal 1.3em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
a.nav:hover
{
	color: #5275AA;
}
/* The SMF forum copyright information */
.copyright
{
}

/* Tables should show empty cells too. */
table
{
	empty-cells: show;
}

/* By default (td, body..) use Verdana in black. */
body, td, th
{
	color: #000000;
}

/*   boxes - just a bit smaller than normal so they align well. */
input, textarea
{
	font-size: 9pt;
	color: #000000;
	font-family: verdana, sans-serif;
	background-color: #afc6db;
	vertical-align: middle;
}

/* Checkboxes shouldn't have a background color. */
input.check
{
	background-color: transparent;
}

/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
	font-size: 8pt;
	font-weight: normal;
	color: #000000;
	font-family: verdana, sans-serif;
	background-color: #afc6db;
}


/* A more colorful hr.. */
.hrcolor
{
	height: 1px;
	border: 0;
	color: #AFC6DB;
	background-color: #AFC6DB;
}

/* A quote, perhaps from another post. */
.quote
{
	color: #000000;
	background-color: #dee7ef;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
}

/* A code block - maybe even PHP ;). */
.code
{
	color: #000000;
	background-color: #cccccc;
	border: 1px solid black;
	margin: 1px;
	padding: 1px;
	font-size: x-small;
	line-height: 1.3em;
}

/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
	color: #000000;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	font-size: x-small;
	line-height: 1.1.1em;
}

/* Generally, those [?] icons. */
.help
{
	cursor: help;
	background-color: transparent;
}

/* /me uses this a lot. */
.meaction
{
	color: red;
	background-color: transparent;
}

/* The main post box - this makes it as wide as possible. */
.editor
{
	width: 100%;
}

/* Highlighted text - such as search results. */
.highlight
{
	background-color: yellow;
	font-weight: bold;
	color: black;
}
input
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
.editor
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
/* Alternating backgrounds... */
.windowbg, .windowbg2, .windowbg3, .middletext
{
	color: #000000;
	background-color: #ffffff;
	font: normal 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	font-style: normal;
	vertical-align: middle;
}
.windowbg table tr td i a img, .windowbg2 table tr td i a img, .windowbg3 table tr td i a img
{
	vertical-align: middle;
}
.windowbg2 td textarea, .windowbg input, .windowbg2 input select, .windowbg3 td textarea, .windowbg3 input, select, .windowbg3 input select
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.2em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
select
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
.windowbg2 a, .windowbg3 a
{
	font: normal 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	vertical-align: middle;
}


.windowbg2, .windowbg3
{
	border: 1px solid #afc6db
	font: normal 1.4em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	font-style: normal;
	color: #000000;
	background-color: #f8f8f8;
	vertical-align: middle;
}

/* Titles - such as table headers. */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg a:link, .titlebg a:visited, .titlebg2, tr.titlebg2 th, tr.titlebg2 td, .titlebg2 a:link, .titlebg2 a:visited
{
	font: bold 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	font-style: normal;
	background-color: #f8f8f8;
	vertical-align: middle;
}
.windowbg2 td textarea, .windowbg input, select, .windowbg2 input select, .windowbg3 td textarea,.windowbg3 input, select, .windowbg3 input select
{
margin-top: 1px;
vertical-align: top;
}
.titlebg a:hover, .titlebg2 a:hover
{
	text-decoration: underline;
}
.titlebg2 form a img
{
  vertical-align: middle;
}
.titlebg2 form input
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
.titlebg2 form input input submit
{
	border: 3px;
}
/* The category headers, page indexes, and such things. */
.catbg, .catbg2, .catbg3
{
	font: bold 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	background-color: #f8f8f8;
	background-image: url(images/catbg.gif);
	color: #000000;
}
/* The borders around things. */
.bordercolor
{
	background-color: #afc6db;
}
.bordercolor table td input, .tborder table tr td input
{
	border: 1px solid #afc6db;
	background: #FFFFFF;
	font: normal 1.1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
.tborder
{
/*	border: 1px solid #afc6db;*/
}
/* Default font sizes. */
.smalltext
{
	font: normal 1em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
.smalltext a {
	vertical-align: bottom;
}
.middletext a {
	vertical-align: baseline;
	}
.smalltext img
{
	vertical-align: middle;
}
.normaltext
{
	font-size: small;
}
.largetext
{
	font-size: large;
}
/* No image should have a border when linked */
a img{
	border: 0;
}
/* The AJAX notifier */
#ajax_in_progress
{
	background: #5578AF;
	color: white;
	text-align: center;
	font: normal 1.8em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	padding: 3px;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
}
/* definitions for the main tab, active means the tab reflects which page is displayed */
.maintab_first, .maintab_back, .maintab_last
{
	font: normal 1.3em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	font-style: normal;
	vertical-align: top;
}

.maintab_active_first, .maintab_active_back, maintab_back a, .maintab_active_last
{
	font: normal 1.3em 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
	font-style: normal;
	font-weight: bold;
}
.maintab_back, .maintab_active_back
{
	color: white;
	vertical-align: top;
	padding: 0px 20px 0px 0px; /* Sets the padding properties (top, right, bottom, left) */
	text-transform:none;
	font-family: 'Vollkorn', Cambria, Georgia, Garamond, "Times New Roman", Times, serif;
}
