@charset "utf-8";
/* CSS Document */

html {-webkit-text-size-adjust:133%;}

body {
	background-color: #ffffff;;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height:140%;
	color: #555555;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	min-width:993px;
}

h1 {
	font-size:22px;
	color:#333333;
}

h2 {
	font-size:18px;
	color:#333333;
}

h3 {
	font-size:16px;
	color:#333333;
}

h4 {
	font-size:14px;
	color:#333333;
}

a:link, a:visited, a:active {
	color: #006699;
	text-decoration: none;
}

a:hover {
	color: #DC181E
}

a:link img,  a:visited img, a:active img {
	border:none;
}

.small_text {
	font-size:11px;
	line-height:120%;
}

.page_width {
	width:965px;
	margin:0 auto;
}

#header {
	background-image:url(images/header_bg.png);
	background-repeat:repeat-x;
	background-color:#060606;
	color:#999999;
	padding-top:5px;
	height:100px;
}

#header a:link, #header a:visited, #header a:active {
	color:#999999;
}

#header a:hover {
	color:#bbbbbb;
}

#header_nav {
	border-top:1px solid #406f9c;
	border-bottom:1px solid #345b80;
	background-image:url(images/header_nav_bg.png);
	background-repeat:repeat-x;
	background-color:#4b81b5;
	font-size:16px;
	color:#fff;
	padding:10px 0px;
	text-shadow:#35689a 1px 1px 0px;
	/*-webkit-text-size-adjust:none;*/
}

#header_nav a:link, #header_nav a:visited, #header_nav a:active {
	color:#fff;
	padding:10px 18px;
}

#header_nav a:hover {
	color:#aae2f8;
}

#content {
	background-image:url(images/content_bg.png);
	background-color:ffffff;
	background-repeat:repeat-x;
	min-height:248px;
}

.main_block_outer {
	background-image:url(images/main_block_border.png);
	background-repeat:repeat-y;
	width:993px;
	margin:0 auto;
	padding:0px;
}

.main_block_outer_bottom {
	background-image:url(images/main_block_border_bottom.png);
	background-repeat:no-repeat;
	width:993px;
	margin:0 auto;
	padding:0px;
	height:28px;
	margin-bottom:15px;
}

.main_block {
	background-color:#FFF;
	width:965px;
	margin:0 auto;
	padding:0px;
	overflow:hidden;
}

.main_block_bottom_filler {
	background-color:#FFF;
	width:935px;
	margin:0 auto;
	padding:0px 15px;
	font-size:0px;
	line-height:14px;
}

#footer {
	background-image:url(images/header_bg.png);
	background-repeat:repeat-x;
	background-color:#060606;
	color:#999999;
	padding:15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;	
	-moz-border-radius: 5px;
}

#footer a:link, #footer a:visited, #footer a:active {
	color:#999999;
}

#footer a:hover {
	color:#bbbbbb;
}

/* Forms */

input, textarea, select {
	font-family:Arial, Helvetica, sans-serif;
	border:1px solid #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;	
	-moz-border-radius: 4px;
	padding:3px;
	font-size:16px;
}

#header input[type=text] {
	border:1px solid #35689a;
	padding:5px;
	width:300px;
}

input:focus, textarea:focus{
	background-color: lightyellow;
}

input[type=radio], input[type=checkbox] {
	border:none;
}

input[type=button], input[type=submit], input[type=reset]{
	background-color:#35689a;
	background-image:url(/images/button_bg_blue.png);
	background-repeat:repeat-x;
	border:1px solid #35689a;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;	
	-moz-border-radius: 4px;
	color:#FFF;
	text-shadow:#35689a 1px 1px 0px;
	padding:4px 8px;
	box-shadow: 3px 3px 3px #ccc;
  -moz-box-shadow: 3px 3px 3px #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
}

select {
	font-size:13px;
	padding:2px;
}

#header input[type=button], #header input[type=submit] {
	box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

input[type=button]:hover, input[type=submit]:hover {
	border:1px solid #1e3c59;
	text-shadow:#1e3c59 1px 1px 0px;
}

input[type=button]:focus, input[type=submit]:focus {
	background-color:#35689a;
	background-image:none;
}

label {
	font-weight:bold;
	display:block;
}

/* End Forms */


/* Notification Boxes */

