/* -------------------------------------------------------------- 
  
   Reset.css
   * Resets default browser CSS styles.
   
   Original by Erik Meyer:
   * meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
   
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend{
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

body { line-height: 1; color: #333; background: white; }

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* -------------------------------------------------------------- 
   
   Typography.css
   * Sets some default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
  
-------------------------------------------------------------- */   

body {
  font-family: Arial, "Lucida Grande", Helvetica, Verdana, sans-serif;
  line-height: 1.5; /* Unitless for proper inheritance */
}

/* This is where you set your desired font size. The line-height 
   and vertical margins are automatically calculated from this. 
   
   You have to add an extra calculation here because of IE, so that 
   all users may resize text manually in their browsers.
   
   The top one is for IE: The percentage is of 16px (default IE text size)
   10px is 62.5%, 12px is 75%, 13px is 81.25%, and so forth).
   The second value is what all other browsers see (the wanted font size). */
   
body          { font-size: 75%; }   /* IE */
html > body   { font-size: 12px; }  /* Other browsers */


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { 
  font-family: Helvetica, Arial, "Lucida Grande", Verdana, sans-serif;
  color:#000; 
  clear:both; 
  font-weight: bold;
}

h1 { font-size: 3em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; line-height:2; }
h4 { font-size: 1.2em; line-height:1.25; font-weight:bold; }
h5 { font-size: 1em; font-weight:bold; }
h6 { font-size: 1em; }


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em 0; text-align:left; }
p.last      { margin-bottom:0; }

ul, ol      { margin: 0 0 1.5em 1.5em; }
ol          { list-style-type: decimal; }
dl          { margin: 1.5em 0; }
dl dt       { font-weight: bold; }

/*
a           { color: #ed8b00; text-decoration: underline; outline: none; }
*/
a:hover     { color: #ed8b00; }

blockquote  { margin: 1.5em 0 1.5em 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em          { font-style: italic; }
pre         { margin-bottom: 1.3em; background: #eee; border:0.1em solid #ddd; padding:1.5em; }
code        { font:0.9em Monaco, monospace; }

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #B2CCFF; 
  color: #B2CCFF;
  clear: both; 
  float: none; 
  width: 100%; 
  height: 0.1em;
  margin: 0 0 1.4em 0;
  border: none; 
}
* html hr { margin: 0 0 1.2em 0; } /* IE6 fix */


/* Tables
-------------------------------------------------------------- */

table   { margin-bottom: 1.4em; border-top:0.1em solid #ddd; border-left:0.1em solid #ddd; }
th,td   { height: 1em; padding:0.2em 0.4em; border-bottom:0.1em solid #ddd; border-right:0.1em solid #ddd; }
th      { font-weight:bold; }


/* Forms
-------------------------------------------------------------- */

label     { font-weight: bold; }
textarea  { height: 180px; width: 300px; }


/* Some default classes
-------------------------------------------------------------- */

p.small   { font-size: 0.8em; margin-bottom: 1.875em; line-height: 1.875em; }
p.large   { font-size: 1.2em; line-height: 2.5em; }
p.quiet   { color: #666; }
.hide     { display: none; }


/* Extra fancy typography
-------------------------------------------------------------- */

/* For great looking quote marks in titles, replace "asdf" width:
   <span class="dquo">&#8220;</span>asdf&#8221;
   (That is, when the title starts with a quote mark). 
   (You may have to change this value depending on your font size). */  
   
.dquo { margin-left: -.7em; } 


/* Reduced size type with incremental leading
   (http://www.markboulton.co.uk/journal/comments/incremental_leading/)

   This could be used for side notes. For smaller type, you don't necessarily want to 
   follow the 1.5x vertical rhythm -- the line-height is too much. 
   
   Using this class, it reduces your font size and line-height so that for 
   every four lines of normal sized type, there is five lines of the sidenote. eg:

   New type size in em's:
     10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)

   New line-height value:
     12px x 1.5 = 18px (old line-height)
     18px x 4 = 72px 
     60px / 5 = 14.4px (new line height)
     14.4px / 10px = 1.44 (new line height in em's) */

p.incr, .incr p {
    font-size: 0.83333em; /* font size 10px */
    line-height: 1.44em;  
    margin-bottom: 1.8em; /* Still 1.5 x normal font size as baseline */
}

























/*
 *  Box is
 *   __________________________________ 
 *  | <---------- 960 px ------------> |
 */
body  {
	text-align: center;
	background-color: #b2bbc3;
	background-color: #b7c0c9;
}

table, tr, td, th  {
	border: none;
}

img  {
	border: none;
}
/*------------------------- SITE STRUCTURE -------------------------*/

/*
 * Boxes and columns.
 * {{{ */
	#masthead {
		background-color: #fff;
        margin-bottom: 10px;
	}

	#banner,
	#NavigationOne,
	#SectionList,
	#NavigationTwo .body,
	#NavigationThree .body,
	#user-nav,
	#footer-inner,
	#header {
		width: 940px;
		margin: 0px auto;
		background-color: #fff;
	}

	#header a {
		display: block;
		width: 940px;
		height: 100px;
	}

	#container  {
		width: 940px;
		margin: 0px auto;
		text-align: left;
		overflow: show;
	}

	#banner {
		position: relative;
		text-align: center;
		padding-top: 6px;
		margin: 0px auto;
	}

	#header  {
		position: relative;
		height: 100px;
		border-top: 10px solid #ed8b00;
		border-bottom: 2px solid #ed8b00;
		border: none;
		background: url(css/img/rs_logo.png) no-repeat top center;
	}

