/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  Bookmarks -----
    __register
    __fonts
    __intro
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; text-decoration: none; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { border:0; margin:0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:12px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #444; }
a:hover { color: #000 !important;; }


ul, ol { list-style: none;}
ol { list-style: none; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #c0221f; color:#fff; text-shadow: none; }
::selection { background:#c0221f; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearBoth{
	clear:both;	
}

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; width:100%; }

/* Take away chrome outline */
*:focus {outline: none;}

textarea {
    border: 1px solid #ABADB3;
    padding: 6px 6px 6px 5px;
    width: 97%;
    margin-bottom: 5px;
}
.length {width:190px; padding:3px; font-size:12px; margin-bottom: 5px;}
.button{width:100px; margin-bottom: 5px;}

/* __fonts */
/*---------------*/
@font-face {
  font-family: 'Typewriter';
  src: url('/fonts/typewriter/typewriter.eot#') format('eot'),  /* IE6–8 */
       url('/fonts/typewriter/typewriter.woff') format('woff'),  /* FF3.6+, IE9, Chrome6+ */
       url('/fonts/typewriter/typewriter.ttf') format('truetype');  /* Saf3+, Chrome4+, FF3.5, Opera 10+ */
}







.tod-red {
    background: #C12320;
    background: -moz-linear-gradient(top, #C12320 0%, #A6211F 100%);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#C12320), to(#A6211F));
    border: 1px solid #A6211F;
    border-bottom: 1px solid #881D1B;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: inset 0 1px 0 0 #D32D2A;
    -webkit-box-shadow: inset 0 1px 0 0 #D32D2A;
    box-shadow: inset 0 1px 0 0 #D32D2A;
    color: white;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    padding: 7px 0 8px 0;
    text-align: center;
    text-shadow: 0 -1px 0 #881D1B;
    width: 150px;
}

.tod-red:hover {
  background: #b3201d;
  background: -moz-linear-gradient(top, #b3201d 0%, #a11d1b 100%);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#b3201d), to(#a11d1b));
  -moz-box-shadow: inset 0 1px 0 0 #c92623;
  -webkit-box-shadow: inset 0 1px 0 0 #c92623;
  box-shadow: inset 0 1px 0 0 #c92623;
  cursor: pointer;
}

.tod-red:active {
  border: 1px solid #9b1917;
  border-bottom: 1px solid #7f1917;
  -moz-box-shadow: inset 0 0 8px 4px #931210, 0 1px 0 0 #eee;
  -webkit-box-shadow: inset 0 0 8px 4px #931210, 0 1px 0 0 #eee;
  box-shadow: inset 0 0 8px 4px #931210, 0 1px 0 0 #eee;
}






 /* Primary Styles
    Author: 
 */

body{
	background: #FFF url(../images/mains/mainBackground.jpg) no-repeat;
	margin: auto 0;
	position:relative;
}

h1, h2 {color: #585858;font-size: 36px;letter-spacing: -2px;}
h3{font-size: 16px; margin: 30px 0 5px;}
h4{font-size: 14px; margin:0 0 5px 0;}


.pageTopSection{
	height: 220px;
	padding-left: 15px;	
}
.contentLeft .justTitle{height:160px;}
.pageTopSection span{	
	font-family:Lucida Sans Unicode;
	font-size: 26px;
	line-height: 32px;
	display: block;
	padding-top: 40px;
}
.pageTopSection p{
	font-size: 12px;
	line-height: 18px;
	margin: 10px 0 0 0;
	width: 390px;
	font-family:Lucida Sans Unicode;
	color:#6f6f6f;
}


/* __intro */
/*---------------*/
.introMain{
    font-family: Typewriter;
    color: #fff;
    width:100%;
    height:785px;
    background: url(../images/mains/intro.jpg) no-repeat;  
}

.introForm{
    position: absolute;
    top: 440px;
    left: 280px;
}
.introForm .signup_username, .introForm .signup_email {
    width: 170px;
    font-family: typewriter;
    font-size: 14px;
    padding: 7px 3px 3px 5px;
    border: none;
    background: none;
    color: #000;
}

.introButtonWrap{text-align:right;margin: 6px -7px 0;}
.introButton{
    width: 145px;
    height: 38px;
    background: url(../images/forms/intro-register.png) no-repeat;
    border: none;
}

.introText{
    position: absolute;
    width: 216px;
    top: 530px;
    left: 370px;
    height: 35px;
}
.introText a{
    text-indent:-9999px;
    height: 35px;
    display:block;
    background: url(../images/mains/introLinks.jpg) no-repeat;
}

/* HEADER CSS */
#mainContainer{margin:0 auto; width: 960px; position: relative;}
#header{width: 960px; height: 210px; position: relative;}

.logo{
	width: 472px;
	height: 127px;
	position: absolute;
	left: -25px;
	top: 35px;	
	background: url(../images/mains/logo.png) no-repeat;
}
.logo a{
	display: block;
	text-indent: -9999px;
	height: 100%;
}
/* END HEADER CSS */


/* MAIN CSS */
#mainContentBoxOuter{
	margin: 0 auto;
	margin-bottom: 50px;
	width:960px;
	position:relative;
	-moz-border-radius: 5px; /* FF1+ */
	-webkit-border-radius: 5px; /* Saf3-4, iOS 1+, Android 1.5+ */
	border-radius: 5px; /* Opera 10.5, IE9, Saf5, Chrome, FF4 */
	-moz-box-shadow: 0px 0px 2px #0f0f0f; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 2px #0f0f0f; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 2px #0f0f0f; /* Opera 10.5, IE9, Chrome 10+ */
	background: #000;
	padding-bottom: 9px;
}

.nav{
	height: 75px;
	width: 950px;
	margin: 0 auto;
	background: url(../images/mains/menu.jpg) no-repeat top center;	
}
.nav a{
	height: 60px;
	display: block;
	float: left;
	background-repeat: no-repeat;
	background: url(../images/mains/menu.jpg) no-repeat top center;	
	z-index:100;
	margin-top: 9px;
}

/* NOT LOGGED IN MENU CSS */
.nav .nav-home{width:104px;background-position: 0px -9px;}
.nav .nav-register{width:101px; background-position: -104px -9px;}
.nav .nav-about{width:102px;background-position: -205px -9px;}
.nav .nav-tour{width:102px;background-position: -307px -9px;}
.nav .nav-forums{width:102px;background-position: -409px -9px;}
.nav .nav-contact{width:96px;background-position: -511px -9px;}
.nav .nav-login{width:339px;background-position: -607px -9px;}

.nav .nav-home:hover{background-position: 0px -84px;}
.nav .nav-register:hover{background-position: -104px -84px;}
.nav .nav-about:hover{background-position: -205px -84px;}
.nav .nav-tour:hover{background-position: -307px -84px;}
.nav .nav-forums:hover{background-position: -409px -84px;}
.nav .nav-contact:hover{background-position: -511px -84px;}
.nav .nav-login:hover{background-position: -607px -84px;}
/* END NOT LOGGED IN MENU CSS */

.navLoggedin{
	height: 75px;
	width: 950px;
	margin: 0 auto;
	background: url(../images/mains/menuLogged.jpg) no-repeat top center;	
}
.navLoggedin a{
	height: 60px;
	display: block;
	float: left;
	background-repeat: no-repeat;
	background: url(../images/mains/menuLogged.jpg) no-repeat top center;	
	z-index:100;
	margin-top: 9px;
}

/* NOT LOGGED IN MENU CSS */
.navLoggedin .nav-appartment{width:104px;background-position: 0px -9px;}
.navLoggedin .nav-bank{width:101px; background-position: -104px -9px;}
.navLoggedin .nav-fight{width:102px;background-position: -205px -9px;}
.navLoggedin .nav-crimes{width:102px;background-position: -307px -9px;}
.navLoggedin .nav-news{width:102px;background-position: -409px -9px;}
.navLoggedin .nav-explore{width:96px;background-position: -511px -9px;}
.navLoggedin .nav-logout{width:339px;background-position: -607px -9px;}

.navLoggedin .nav-appartment:hover{background-position: 0px -84px;}
.navLoggedin .nav-bank:hover{background-position: -104px -84px;}
.navLoggedin .nav-fight:hover{background-position: -205px -84px;}
.navLoggedin .nav-crimes:hover{background-position: -307px -84px;}
.navLoggedin .nav-news:hover{background-position: -409px -84px;}
.navLoggedin .nav-explore:hover{background-position: -511px -84px;}
.navLoggedin .nav-logout:hover{background-position: -607px -84px;}
/* END NOT LOGGED IN MENU CSS */

#mainContentBoxInner{
	position:relative;
	width: 952px;
	overflow:hidden;
	padding:2px;
	margin: 0 auto;
	background: url(../images/mains/mainContentRepeat.jpg) center repeat-y;	
}

.mainContent{
	width:960px;
	overflow:hidden;
	background: url(../images/mains/mainContentGraphic.jpg) 15px top no-repeat;		
}
.mainContent hr { display:block; border-bottom: 1px solid #E2E2E2; margin: 20px 0; padding:0; }

.contentLeft{
	width: 565px;
	float:left;	
	position:relative;
	padding-left: 28px;
	padding-top:8px;
}

.slideContainer{
	height:310px;
	width:600px;
	overflow: hidden;
	position: relative;
	margin-left: -30px;	
}
.slide{
	height: 310px;
	width: 600px;
	position: absolute;
	top: 0;
	left: 9px;
}
.contentLeft h5 {
	font-family: Lucida Sans Unicode;
	font-size: 36px;
	margin-bottom: 13px;
	color: #BD5553;
	padding-left: 32px;
	font-weight: normal;
	margin-left: -10px;
	margin-top: 20px;
}
.openingText{
	padding-left: 32px;
	width:400px;
	font-family:Lucida Sans Unicode;
	color:#6f6f6f;
	margin-left: -10px;
}

/* NEWS BLOCKS */
.newsUpdates{
	padding-bottom:40px;
	font-family:Lucida Sans Unicode;	
}
.newsArticle{
	padding-top: 38px;
	margin-left: -24px;
	width: 578px;
	padding-left: 25px;
	padding-bottom: 15px;	
	background: url(../images/mains/newsGraphic.png) top center no-repeat;
}.first-child{
	padding-top: 145px;
	background: url(../images/mains/newsGraphicFirst.png) top center repeat-x;
}
.newsArticle h3 a{
	font-size: 22px;
	color: #373737;
	font-weight: bold;
	margin-bottom: 3px;	
	text-decoration:none;
}
.newsArticle h3 a:hover{
	color: #000;	
}
.whoByLine{
	font-size: 12px;
	margin: 3px 0 0 0;
	color: #5a5a5a;
}
.articleLeft{
	-moz-box-shadow: 0 0 20px -4px #565656;
	-webkit-box-shadow: 0 0 20px -4px #565656;
	box-shadow: 0 0 20px -4px #565656;
	float: left;
	background: center center no-repeat;
	margin: 15px 0 0 0;	
}
.articleLeft a{
	display:block;
	border: 1px solid #571817;	
}
.articleLeft a:hover{border: 1px solid #882422;}
.articleLeft img {
	width: 139px;
	height: 127px;
	display: block;
}

.articleRight{
	width: 410px;
	float: left;
	padding: 7px 0 0 14px;
	position: relative;	
}
.articleShort{
	line-height: 23px;
	width: 410px;	
}
.articleShort p{margin: 5px 0;}
.more{text-decoration:none; color:#882422 !important;}
.more:hover{color:#581716 !important;}

/* END NEWS BLOCKS */

.contentRight{
	width: 295px;
	float: right;
	margin-right: 40px;
	margin-top: 10px;	
}
.sidebarTitle{
	margin-bottom: 6px;
	border-bottom: 2px solid #dcdcdc;
	padding-bottom: 6px;
}

.sidebarTitle h3{
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: normal;
	color: #3C3C3C;	
	padding:0;
	margin:0;
}

.statTitle{
	font-family:Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: normal;
	color: #3c3c3c;
}
.statTitle a{text-decoration: none;}
.statTitle a:hover{color: #767676;}
	

.sidebarLink{
	border-bottom:1px dashed #dfdfdf;
	display:block;
	line-height: 31px;
	height: 48px;
	padding-left: 50px;	
	font-size:11px;
	text-decoration:none;
	color: #5A5A5A;
	position:relative;
	font-family: Arial, Verdana, sans-serif;
}
.sidebarLinkTitle{
	font-size:11px;
	height: 16px;
	color: #3c3c3c;
	font-weight: bold;
}

/* --- LOGGED IN STATS --- */
.sidebarPersonaTitle{font-size:11px;color:#2b2b2b; height:16px; width:48%; float: left;padding-right: 5px;}
.sidebarPersonaDetail{font-size:11px; height:16px; width: 44%; float: left; padding-right: 14px;}
.sidebarPersonaDetail a{text-decoration:none;}	

.contentRight .sidebarNodule  .sideBarHealth{
	color: white !important;
	font-weight: bold !important;
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	margin: 10px 0 10px 0;
	text-transform: uppercase;
	
	background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
	background-image: -o-linear-gradient(top,#dd4b39,#d14836);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
	color: white;
	
}
.contentRight .sidebarNodule  .sideBarHealth:hover{
	background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
	background-image: -o-linear-gradient(top,#dd4b39,#c53727);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
	box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	color: white;
	
}

.contentRight .sidebarNodule .sideBarEnergy{
	color: white !important;
	font-weight: bold !important;
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	margin: 10px 0 10px 0;
	text-transform: uppercase;
	background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
	background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
	color: white;
}
.contentRight .sidebarNodule .sideBarEnergy:hover{
	background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);
	background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));
	box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.contentRight .sidebarNodule .sideBarAttitude{
	color: white !important;
	font-weight: bold !important;
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	margin: 10px 0 10px 0;
	text-transform: uppercase;
	background-image: -moz-linear-gradient(top,#9ec524,#93b920);
	background-image: -o-linear-gradient(top,#9ec524,#93b920);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#9ec524),to(#93b920));
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
	color: white;
}
.contentRight .sidebarNodule .sideBarAttitude:hover{
	background-image: -moz-linear-gradient(top,#9ec524,#8caf1e);
	background-image: -o-linear-gradient(top,#9ec524,#8caf1e);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#9ec524),to(#8caf1e));
	box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);	
	
}
/* --- END --- */

.sidebarLinkTitle:hover{color: #0e0e0e;}

.sidebarLink:last-child{
	border:none;
	margin-bottom: 20px;	
}
.sidebarLink:hover{
	background: #F8F8F8;	
}
.sidebarAvatar{
	position:absolute;
	left: 7px;
	top: 7px;	
	width:35px;
	height:32px;
	border: 1px solid #c0c0c0;
}

.sidebarIcon{
	position:absolute;
	left: 8px;
	top: 7px;	
	width:35px;
	height:32px;
	border:none;
}

.fade{
	opacity:.8;
	-webkit-transition: opacity .2s linear;
	text-decoration:none;
}	

.fade:hover{opacity:1;}

#copywright{
	font-size: 10px;
	text-transform: uppercase;
	color: #8F8F8F;	
	font-family: verdana, sans-serif;
	text-align: center;
	margin: 10px 0 2px 0;
	line-height: 15px;
}

#copywright a{color: #8F8F8F;text-decoration:none;}
#copywright a:hover{color: #FFF !important;text-decoration:none;}

/* __register */
/*------------------*/
.registerSplatter{
    background: url(../images/mains/registerSplatter.png) no-repeat center top;
    width: 580px;
    height: 313px;
    margin: -130px 0 0 -15px;
}
.registerContainer{
    width: 449px;
    padding: 16px 18px 10px;
    background: #EEE;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin: 93px 0 0 45px;
    float: left;
    border: 1px solid #D7D7D7;
    border-bottom: 1px solid #CECECE;
    -moz-box-shadow: inset 0 1px 0 0 #fff;
    -webkit-box-shadow: inset 0 1px 0 0 #fff;
    box-shadow: inset 0 1px 0 0 #fff;
}

.registerContainer ul li{
    width: 217px;
    margin: 0 15px 13px 0;
    float: left;
}

.form-right{margin-right:0 !important;}

.registerContainer ul li input{
    border:none;
    background: url(../images/mains/registerInput.jpg) no-repeat center top;
    font-size: 13px;
    color: #777;
    margin: 0;
    height: 18px;
    width: 204px;
    font-family: "Lucida Grande", Verdana, Arial, sans-serif;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 6px 4px 6px;
}
.registerContainer ul li input:focus{
    background-position: bottom;
}

.registerContainer .label{margin: 0 0 8px; float: left; color: #6e6e6e; text-shadow: 0 1px 0 white;}

.registerButtonContainer{text-align: right; padding: 16px 45px 0 0;}
.registerButtonWrap{
    background: #EEE;
    padding: 12px 7px 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* __about */
/*-------------*/

.aboutTabs{
    padding: 0 0 0 10px;
    font-family: Lucida Sans Unicode;
}

.aboutTabs ul{
    text-align: center;
    position: relative;
    width: 537px;
    height: 29px;
    border-bottom: 1px solid #E9E9E9;
    background: #F8F8F8;
    color: #686868;
}

.aboutTabs ul li{
   width: 33%;
   float: left;
   line-height: 29px; 
}

.aboutTabsTextWrap{
    color: #5b5b5b;
    font-size: 11px;
    padding: 13px 15px;
    display: block;
    width: 511px;
}
.aboutTabsTextWrap p{
    margin-bottom: 20px;
    line-height: 20px;
}
.aboutTabsTextWrap p strong{font-size: 13px;}
.aboutTabsTextWrap p span{
    color: red;
    margin: 20px 0 0 -15px;
    display: block;
    background: #F8F8F8;
    padding: 3px 3px 3px 6px;
    border-top: 1px solid #E9E9E9;
    font-size: 11px;
    width: 528px;
}

.aboutNub{
    background: url(../images/mains/aboutArrow.jpg) no-repeat center top;
	height: 7px;
    left: 15%;
    position: absolute;
    bottom: -7px;
    width: 11px;   
}

.crimePtag{
	float: left;
	width: 40%;
	padding-left: 50px;
}

/* VISUALS */
.inputname{
    font-size: 14px;
    margin-bottom: 5px;
}
#inputname{
    font-size: 12px;
    margin-bottom: 5px;
}

/* __tables */
.tableWrap{padding: 0 0 0 10px; font-family: Lucida Sans Unicode;}

.tableMain{width: 537px; color: #686868;}

.tableMain thead{
	text-align: center;
	position: relative;
	width: 537px;
	height: 29px;
	background: #F1F1F1;
    border-bottom: 1px solid #E4E4E4;
	line-height: 30px;	
}
.tableMain thead th{font-weight:normal;}
.tableMain tbody tr{
	text-align: center;
	position: relative;
	width: 537px;
	height: 25px;
	line-height: 25px;
	border-bottom: 1px solid #F2F2F2;	
}
.tableMain tbody tr td .tod-red{width:100px;}
.contentLeft .personal tbody tr{border:none;}
.contentLeft .personal tbody tr:hover{background:none;}
.tableMain tbody tr:hover{background: #FCFCFC; color: #A01313;}
.tableMain tbody tr:last-child{border:none;}
.tableMain tbody tr td a img{margin-top: 5px;}
.tablePages{
	text-align: center;
	position: relative;
	width: 537px;
	height: 25px;
	color: #686868;
	line-height: 25px;
	background: #F1F1F1;
    border-top: 1px solid #E4E4E4;
}

/* __forms */
input::-webkit-input-placeholder {
    color:    #000;
}
input:-moz-placeholder {
    color:    #000;
}

.dropdown{
    width: 200px;
    padding: 3px;
    font-size: 12px;
    margin-bottom: 5px;
}

.grey-form{
    background: #F8F8F8;
    color: #666;
    padding: 12px 19px 13px 19px;
    font-family: verdana, sans-serif;
    font-size: 11px;
    margin: 5px;
    width: 93%;
    margin-left: -1px;
    float: left;
}

/* END FORMS */

/* --- CONTAINERS --- */
.roundInfoBox, .roundInfoBoxHalf{
	background: #F5F5F5;
	border: 1px solid #f1f1f1;
	color: #666;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	float: left;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}
.roundInfoBox{width: 93%;text-align:left;margin-left:-1px;}
.roundInfoBox:hover, .roundInfoBoxHalf:hover{

} 
.roundInfoBoxHalf{width:40%;text-align:right;}
.roundInfoBox p, .roundInfoBoxHalf p{	
	font-style: normal;
	color: #666;
	font-weight: bold;
}
.roundInfoBox:hover, .roundInfoBoxHalf:hover{	
	color: #000;
}

.alertBox {
	background: #f5b2b2;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	color: #ad3434;
	float: left;
	width: 93%;
	margin-left:-1px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
}
.alertBoxHalf{width:40%;text-align:right;}
.alertBox p, .alertBoxHalf p{	
	font-style: normal;
	color: #641f1f;
	font-weight: bold;
}
.alertBox a{color: #7d2424 !important;}

.warningBox {
	background: #FDF6D7;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	color: #A4821C;
	float: left;
	width: 93%;
	margin-left: -1px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
}
.warningBoxHalf{width:40%;text-align:right;}
.warningBox p, .warningBoxHalf p{	
	font-style: normal;
	color:#594a1c;
	font-weight: bold;
}
.warningBox a{color: #736027 !important;}

.actionBox {
	background: #EEEEEE;
	color: #666;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	width: 93%;
	margin-left: -1px;
	float:left;
		border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
}
.actionBoxHalf{width:40%;text-align:right;}
.actionBox p, .actionBoxHalf p{	
	font-style: normal;
	color: #000;
	font-weight: bold;
}
.actionBox a{color: #000 !important;}

.okBox {
	background: #c9f9c9;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	float: left;
	color: #00af00;
	width: 93%;
	margin-left: -1px;
		border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
}
.okBoxHalf{width:40%;text-align:right;}
.okBox p, .okBoxHalf p{	
	font-style: normal;
	color: #1b621b;
	font-weight: bold;
}
.okBox a{color: #1c831c !important;}

.adminBox {
	background: #6090c6;
	padding: 12px 19px 13px 19px;
	font-family: verdana, sans-serif;
	font-size: 11px;
	margin: 5px;
	color: #fff;
	width: 93%;
	float: left;
	margin-left: -1px;
			border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
}
.adminBoxHalf{width:40%;text-align:right;}
.adminBox p, .adminBoxHalf p{	
	font-style: normal;
	color: #fff;
	font-weight: bold;
}
.adminBox a{color: #fff !important;}

.left{text-align:left;}
.center{text-align:center;}
.right{text-align:right;}
.last{margin-bottom:20px;}
.strong{font-weight:bold;}


/* ------------------ APPARTMENT ----------------  */

/* --- MOTO --- */
.motoContainer{margin-top: 10px;position: relative;}
#moto{
	display: block;
	overflow: hidden;
	vertical-align: middle;
	color: black;
	border: 1px solid #E2E2E2;
	background: white;
	padding: 8px;
	font-size: 11px;
	max-height:13px;
}
.nub{
	background: url(../images/mains/motoArrow.jpg) no-repeat center top;
	height: 7px;
	left: 10px;
	position: absolute;
	top: -5px;
	width: 11px;	
}


.moto {padding-left:5px;cursor:text;width:400px;}
.inplace_field {
	height:14px;
	margin-top:-1px;
	margin-left:-1px;
	font-size:11px;
	background-color:#fff;
	border:none !important;
	-webkit-box-shadow:none !important;
	width:400px;
	padding: 1px 0 0 0;
}

/* --- APPARTMENT TABLE --- */
.divTable{}
.divTable h3{padding: 6px;font-size:12px;background: #F1F1F1; margin: 0 0 6px; border-bottom: 1px solid #E4E4E4; color: #777;}
.divTable hr{height:20px;margin:0px;clear:both;border:none;}
.divTable span{padding: 6px;}
.divTable strong{width: 20%;float:left;padding: 3px 0 3px 3px;}
.divTable p{width: 24%;float: left;padding: 3px 0 3px 3px;}
.tableSpace{margin-top:10px;}

/* --- APPARTMENT TABLE --- */
.ownNotepad{}
.ownNotepad .button{width: 100px; margin: 0 0 30px 0;}
.ownNotepad textarea{}
.ownNotepad textarea:focus{border: 1px solid #f5a7a4;}

/* --- TABLES --- */

/* --- UNIVERSAL TABLE ---*/
.uniTableContainer{width:98%;background-color:#F8F8F8;border: 1px solid #C0C0C0;}
.uniHeaderRight{padding: 6px 18px 0 0; float:right;}
.uniTableHeader{
    width: 98.8%;
    height: 17px;
    background-color: #E8E8E8;
    border-top: 1px solid #F1F1F1;
    border-bottom: 1px solid silver;
    padding: 3px 2px 3px 5px;
    font-size: 14px;
}
.uniTableBoderTop{border-top:1px solid #fafafa;}
.uniTableOptionsThree{position:absolute; top: 31%; left:84%;}
.uniTableOptionsTwo{position:absolute; top: 31%; left:91%;}
.uniTableOptionsOne{position:absolute; top: 31%; left:95%;}
.mailAvatar{
    height: 32px;
    width: 35px;
    position: absolute;
    top: 7px;
    left: 8px;
}
/* ZEBRA STYLE */
.zebra1 {
	background-color: #F8F8F8;
    position: relative;
    border-bottom: 1px solid silver;
    padding: 8px 0 8px 10px;
    line-height: 15px;
}
.zebra2 {
	background-color:#f4f4f4;
	position:relative;
	border-bottom:1px solid #C0C0C0;
	padding: 8px 0 8px 10px;
    line-height: 15px;
}
.tableRow {
	position:relative;
	background-color:#E8E8E8;
	border-bottom: 1px solid #C0C0C0;
	padding:3px;
}
.tableRow :hover {
	position:relative;
	background-color:#DDE9F7;
	border-bottom: 1px solid #C0C0C0;
	padding:3px
}

/* --- FORMS --- */
.button, button{
	color: white !important;
	font-weight: bold !important;
	font-size: 12px;
	text-align: center;
	line-height: 25px;
	
	text-transform: uppercase;
	
	background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
	background-image: -o-linear-gradient(top,#dd4b39,#d14836);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-left-width: 1px;
	color: white;
	border:none;
}
.button:hover, button:hover{
	background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
	background-image: -o-linear-gradient(top,#dd4b39,#c53727);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));
	box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.2);
	color: white;
}

/* __profile */

.profileImage{
    float: left;
    padding: 14px 20px 10px 10px;
    border-right: 1px solid #EBEBEB;
}
.profileMain{
    text-align: left;
    float: left;
    padding: 14px 10px 10px 18px;

}
.profileMain h6{
    font-size: 32px;
    font-weight: normal;
    margin-bottom: -6px;
}
.profileCity{
    font-size: 18px;
    padding-bottom: 8px;
    display: block;
}
.profileMoto{display:block; font-style:italic;margin-bottom: 12px;}
.profileOptions{width: 355px; }
.profileOptions tr td{width:25%;padding-bottom: 8px;}

/* __profile END */

.noItalic{
    font-style: normal!important;
}


/* __readMessage */

.rMContainer{width: 537px;margin-left: 10px;}
.rMli{
    position: relative;
    display: block;
    border-bottom: 1px solid #E9E9E9;
    padding: 9px 9px 9px 57px;
    font-size:11px;
}
.rMessage{
    display: block;
    padding:5px 60px 1px 0;
    font-size: 11px;
    line-height: 14px;
}
.rMailAvatar{
    height: 38px;
    width: 40px;
    position: absolute;
    top: 7px;
    left: 8px;
}
.rName{
    text-align: left;
    padding-left: 9px;
    width: 30% !important;
}
.rOptions{
    width: 66% !important;
    text-align: right;
}
.rReply{
    margin: 0 0 0 10px;
    display: block;
    background: #F8F8F8;
    padding: 10px;
    width: 517px;
    font-size: 11px 
}
.rReplyWrap{
    display:block;
    text-align:right;
}

/* __facebox */

















/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: none;}
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