.notification_box_info, .notification_box_success, .notification_box_warning, .notification_box_error  {
	border: 1px solid;
  margin: 10px 0px;
  padding:10px 10px 10px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
	clear:both;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;	
	-moz-border-radius: 8px;
}

.notification_box_info {
	background-color:#BDE5F8;
	background-image: url('/images/info.png');
	color:#00529B;
}

.notification_box_success {
	background-color:#DFF2BF;
	background-image: url('/images/success.png');
	color:#4F8A10;
}

.notification_box_warning {
	background-color:#FEEFB3;
	background-image: url('/images/warning.png');
	color:#9F6000;
}

.notification_box_error {
	background-color:#FFBABA;
	background-image: url('/images/error.png');
	color:#D8000C;
}

.notification_box_info a, .notification_box_success a, .notification_box_warning a, .notification_box_error a  {
	text-decoration:underline;
}

/* End Notification Boxes */


/* Blocks */

.block_container {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius:5px;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-khtml-border-bottom-left-radius:5px;
	-khtml-border-bottom-right-radius:5px;
	box-shadow: 0px 3px 3px #ccc;
  -moz-box-shadow: 0px 3px 3px #ccc;
  -webkit-box-shadow: 0px 3px 3px #ccc;
	margin-bottom:15px;
}

.block_top {
	background-color:#444444;
	background-image:url(/images/block_top_gradient.png);
	background-repeat:repeat-x;
	padding:5px 8px 5px 8px;
	font-size:16px;
	font-weight:bold;
	color:#FFFFFF;
	overflow:hidden;
	text-shadow:#333333 1px 1px 1px ;
	border-bottom:1px solid #3d3d3d;
}

.block_top a, .block_top a:visited, .block_top a:active {
	color:#FFFFFF;
	text-decoration:underline;
	font-weight:normal;
}

.block_top img {
	vertical-align:middle;
}

.block_sub_top {
	background-color:#EFEFEF;
	padding:8px;
	border:1px solid #cccccc;
	border-top:none;
}

.block_content {
	padding:8px;
	background-color:#ffffff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius:5px;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-webkit-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-khtml-border-bottom-left-radius:5px;
	-khtml-border-bottom-right-radius:5px;
	overflow:hidden;
	border:1px solid #cccccc;
	border-top:none;
}

.block_content a:hover img {
	opacity:0.85;
}

.gray_block {
	border:1px solid #cccccc;
	background-color:#EFEFEF;
	padding:10px;
	overflow:hidden;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;	
	-moz-border-radius: 3px;
}

.block_forum {
	border:1px solid #9CA7B8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;	
	-moz-border-radius: 3px;
	margin-bottom:15px;
	padding-bottom:3px;
	clear:both;
	box-shadow: 0px 3px 3px #ccc;
  -moz-box-shadow: 0px 3px 3px #ccc;
  -webkit-box-shadow: 0px 3px 3px #ccc;
}

.block_forum_top {
	background-color:#ECF0F9;
	background-image:url(/images/gray_fade.png);
	background-repeat:repeat-x;
	padding:4px 8px;
	font-size:16px;
	color:#000000;
	font-weight:bold;
	text-shadow:1px 1px 0 #FFFFFF;
	border-bottom:1px solid #9CA7B8;
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
}

.block_forum_sub_top {
	padding:6px;
	font-weight:bold;
	background-color:#efefef;
	border-bottom: 1px solid #cccccc;
}

.block_forum_row {
	background-color:#ffffff;
	background-image:url(/images/gray_fade2.png);
	background-repeat:repeat-x;
	background-position:bottom;
	border-bottom:1px solid #DBE3E6;
	padding:6px;
	overflow:hidden;
}

.block_forum_row img {
	vertical-align:middle;
}

/* End BLocks */


.page_title_section {
	background-image:url(images/header_bg.png);
	background-repeat:repeat-x;
	background-color:#060606;
	color:#bbbbbb;
	padding:15px;
}

.page_title_section h1 {
	color:#ffffff;
	margin:5px 0px;
	text-shadow:#000000 1px 1px 1px;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	font-weight:normal;
}

.page_title_section a, .page_title_section a:visited, .page_title_section a:active {
	color:#00AEEF;
}

.page_title_section a, .page_title_section a:visited, .page_title_section a:active {
	color:#ffffff;
}

.list_links {
	
}