#rss_search  {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 325px;
}

#rss_search img {
	border: none;
}


.navigation a, a.more-link  {
	text-decoration: none;
}

#recent  {
	border-bottom: 1px solid #eaeaea;
}

#recent h2  {
	padding: 10px 15px;
	border-bottom: 5px solid #ed8b00;
}

#recent ul  {
	margin: 0;
	padding: 0;
	list-style: none;
}

#recent li  {
	float: left;
	display: block;
	width: 170px;
	padding: 15px;
}

#recent li a  {
	text-decoration: none;
	font-size: 1.5em;
}

#bottomboxes  {
	width: 630px;
}

#recentcomments  {
	float: left;
	width: 300px;
}

#recentcomments strong  {
	color: #ed8b00;
}

#pop_posts  {
	float: left;
	width: 300px;
}

#pop_posts h2, #recentcomments h2  {
	padding: 10px 15px;
	border-bottom: 5px solid #ed8b00;
}

#pop_posts ul, #recentcomments ul  {
	margin: 0;
}

#pop_posts ul li, #recentcomments ul li  {
	display: block;
	height: 25px;
	padding: 8px 0 0 25px;    
	border-bottom: 1px solid #f5f5f5;
}

#recentcomments ul li  {
	border-right: 1px solid #eaeaea;
}

#pop_posts ul li:hover, #recentcomments ul li:hover  {
	background-color: #f5f5f5;
}

#pop_posts ul li:last-child, #recentcomments ul li:last-child  {
	border-bottom: 2px solid #eaeaea;
}

#pop_posts ul li a, #recentcomments ul li a {
	color: #000;
	text-decoration: none;
}

#recent li:last-child {
	border-right: none;
}

#about  {
	margin-bottom: 10px;
}

#about img  {
	padding: 5px;
	background-color: #eaeaea;
}

#about h2  {
	margin: -37px 0 15px 10px;
	font-weight: normal;
}

	/*
#footer  {
	float: left;
	width: 940px;
	padding: 10px;
	height: 50px;
	border-top: 1px solid #747474;
	background-color: #f5f5f5;
	color: #747474;
}

#footer a  {
	color: #747474;
}
	*/

/*------------------------- SIDEBAR WIDGETS -------------------------*/

#sidebar  {
	/* This causes issues with the footer as the heights of the left
	 * and right columns are not constant. */
	/*
	position: absolute;
	top: 0px;
	right: 0px;
	*/
	float: left;
	padding: 0px 10px 10px 8px;
	padding: 0px;
	width: 400px;
	background-color: #f5f5f5;
	background-color: #b7c0c9;
	font-size: 0.9em;
}

#sidebar p  {
	margin: 5px;
}


#sidebar .left  {
	float: left;
	/*
	border-right: 1px solid #eaeaea;
	*/
	width: 165px;
	padding-right: 10px;
}

#sidebar .right  {
	float: left;
	width: 155px;
	padding-left: 5px;
}

#sidebar ul  {
	margin: 0 0 0px 0;
}

#sidebar ul li  {
	list-style: none;
}

#sidebar ul li h2 {
	font-weight: normal;
	font-size: 1.7em;
	padding: 5px 10px 5px 10px;
	border-top: 1px solid #ed8b00;
	border-bottom: 1px solid #eaeaea;
}

#sidebar ul li ul li {
	padding: 5px 0 0 18px;
}

#sidebar ul li ul li a {
	color: #000;
	text-decoration: none;
}

#calendar_wrap  {
	font-size: 8pt;
}

/*------------------------- END SIDEBAR WIDGETS -------------------------*/

/*------------------------- END SITE STRUCTURE -------------------------*/

/*------------------------- NAV -------------------------*/

#nav  {
	position: absolute;
	bottom: 0;
	margin-bottom: -8px;
}

#nav ul  {
	margin: 0;
	padding: 0;
}

#nav ul li  {
	display: inline;
	list-style: none;
}

#nav ul li a  {
	line-height: 2.9em;
	margin: 0;
	height: 30px;
	padding: 3px 10px 0 10px;
	color: #999;
	text-decoration: none;
}

#nav ul li a:hover  {
	color: #000;
	border-bottom: 2px solid #ed8b00;
}

/*------------------------- END NAV -------------------------*/

#searchform  {
	text-align: right;
	width: 230px;
	height: 80px;
	background-color: #ed8b00;
}

#searchform #s  {
	width: 200px;
	height: 30px;
	margin: 10px 10px 7px 10px;
	background-color: #fff;
	border: none;
	font-size: 2.1em;
	padding: 0 5px;
}

#searchform  #searchsubmit {
	height: 25px;
	width: 80px;
	border: 1px solid #989898;
	background-color: #eaeaea;
	margin: 0 10px;
	font-size: 1.2em;
}


#header h1 a  {
	color: black;
	font-size: 1.75em;
	text-decoration: none;
}

.floatright  {
	float: right;
}

.floatleft  {
	float: left;
}

.textright  {
	text-align: right;
}

.textleft  {
	text-align: left;
}

.recententry  {
	border: 1px solid black;
}

.comments-template{
    margin: 10px 0 0;
    border-top: 1px solid #ccc;
    padding: 10px 0 0;
}

.comments-template ol{
    margin: 0;
    padding: 0 0 15px;
    list-style: none;
}

.comments-template ol li{
    line-height: 18px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.comments-template ol li .author{
    font-size: 1.5em;
}

.comments-template ol li.alt{
    background-color: #eaeaea;
    border-bottom: 1px solid #ccc;
}

.comments-template h2, .comments-template h3{
    font-size: 16px;
}

.commentmetadata{
    font-size: 12px;
}

.comments-template p.nocomments{
    padding: 0;
}

.comments-template textarea{
    font-family: Arial, Helvetica, Georgia, Sans-serif;
    font-size: 12px;
}

.comment .title {
    background-color: #a5c6d3;
}

.signature {
	border-top: dotted 1px #000000;
	margin-top: 5px;
}

.comment .content {
	border-bottom: 2px solid #ccc;
	margin-bottom: 5px;
}

#WidthTest {
	width: 500px;
	height: 10px;
	border: 1px solid red;
}

/*
 * Content column.
 * {{{ */
	blockquote  {
		color: #333333;
		border-bottom: 1px dotted;
		border-top: 1px dotted;
		font-style: normal;
		font-size: 1em;
		line-height: 1.5em;
		background-color: #f8f8f8;
		text-align: justify;
		margin-right: 30px;
		margin-left: 30px;
		margin-bottom: 20px;
		padding-top: 10px;
		padding-left: 10px;
		padding-right: 10px;
	}

	#content  {
		float: left;
		margin: 0 18px 20px 0;
		width: 520px;
	}

	#content-inner  {
		width: auto;
	}

	#content a {
		color: #203c55;
		text-decoration: underline;
	}

	#content a:hover {
		color: #8a2c22;
	}

	#content h3 a {
		color: black;
		text-decoration: none;
	}

	#content h3 a:hover {
		text-decoration: underline;
	}
	/* }}} */


/*
 * Storybox
 * {{{ */
	.storybox {
		margin-bottom: 1.75em;
		/*
		width: 480px;
		overflow: hidden;
		overflow: auto;
		*/
	}

	p.recommend,
	p.recommenders {
		margin-bottom: .50em;
	}

	.post-meta-author {
		border-width: 2px 0px;
		border-style: solid;
		border-color: #AAA;
		padding: 2px 0px;
		margin-bottom: .5em;
		min-height: 65px;
	}

	#content .post-meta-author a {
		text-decoration: none;
		color: #000;
	}

	#content .readmore, #content .readmore a {
		color: #8a2c22;
		font-weight: bold;
		font-size: 1.1em;
		text-decoration: none;
		text-transform: uppercase;
	}

	#content .readmore a:hover {
		color: #203c55;
	}

	.fieldLabel {
		white-space: nowrap;
	}

	#hikari-titled-comments {
		width: 390px;
		border: 1px solid #000;
		font-family: MS Shell Dlg;
		font-size: 18px;
	}

	#comment {
		width: 350px;
		border: 1px solid #000;
		font-family: MS Shell Dlg;
	}

	#addcomment form .help {
		font-family: Georgia, "Times New Roman", serif;
	}

	#addcomment form .help p {
		margin-top: 0em;
		margin-bottom: .50em;
	}

	#addcomment form .help blockquote {
		margin: 0em 1.0em;
		color: #333;
		font-family: Arial, sans-serif;
		font-style: normal;
	}

	.comment-box {
		margin-bottom: 1.50em;
	}

	.comment-box-title-padding {
		background-color: #fff;
		height: 1.0em;
	}

	.comment-box-title {
		font-family: Georgia, "Times New Roman", serif;
		background-color: #8d2c23;
		color: #ffffff;
		padding: 8px 1em;
	}

	.comment-form-box {
		margin-bottom: 1.75em;
	}

	.comment-form-box .roundedfg {
		padding-top: 10px;
	}

	/* Right side of comment replies all aligned. */
	.roundedBoxContent .roundedBoxContent {
		padding-right: 0px;
	}

	.iconsphere {
		background: url(http://cdn11.sphere.com/images/sphereicon.gif) top left no-repeat;
		line-height: 25px;
		padding: 4px 0 4px 20px;
		font-size: 10px;
		white-space: nowrap;
	}

	.post  {
		padding: 10px;
		padding: 0px;
		padding: 8px 2px 0px 2px;
	}

	.post .meta {
		padding-top: 5px;
		border-top: 1px solid #eaeaea;
	}

	.post img  {
		padding: 5px 0px 5px 0px;
		background-color: transparent;
	}

	.post h2  {
		margin-bottom: -10px;
	}

	.post h3 {
		margin-top: 0px;
		line-height: 1;
		margin-bottom: .25em;
	}

	h3 a,
	.post h3 a {
		color: black;
		text-decoration: none;
		font-weight: normal;
		font-size: 1.4em;
		font-family: Georgia, "Times New Roman", serif;
	}

	.post h2 a {
		color: black;
		text-decoration: none;
		font-weight: normal;
		font-size: 1.7em;
	}
	/* }}} */


/*
 * Generic.
 * {{{ */
	#main {
		background-image: url('css/img/bg_mainbody.gif');
		background-image: none;
		background-repeat: repeat-x;
		background-color:  #b7c0c9;
		/*
		width: 940px;
		*/
	}

	.clearall {
		font-size: 1px;
		line-height: 1px;
	}
	/* }}} */