.list_links a, .list_links a:visited, .list_links a:active {
	display:block;
	padding: 5px 0px;
	border-bottom:1px dotted #cccccc;
	font-size:13px;
}

.list_links a:hover {
	
}

.navbar {
	background-image:url(/images/navbar.png);
	background-repeat:repeat-x;
	background-color:#d2d2d2;
	font-size:13px;
	padding:4px 8px;
	line-height:24px;
	border-bottom:1px solid #c2c2c2;
	border-top-left-radius: 4px;
	border-top-right-radius:4px;
	-moz-border-radius-topleft:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-left-radius:4px;
	-webkit-border-top-right-radius:4px;
	-khtml-border-top-left-radius:4px;
	-khtml-border-top-right-radius:4px;
	box-shadow: 0px 3px 3px #ddd;
  -moz-box-shadow: 0px 3px 3px #ddd;
  -webkit-box-shadow: 0px 3px 3px #ddd;
}

.navbar img {
	vertical-align:top;
}

.navbar a, .navbar a:visited, .navbar a:active {
	padding: 4px 0px;
}

/* Gallery Table */

.gallery_table {
	margin-top:5px;
	margin-bottom:10px;
	border-collapse:collapse;
	box-shadow: 0px 3px 3px #ccc;
  -moz-box-shadow: 0px 3px 3px #ccc;
  -webkit-box-shadow: 0px 3px 3px #ccc;
}

.gallery_table_header {
	background-image:url(/images/header_nav_bg.png);
	background-repeat:repeat-x;
	background-color:#4b81b5;
	color:#ffffff;
	text-shadow:#35689a 1px 1px 0px;
	font-weight:bold;
	padding:5px;
	border-bottom:1px solid #345B80;
}

.gallery_table_header a, .gallery_table_header a:visited, .gallery_table_header a:active {
	color:#ffffff;
	text-decoration:underline;
}

.gallery_table_row {
	background-color:#ffffff;
	padding:6px;
}

.alt_row_color {
	background-color:#efefef;
}

/* End Gallery Table */


/* Page Navigation */

.page_navigation {
	margin-top:10px;
}

.page_navigation a {
	border:1px solid #006699;
	padding:3px 4px;
}

.page_navigation a:hover {
	border:1px solid #dc181e;
}

.page_navigation_current {
	background-color:#DEDEDE;
	border:1px solid #dedede;
	padding:3px 4px;
	color:#444444;
	text-shadow:none;
}

.page_navigation span.inactive {
	border:1px solid #dedede;
	padding:3px 4px;
}

/* End Page Navigation */

.forum_button_large {
	height:24px;
	width:117px;
	margin-bottom:10px;
	-webkit-text-size-adjust:none;
}

.forum_button_large a, .forum_button_large a:visited, .forum_button_large a:active {
	padding:2px 0px 0px 28px;
	background-color:transparent;
	background-image:url(/images/forum_buttons.png);
	background-repeat:no-repeat;
	color:#ffffff;
	height:24px;
	display:block;
}

.forum_button_large a:hover {
	background-position:-250px 0;
}

.forum_button_small {
	height:24px;
	width:83px;
	margin-bottom:10px;
	-webkit-text-size-adjust:none;
}

.forum_button_small a, .forum_button_small a:visited, .forum_button_small a:active {
	padding:2px 0px 0px 28px;
	background-color:transparent;
	background-image:url(/images/forum_buttons.png);
	background-position:0px -100px;
	background-repeat:no-repeat;
	color:#ffffff;
	height:24px;
	display:block;
}

.forum_button_small a:hover {
	background-position:-250px -100px;
}

.button_blue {
	width:232px;
	height:34px;
	-webkit-text-size-adjust:none;
	margin-bottom:15px;
}

.button_blue a, .button_blue a:visited, .button_blue a:active {
	font-size:16px;
	line-height: 34px;
	display:block;
	background-color:#35689a;
	background-image:url(/images/button_bg_blue.png);
	background-repeat:repeat-x;
	border:1px solid #35689a;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;	
	-moz-border-radius: 4px;
	color:#FFF;
	text-shadow:#35689a 1px 1px 0px;
	box-shadow: 3px 3px 3px #ccc;
  -moz-box-shadow: 3px 3px 3px #ccc;
  -webkit-box-shadow: 3px 3px 3px #ccc;
}