/*
 * Navigation, top row.
 * {{{ */
	#NavigationOne {
		margin-top: 2px;
		text-align: left;
		font-size: 10px;
		height: 22px;
	}

	#NavigationOne .body {
		/* Allow children to be absolutely positioned relative to parent. */
		position: relative;
	}

	/**
	 * Page list links.
	 * {{{ */
		#PageList {
			position: absolute;
			top: 1px;
			left: 1px;
			white-space: nowrap;
			text-align: right;
			padding-top: .15em;
		}

		#PageList ul {
			margin: 0px;
			padding: 0px;
		}

		#PageList ul li {
			display: inline;

			/* Bullet separator. */
			background-image: url('css/img/bullet.gif');
			background-repeat: no-repeat;
			background-position: 0px 2px;
			margin-left: 2px;
			padding-left: 12px;
		}

		#PageList li.first {
			margin-left: 0px;
			padding-left: 0px;
			background-image: none;
		}

		#PageList ul li a {
			color: #8a2c22;
			text-transform: uppercase;
			text-decoration: none;
			font-weight: bold;
		}

		#PageList li a:hover {
			color: #333;
		}
		/* }}} */

	/**
	 * Eagle links.
	 * {{{ */
		#EagleLinks {
			position: absolute;
			top: 1px;
			right: 1px;
			padding-top: 4px;
			padding-bottom: 5px;
			line-height: 1.0em;
			margin-bottom: 0px;
		}

		#EagleLinks ul {
			margin: 0px;
			padding: 0px;
		}

		#EagleLinks li {
			display: inline;
			list-style-type: none;

			/* Bullet separator. */
			background-image: url('css/img/bullet.gif');
			background-repeat: no-repeat;
			background-position: 0px 2px;
			margin-left: 1px;
			padding-left: 12px;
		}

		#EagleLinks li.first {
			margin-left: 0px;
			padding-left: 0px;
			background-image: none;
		}

		#EagleLinks li a {
			color: #8a2c22;
			font-weight: bold;
			text-transform: uppercase;
			text-decoration: none;
		}

		#EagleLinks li a:hover {
			text-decoration: underline;
		}
		/* }}} */
	/* }}} */


	#user-nav {
		padding: 0;
		margin-bottom: 2em;
		text-align: left;
		clear: both;
	}

	#user-nav li {
		display: inline;
		margin-right: 20px;
		font-weight: bold;
		line-height: 28px;
	}

	#user-nav li a {
		color: #203c55;
		border-bottom: none;
		text-decoration: none;
	}

	#user-nav li a:hover {
		color: #8a2c22;
	}




/**
 * Navigation bar, two.
 * {{{ */
	#NavigationTwo {
		margin-top: 5px;
		margin-bottom: 3px;
		font-size: 11px;
		height: 30px;
	}

	#NavigationTwo .body {
		position: relative;
		padding-top: 5px;
	}

	/*
	 * Section list.
	 * {{{ */
		#SectionList {
			text-align: left;
			z-index: 1;
		}

		#SectionList ul {
			margin-bottom: 0px;
			margin: 0px;
		}

		#SectionList li {
			display: inline;
			color: #000;
			text-transform: uppercase;
			/* Bullet separator. */
			background-image: url('css/img/bullet.gif');
			background-repeat: no-repeat;
			background-position: 0px 2px;
			margin-left: 2px;
			padding-left: 12px;
		}

		#SectionList li.first {
			margin-left: 0px;
			padding-left: 0px;
			background-image: none;
		}

		#SectionList li a {
			color: #616161;
			font-weight: bold;
			border-bottom: none;
			text-decoration: none;
		}

		#SectionList li a:hover {
			color: #9e3227;
		}
		/* }}} */

	/*
	 * Search box.
	 * {{{ */
		#cse {
			position: absolute;
			top: 0px;
			right: 0px;
			/*
			height: 29px;
			float: left;
			width: 470px;
			*/
			margin-top: 0px;
			z-index: 2;
		}

		#cse #SearchText {
			vertical-align: top;
			width: 200px;
			height: 17px;
		}

		#cse #SearchButton {
			vertical-align: top;
			font-size: 90%;
			height: 24px;
		}

		#cse form {
			background-color: transparent;
			/* This is added by WP on the login page. */
			-moz-border-radius-bottomleft: 0px;
			-moz-border-radius-bottomright:0px;
			-moz-border-radius-topleft:0px;
			-moz-border-radius-topright:0px;
		}
		/* }}} */

	/* }}} */


/*
 * Navigation bar three.
 * {{{ */
	#NavigationThree {
		background-image: url('css/img/bg_hot_topics.jpg');
		background-repeat: repeat-x;
		border-bottom: 5px solid #233a53;
		height: 36px;
	}

	#NavigationThree .body {
		background-color: transparent;
		position: relative;
		text-align: left;
		padding: 0px;
		padding-top: .30em;
	}

	/* Hot topics list.
	 * {{{ */
		#topics-nav {
			margin: 0px;
			padding: 0px;
		}

		#topics-nav li {
			display: inline;
			line-height: 24px;
			color: #fff;
			font-weight: bold;
		}

		#topics-nav li span {
			font-weight:normal;
			margin:0 2px;
		}

		#topics-nav li a {
			color: #fff;
			font-weight: normal;
			border-bottom: none;
			text-decoration: none;
		}
		/* }}} */
	/* }}} */


/*
 * Story entry.
 * {{{ */
	.storytitle {
		float: left;
		display: inline;
		width: 490px;
		/*
		font-size: 20px;
		*/
	}

	div.sharebar {
		float: right;
		width: 160px;
		height: 60px;
	}

	p.storyauthor {
		margin-bottom: 0em;
	}

	p.storydate {
		font-family: Georgia, "Times New Roman", serif;
		font-style: italic;
		margin-bottom: 0em;
	}

	.editorbuttons {
		float: right;
	}

	#admin-edit-button {
		float: left;
		background-image: url('css/img/button_edit.gif');
		background-repeat: no-repeat;
		width: 60px;
		height: 20px;
		margin-left: 4px;
	}

	#admin-delete-button {
		float: left;
		background-image: url('css/img/button_delete.gif');
		background-repeat: no-repeat;
		width: 60px;
		height: 20px;
		margin-left: 4px;
	}

	#admin-troll-button {
		float: left;
		background-image: url('css/img/button_troll.gif');
		background-repeat: no-repeat;
		width: 60px;
		height: 20px;
		margin-left: 4px;
	}

	#content .editorbuttons div a {
		color: transparent;
	}

	.editorbuttons div a {
		display: block;
		color: transparent;
		width: 50px;
		height: 30px;
	}

	#poster {
		background-color: #fff;
	}

	#subtitle {
		font-weight: bold;
		color: #333;
		margin-bottom: .75em;
	}

	.post .meta a {
		color: #336699;
	}

	.entry-footer-left {
		float: left;
	}

	.entry-footer-right {
		float: right;
	}

	/* }}} */


/*
 * Comments.
 * {{{ */
	.reply {
		text-align: left;
	}

	.commentdate {
		font-family: Georgia, "Times New Roman", serif;
		font-style: italic;
		margin-bottom: 0em;
	}

	.commentlink a {
		color: #336699;
	}

	.comment-admin {
		float: right;
	}

	.comment-admin a {
		color: #999;
	}

	.comment-author-link,
	.comment-author-link a {
		color: #224153;
		font-weight: bold;
		border-bottom: 1px solid #9A3023;
	}

	.contributor {
		color: #207020 !important;
		font-weight: bold;
	}

	.moderator {
		color: #702020 !important;
		font-weight: bold;
	}

	#content .comment-author-link a {
		text-decoration: none;
	}

	.comment cite {
		padding: 6px 0px;
		display: block;
	}
	/* }}} */


/*
 * Get local.
 * {{{ */
	#get-local {
		position: relative;
		height: 121px;
		background-image: url("css/img/bg_get_local.png");
		background-repeat: no-repeat;
		padding: 0;
	}

	#get-local h3 {
		display: none;
	}

	#get-local a {
		color: #fff;
		font-weight: bold;
	}

	#get-local ul {
		position: absolute;
		top: 45px;
		float: left;
		margin: 0 .75em;
	}

	#get-local ul li {
		float: left;
		width: 71px;
	}

	#get-local form {
		position: absolute;
		top:  90px;
		left: 10px;
	}

	#get-local form select {
		margin: 0 auto;
		padding: 0;
		width: 130px;
	}

	#get-local form input {
		float: left;
	}

	form#state_form {
		width: 130px;
		margin: 0;
		padding: 0;
	}

	select#state_selector {
		width: 130px;
	}
	/* }}} */


/*
 * Footer.
 * {{{ */
	#footer {
		background-color: #000;
	}

	#footer-inner {
		color: #fff;
		background-color: #000;
		padding: 18px 0 0 0;
		text-transform: uppercase;
	}

	#footer a {
		border-bottom: none;
	}

	#footer ul {
		padding: 0;
		margin-left: 0;
	}

	#footer li {
		margin: 0;
		display: inline;
	}

	#footer li a { 
		color: #fff; 
		margin-right: 10px;
		font-weight: bold;
	}

	#footer li a:hover {
		color: #777;
	}

	#footer p#eaglefamily-nav {
		text-align: right;
	}

	#footer p#eaglefamily-nav a {
		color: #fff;
		padding: 0 0 0 5px
	}

	#footer p#eaglefamily-nav a:hover {
		color: #777;
	}

	#footer .footer-inner .links-left
	{
		float: left;
	}

	#footer .footer-inner .links-right
	{
		float: right;
	}

	#copyright {
		font-size: .80em;
		text-align: center;
		border-top: 3px solid #666;
		color: #777;
		text-transform: uppercase;
		padding: 10px 0px;
	}


	#copyright a, #copyright a:hover {
		color: #777;
		text-decoration: underline;
		border-bottom: none;
	}

	#copyright a:hover {
		text-decoration: none;
	}
	/* }}} */