.button_blue a:hover {
	border:1px solid #1e3c59;
	text-shadow:#1e3c59 1px 1px 0px;
}

/* Begin Story */

.story {
	margin-bottom:20px;
	border-bottom:1px dotted #888888;
}

.story_header {
	font-size:12px;
	color:#888888;
	border-bottom:1px dotted #888888;
	overflow:hidden;
}

.story_header h2 {
	margin-bottom:3px;
}

.story_content {
	margin:10px 0px;
}

.story_footer {
	/*background-color:#efefef;*/
	padding:4px 5px;
	color:#777777;
	font-size:13px;
	text-align:right;
}

.story_footer a, .story_footer a:visited, .story_footer a:active {
	
}

.story_pics {
	background-color:#EFEFEF;
	padding:6px;
	text-align:left;
	margin:0px;
}

.story_pics h3 {
	margin-top:3px;
	margin-bottom:7px;
}

.story_pics .highslide img {
	margin:2px;
	padding:3px;
	background-color:#ffffff;
	border:1px solid #cccccc;
}

.story_pics .highslide img:hover {
	border:1px solid #afafaf;
}

/* End Story */

/* AddThis CSS Begin */

.addthis_toolbox .hover_effect
{
    width: 100%;
    padding: 5px 0 3px 5px;
		font-size:12px;
}

.addthis_toolbox .hover_effect div
{
    float: left;
}

.addthis_toolbox .hover_effect a
{
    border: 2px solid #fff;
    padding: 2px 2px 2px 16px;
    position: relative;
    text-decoration: none;
		margin-right:5px;
		color:#555555;
}

.addthis_toolbox .hover_effect a:hover
{
    border: 2px solid #105CB6;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    background: #B4D3F8;
    color: #105CB6;
    text-decoration: none;
}

.addthis_toolbox .hover_effect span
{
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 1px;
}

/* AddThis CSS End */

/* Comments */

.comment_header {
	background-color:#efefef;
	padding:6px 10px;
	border:1px solid #cccccc;
	border-bottom:none;
	color:#777777;
	border-top-left-radius: 5px;
	border-top-right-radius:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:5px;
	-khtml-border-top-left-radius:5px;
	-khtml-border-top-right-radius:5px;
}

.comment_content {
	background-color:#ECF1F2;
	padding:10px;
	margin-bottom:15px;
	border:1px solid #cccccc;
	color:#444444;
}

/* End Comments */

/* Menu Nav Bar */

#menu_nav_bar {
	background-color:#333333;
	height:32px;
	color:#FFFFFF;
	font-size:14px;
	box-shadow: 0px 3px 3px #ccc;
  -moz-box-shadow: 0px 3px 3px #ccc;
  -webkit-box-shadow: 0px 3px 3px #ccc;
	-webkit-text-size-adjust:none;
}

#menu_nav_bar img {
	vertical-align:middle;
}

#menu_nav_bar a, #menu_nav_bar a:visited, #menu_nav_bar a:active {
	color:#bbbbbb;
	text-shadow:#222222 1px 1px 0px;
}

#menu_nav_bar ul {
	list-style-type: none;
	margin:0px; padding: 0px;
}

#menu_nav_bar ul li {
	float: left;
	position: relative;
}

#menu_nav_bar ul li a, #menu_nav_bar ul li a:visited, #menu_nav_bar ul li a:active {
	text-align: center;
	display:block;
	text-decoration:none;
	padding-top:6px;
	padding-bottom:6px;
	padding-left:10px;
	padding-right:11px;
}

#menu_nav_bar ul li a:hover {
	color:#ffffff;
}

#menu_nav_bar ul li ul {
	display: none;
}

#menu_nav_bar ul li:hover ul {
	display: block;
	position: absolute;
	z-index:10;
}

#menu_nav_bar ul li:hover ul li a {
	display:block;
	background:#000000;
	font-size:12px;
	width: 46px;
	text-align: left;
	border-bottom: 1px solid #333333;
	border-right: none;
	border-left: 8px solid #333333;
	padding-top:2px;
	padding-bottom:2px;
	padding-left:5px;
}

#menu_nav_bar ul li:hover ul li a:hover {
	color:#ffffff;
}

/* End Menu Nav Bar */

.highlight {
	background-color:#FFFF66;
	color:#000000;
	text-shadow:none;
}