/*
 * Footer.
 * {{{ */
	div.ad {
		text-align: center;
		margin-bottom: 2em;
		clear: both;
	}
 /* }}} */

/*
 * Sidebar widgets.
 * {{{ */
	.sidebar {
		clear: both;
		margin-bottom: 0px;
		padding-bottom: 0px;
		background-color: #fff;
		padding: 0px;
	}

	.sidebar div.left
	{
		width: 160px;
	}

	.redstate-widget {
		clear: both;
	}

	.left .redstate-widget {
		width: 160px;
	}

	.right .redstate-widget {
		width: 220px;
	}

	.redstate-widget ul {
		clear: both;
		background-color: #fff;
		margin-bottom: 0px;
	}

	.sidebar .stripes,
	.redstate-widget ul {
		padding-top: 3px;
		margin-left: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		padding-bottom: 0px;
		margin-bottom: 20px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.redstate-widget li a {
		color: #336699;
		font-weight: bold;
		text-decoration: none;
	}

	.redstate-widget li  {
		margin-left: 0px;
		margin-right: 0px;
		padding-top: 3px;
		padding-bottom: 3px;
		padding-right: 5px;
		padding-left: 22px;
		background-position: 3px 4px;
		background-repeat: no-repeat;
	}

	.redstate-widget li.odd  {
	}

	.redstate-widget li.even  {
		background-color: #ffd;
		border-top: 1px solid #c8cb9e;
		border-bottom: 1px solid #c8cb9e;
	}

	.widget-header-left {
		background-image: url("css/img/widget_header_left.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 42px;
		float: left;
	}

	.widget-header-right {
		background-image: url("css/img/widget_header_right.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 42px;
		float: left;
	}

	.widget-header {
		height: 42px;
	}

	.widget-title {
		background-image: url("css/img/widget_header_bg.gif");
		background-repeat: repeat-x;
		width: 192px;
		float: left;
		height: 42px;
		text-align: center;
		/*
		position: relative;
		*/
		font-weight: bold;
		text-transform: capitalize;
		font-family: Helvetica, Arial, Verdana, "sans-serif";
		vertical-align: middle;

		/* This line height is needed to keep the shadow aligned. */
		line-height: 18px;
	}

	.get-redstate-by-e-mail .widget-header-left,
	.rs-jobs .widget-header-left,
	.subscribe-to-rs .widget-header-left,
	.blue .widget-header-left {
		background-image: url("css/img/widget_header_blue_left.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 32px;
		float: left;
	}

	.get-redstate-by-e-mail .widget-header-right,
	.rs-jobs .widget-header-right,
	.subscribe-to-rs .widget-header-right,
	.blue .widget-header-right {
		background-image: url("css/img/widget_header_blue_right.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 32px;
		float: left;
	}

	.get-redstate-by-e-mail .widget-header,
	.rs-jobs .widget-header,
	.subscribe-to-rs .widget-header,
	.blue .widget-header {
		height: 32px;
	}

	.get-redstate-by-e-mail .widget-title,
	.rs-jobs .widget-title,
	.subscribe-to-rs .widget-title,
	.blue .widget-title {
		background-image: url("css/img/widget_header_blue_bg.gif");
		background-repeat: repeat-x;
		width: 192px;
		float: left;
		height: 32px;
		text-align: center;
		/*
		position: relative;
		*/
		font-weight: bold;
		text-transform: capitalize;
		font-family: Helvetica, Arial, Verdana, "sans-serif";
		vertical-align: middle;

		/* This line height is needed to keep the shadow aligned. */
		line-height: 18px;
	}


	.left .widget-title {
		width: 132px;
	}

	.widget-title .title {
		z-index: 4;
		color: #fff;
		position: relative;
		top: 8px;
	}

	.get-redstate-by-e-mail .widget-title .title,
	.rs-jobs .widget-title .title,
	.subscribe-to-rs .widget-title .title,
	.blue .widget-title .title {
		z-index: 4;
		color: #000;
		position: relative;
		top: 8px;
	}

	.widget-title .shadow {
		z-index: 3;
		position: relative;
		top: -9px;
		left: 2px;
		/*
		width: 192px;
		height: 42px;
		height: 30px;
		*/
		color: #333;
	}

	.get-redstate-by-e-mail .widget-title .shadow,
	.rs-jobs .widget-title .shadow,
	.subscribe-to-rs .widget-title .shadow,
	.blue .widget-title .shadow {
		display: none;
	}

	.widget-body {
		background-color: #fff;
		clear: both;
		vertical-align: top;
	}

	.widget-footer-left {
		background-image: url("css/img/widget_footer_left.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 26px;
		float: left;
	}

	.widget-footer-content {
		background-image: url("css/img/widget_footer_bg.gif");
		background-repeat: repeat-x;
		width: 192px;
		height: 26px;
		float: left;
		text-align: center;
	}

	.left .widget-footer-content {
		width: 132px;
	}

	.widget-footer-content a {
		color: #fff;
		text-decoration: none;
	}

	.widget-footer-right {
		background-image: url("css/img/widget_footer_right.gif");
		background-repeat: no-repeat;
		width: 14px;
		height: 26px;
		float: right;
	}
	/* }}} */


/*
 * Widget: Action alert signup
 * {{{ */
	#action-alert-signup {
		margin: 10px 0px;
		background-image: url("css/img/actionalert.jpg");
		background-repeat: no-repeat;
	}
	#action-alert-signup,
	#action-alert-signup a {
		display: block;
		width: 160px;
		height: 86px;
	}
	/* }}} */


/*
 * Widget: Toby Toons
 * {{{ */
	#tobytoons {
		margin: 10px 0px;
		background-image: url("css/img/tobytoons.jpg");
		background-repeat: no-repeat;
	}
	#tobytoons,
	#tobytoons a {
		display: block;
		width: 160px;
		height: 120px;
	}
	/* }}} */


/*
 * Widget: NTU Conference
 * {{{ */
	#ntu-conference {
		margin: 10px 0px;
		background-image: url("/static/redstate/NTUCon2009Logo.jpg");
		background-repeat: no-repeat;
	}
	#ntu-conference,
	#ntu-conference a {
		display: block;
		width: 220px;
		height: 102px;
	}
	/* }}} */


/*
 * Widget: Recommended Diaries.
 * {{{ */

	#recommended-diaries {
		font-size: 1.1em;
	}

	#recommended-diaries .widget-title {
		font-family: Helvetica, Arial, Verdana, "sans-serif";
		font-size: 13px;
	}

	#recommended-diaries li {
		background-image: url('css/img/icon_post.png');
		vertical-align: top;
		margin-top: 0px;
	}

	#recommended-diaries ul {
		padding-top: 0px;
		vertical-align: top;
	}

	#recommended-diaries .widget-body {
		margin-top: 0px;
		padding-top: 0px;
	}
	/* }}} */


/*
 * Widget: Subscribe box (RSS).
 * {{{ */
	#redstate_subscribe_widget .widget-title {
		font-family: Helvetica, Arial, Verdana, sans-serif;
		font-size: 12px;
	}

	#redstate_subscribe_widget ul li {
		background-image: url('css/img/icon_rss.png');
		/* RSS icon is a little off. */
		padding-top: 1px;
	}

	#redstate_subscribe_widget li a {
		color: #336699;
		font-weight: bold;
	}
	/* }}} */


/*
 * Widget: Recent comments (sitewide)
 * {{{ */
	#redstate_recent_comments .widget-title {
		font-family: Helvetica, Arial, Verdana, sans-serif;
		font-size: 16px;
	}

	#redstate_recent_comments ul li {
		background-image: url('css/img/icon_comments.png');
	}
	/* }}} */


/*
 * Widget: Member diaries.
 * {{{ */
	#redstate_recentdiaries_widget .widget-title {
		font-size: 16px;
	}

	#redstate_recentdiaries_widget ul li {
		background-image: url('css/img/icon_post.png');
	}
	/* }}} */


/*
 * Widget: Skyscraper ad.
 * {{{ */
	.ad-skyscraper {
		margin-bottom: 16px;
	}
	/* }}} */


/*
 * Widget: Slatecard.
 * {{{ */
	.slatecard {
		margin-bottom: 16px;
	}
	/* }}} */


/*
 * Widget: Redhot.
 * {{{ */
	#redstate_redhot_widget .widget-header-right,
	#redstate_redhot_widget .widget-header-left,
	#redstate_redhot_widget .widget-title,
	#redstate_new_redhot_widget .widget-header-right,
	#redstate_new_redhot_widget .widget-header-left,
	#redstate_new_redhot_widget .widget-title {
		display: none;
	}

	#redstate_redhot_widget .widget-header,
	#redstate_new_redhot_widget .widget-header {
		background-image: url('css/img/redhot.gif');
		color: cyan;
		font-size: 16px;
	}

	#redstate_redhot_widget .widget-title .title,
	#redstate_redhot_widget .widget-title .shadow,
	#redstate_new_redhot_widget .widget-title .title,
	#redstate_new_redhot_widget .widget-title .shadow {
		color: red;
		display: none;
	}

	#redstate_redhot_widget ul li {
		background-image: url('css/img/icon_post.png');
	}

	#redstate_new_redhot_widget ul li {
		padding-left: 5px;
		clear: both;
	}

	#redstate_new_redhot_widget img.authorimage {
		float: left;
		margin-right: 5px;
		width: 48px;
		height: 48px;
	}

	/* }}} */


	#redstate_get_email_widget .widget-body {
		padding: 10px;
	}

/* Login form */

#login {
	margin: 0;
	padding: 5px;
	background-color: white;
	border: 1px solid black;
}

#login h1 {
	display: none;
}

#login h1 a {
	background: none;
}

#login .submit, #login .forgetmenot {
	position: static;
	margin: 0px;
}

#login #nav {
	position: static;
	margin: 10px auto;
	width: 100%;
	padding: 0px;
	clear: both;
	text-align: center;
}

#login #nav a {
	color: #8a2c22;
	font-weight: bold;
}

/* User profile */
.user-profile .user-bio {
	margin: 0px 10px 10px 10px;
	border-top: 1px dotted black;
	border-bottom: 1px dotted black;
}

.user-profile .reply-list .meta {
	margin-left: 1em;
	font-size: smaller;
	font-weight: normal;
}

.user-profile h3 {
	clear: none;
}

.banned-user {
	text-decoration: line-through;
}


/*
 * User navigation iframe.
 */

iframe#navigationFrame {
	background-color: #fff;
	height: 30px;
	width: 100%;
	overflow: hidden;
}

.inline-print-only,
.block-print-only {
	display: none;
}

/* vim: set noexpandtab fdm=marker: */

/* Required WordPress Styles */
.aligncenter, div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.wp-caption {
	background-color: #f3f3f3;
	border: 1px solid #ddd;
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px; /* optional rounded corners for browsers that support it */
	margin: 10px;
	padding-top: 4px;
	text-align: center;
}
.wp-caption img {
	border: 0 none;
	margin: 0;
	padding: 0;
}
.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/*
 * background, b7c0c9
 * foreground, white
 */

.roundedBoxContent {
    padding: 8px;
    padding-top: 0px;
}

.rounded,
.roundedblue {
    display: block;
}

.rounded * {
    display: block;
    height: 1px;
    overflow: hidden;
    font-size: .01em;
    background-color: #ffffff;
}

.rounded1 {
    margin: 0px 3px;
    padding: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #dfdfdf;
    background-color: #f1f1f1;
}

.rounded2 {
    margin: 0px 1px;
    padding: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #cdcdcd;
    background-color: #f4f4f4
}

.rounded3 {
    margin: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #f4f4f4;
}

.rounded4 {
    border-width: 0px 1px;
    border-style: solid;
    border-color: #dfdfdf;
}

.rounded5 {
    border-width: 0px 1px;
    border-style: solid;
    border-color: #f1f1f1;
}

.roundedfg {
    padding: 0px;
    background-color: #ffffff;
}


/* TODO: These need to be moved. */
.tableform fieldset {
    padding: 0em;
    margin: 0px;
    border: none;
}

form {
    padding: 0em;
}

/*
 * background, b7c0c9
 * foreground, a5c6d3
 */

.roundedblue * {
    display: block;
    height: 1px;
    overflow: hidden;
    font-size: .01em;
    background-color: #ffffff;
    background-color: #a5c6d3;
}

.rounded1blue {
    margin: 0px 3px;
    padding: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #afc2cd;
    background-color: #afc2cd;
}

.rounded2blue {
    margin: 0px 1px;
    padding: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #b5c0ca;
    background-color: #a8c4d1;
}

.rounded3blue {
    margin: 0px 1px;
    border-width: 0px 1px;
    border-style: solid;
    border-color: #a8c4d1;
}

.rounded4blue {
    border-width: 0px 1px;
    border-style: solid;
    border-color: #afc2cd;
}

.rounded5blue {
    border-width: 0px 1px;
    border-style: solid;
    border-color: #a9c4d0;
}


/*
 * Nested comments, all levels.
 * {{{ */
	.comment {
		position: relative;
		margin: 3px;
		margin-top: 6px;
		padding: 0px 0px 4px 0px;
		padding: 0px;
		margin: 0px;
	}

	.odd {
		background-color: #f8f8f8;
	}

	.comment div {
		position: relative;
	}

	.comment .comment img {
		margin: 0px;
	}

	.comment .reply {
		text-align: left;
		font-size: 80%;
		padding: 0px 6px 6px 0px;
	}

	.comment {
		border-left: 1px solid #ddd;
		border: none;
		margin-top: 0px;
	}

	.comment .title {
		margin: 0px;
		border: 0px dashed red;
		padding: 0px 6px;
		padding-top: 10px;
	}

	.comment .title h3 {
		margin-bottom: 0px;
		font-size: 1.2em;
		line-height: 1.8em;
		border-bottom: 2px solid #AAA;
	}

	input#subscribe {
		width: auto;
	}

	.comment .body .content {
		padding: 3px 3px 0px 3px;
		overflow: auto; 
	}

	.comment .title abbr {
		border: none;
	}

	.collapsed .body, .collapsed .comment {
		display: none;
	}
	 
	#commentform textarea {
		width: 97%;
	}
	/* }}} */


/*
 * Nested comments containers.
 * {{{ */
	.comment .comment {
		border-left: 3px solid #A5C6D3;
	}

	.comment .comment .title {
		background-color: #fff;
	}
	/* }}} */

/* vim: set noexpandtab fdm=marker: */


