
/* =Reset CSS
   html5doctor.com/html-5-reset-stylesheet/
-----------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, 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; }

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 { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }



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

/* Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages */
body { 
	font:13px/1.231 sans-serif;
	background: #4E4F4F url(../images/bg_body.png);
	*font-size:small;  /* hack retained to preserve specificity */
} 

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

body, select, input, textarea { 
  color: #504848; 
  font-family:"lucida grande",georgia, sans-serif;
  /* font-family: Georgia, serif;  */   
}

td {
  text-align: left;
	font-weight: normal;
	font-size: 12px; 
}

a, a:active, a:visited  {
	color: #316fa3;
	text-decoration: underline;
	cursor: pointer;
}
a:hover {
	color: #6ba1f1;
	text-decoration: underline;
	cursor: pointer;
}

textarea { overflow: auto; } /* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

/* 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; }

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; }

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }

/* 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;	
} 

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

img.inline-both {
  margin: 0 5px;
  vertical-align: middle;
}

  * html img.inline-both {  /* IE */
    margin-top: 3px;
    }

label {
  padding: 2px;
}


h1 { font-size: 153.9%; font-weight: bold; font-family:"Trebuchet MS",Arial,sans-serif; } /* 20px */
h2 { font-size: 138.5%; font-weight: bold; font-family:"Trebuchet MS",Arial,sans-serif; } /* 18px */
h3 { font-size: 123.1%; font-weight: bold; font-family:"Trebuchet MS",Arial,sans-serif; } /* 16px */


/* =Objects
------------------------------------------------------------------------------*/
.alignRight {
  text-align:right;
}
.alignCenter {
  text-align: center;
}
.alignTop {
  vertical-align: top;
}
.clear {
	clear:both;
}
.right {
  float: right;
}
.left {
  float: left;
}
.bold {
  font-weight: bold;
}
.nowrap {
  white-space: nowrap;
}
.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.rounded5 {
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius: 5px;
}
.rounded2 {
  -moz-border-radius:2px;
  -webkit-border-radius:2px;
  border-radius: 2px;
}



/* Page Layout
----------------------------------------------------------------------------------*/
header {
	padding: 5px 20px 25px 20px;
	color: #515252;
}
#headerLogo {
  background: url(../images/sprite_sheet_icons.png) no-repeat 0 0;
  height: 66px;
  width: 140px;
	float:left; 
	margin-top:7px;
}
#content {
	padding: 5px 20px 100px 20px;
}
footer {
  background: #4e4f4f url(../images/bg_footer.png) repeat-x top left;
  padding:40px 40px 10px 40px;
  color: #d7d6d6;
  clear: both;
}
#footerNav {
  float: left;
  color: #fff;
}
  #footerNav div {
    border-bottom: 1px solid #7e7e7e;
    padding: 7px 0 2px 0;
    width: 175px;
    text-align: left;
    white-space: nowrap;
  }
    #footerNav a {
      color: #d7d6d6;
      text-decoration: none;
      font-size: 12px;
    }
      #footerNav a:hover {
        color: #fff;
      }


/* Typography
-----------------------------------------------------------------------------*/
.fontOrange {
	color: #c5670c;
}
.fontBlue {
	color: #299EDF;
}
.fontDarkBlue {
	color: #5D8EA9;
}
.fontLightGray {
	color: #9b9b9b;
}
.fontGray {
	color: #6F6F6F;
}
.fontBlack {
  color: #000;
}
.fontGreen {
	color: #4B6F37;
}
.font10 {
	font-size: 10px;
}
.font11 {
	font-size: 11px;
}
.font12 {
	font-size: 12px;
}
.font14 {
	font-size: 14px;
}
.font15 {
	font-size: 15px;
}	
.font16 {
	font-size: 16px;
}	
.font18 {
	font-size: 18px;
}	


/* =Alert
-----------------------------------------------------------------------------*/
#alert {
	margin: 0 0 5px 0;
	color: #fff;
}

	#alert a {
		color: #0a669a;
	}

.alert-failure {
	background-color: #b04848;
	color: #fff;
	padding: 5px 5px 5px 25px;
	-moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.alert-success {
	background-color: #6DAF62;
	color: #fff;
	padding: 5px 5px 5px 25px;
	-moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.label_error {
  background-color: #B04848;
  color: #fff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

/* =Pagination
-----------------------------------------------------------------------------*/
.pagination {
	padding: 5px 0;
	text-align: right;
	color: #3f79a9;
}	
	.pagination a {
		text-decoration: none;
		padding: 2px 5px;
		cursor: pointer;
	}
	.pagination a:hover {
		text-decoration: underline;
	}
	.pagination .pageSelected {
		background-color: #c3dada;
	}
		
  
/* =AdContainers
-----------------------------------------------------------------------------*/
/*
div.contactFormLabel {
  font-weight: bold;
  padding-bottom: 1px;
}
div.contactFormElement {
  vertical-align: top;
  padding-bottom: 10px;
}
*/

#contactFormPolicy {
  color: #000;
  font-size: 10px;
  font-weight: normal;
  white-space: normal;
  padding-bottom:10px;
}
  
.adImage {
  border: 1px solid #e1e0e0;
}

.adSmallHighlight {
  /* background-color: #EDFFDF; */
  float: left;
  padding: 7px;
  margin: 0 0 15px 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.adSmallGirls {
  background: url(../images/sprite_sheet_ads.png) no-repeat 0 0;
  cursor:pointer; 
  height: 320px;
  width: 226px;
  overflow: hidden;
}
.adSmallWomens {
  background: url(../images/sprite_sheet_ads.png) no-repeat -228px 0;
  cursor:pointer; 
  height: 320px;
  width: 226px;
  overflow: hidden;
}
.adSmallBoys {
  background: url(../images/sprite_sheet_ads.png) no-repeat -456px 0;
  cursor:pointer; 
  height: 320px;
  width: 226px;
  overflow: hidden;
}
.adSmallMens {
  background: url(../images/sprite_sheet_ads.png) no-repeat -684px 0;
  cursor:pointer; 
  height: 320px;
  width: 226px;
  overflow: hidden;
}

/* monsters */
.adSmallMonster {
  cursor:default; 
  height: 320px;
  width: 226px;
  overflow: hidden;
}
.adSmallMonsterText {
  padding: 27px 30px;
  color: #173e50;
  font-weight: bold;
  font-family: "Trebuchet MS",Arial,sans-serif;
  width: 163px;
  display: none;
}
.monster1 {
  background: url(../images/sprite_sheet_monsters1.png) no-repeat 0 0;
}
.monster2 {
  background: url(../images/sprite_sheet_monsters2.png) no-repeat 0 0;
}
.monster3 {
  background: url(../images/sprite_sheet_monsters3.png) no-repeat 0 0;
}

#seeOlderPosts {
  background: url(../images/sprite_sheet_ads.png) no-repeat -1141px 0;
  float: left;
  height: 305px;
  width: 226px;
  overflow: hidden;
  color: #637c3e;
  cursor:pointer; 
  font-size: 18px;
  text-align: center;
  text-shadow: #e5e7dd 1px 1px 1px;
  vertical-align: middle;
}
#noMorePosts {
  background: url(../images/sprite_sheet_ads.png) no-repeat -912px 0;
  margin: 8px 27px 22px 7px;
  float: left;
  height: 305px;
  width: 226px;
  overflow: hidden;
  color: #7a7a6c;
  padding-top:120px;
  font-size: 18px;
  text-align: center;
  text-shadow: #e5e7dd 1px 1px 1px;
  vertical-align: middle;
}

.adSmallImage {
  vertical-align:top; 
  position:absolute;
  height:145px; 
  width:195px;
  top: 15px;
  left:15px;
}
.adSmallPrice {
  position:absolute;
  top: 4px;
  left: -5px;
}
.adSmallPriceText {
  color: #fff;
  font-weight:bold; 
  font-size: 12px;
  letter-spacing: 1px;
  left: 1px;
}
.adSmallBrand {
  position:absolute; 
  top:165px; 
  left:15px; 
  width:195px;
}
.adSmallDesc {
  position:absolute; 
  top:187px; 
  left:15px; 
  width:195px;
}
.adSmallCondition {
  position:absolute; 
  top:250px; 
  left:15px; 
  width:195px;
}
.adSmallConditionNew {
  background-color: #abdb91;
  padding: 1px 20px;
  margin-left: 5px;
  font-weight: 600;
}
.adSmallFilters {
  padding: 4px 15px;
  position:absolute; 
  top:268px; 
  width:225px;
}
.adSmallFilter {
  float:left; 
  width:62px;
}
.addSmallFooter {
  color: #747474;
  font-size: 10px;
  padding: 5px 5px 0 5px;
  float: left;
  clear: both;
  position:absolute; 
  top:302px; 
  width:220px;
}
  .addSmallFooter div  {
    font-size: 10px;
    text-decoration: none;
  }


.stars1 {
  background: transparent url(../images/sprite_sheet_icons.png) no-repeat -45px -66px;
  height: 13px;
  width: 65px;
  margin-left: 5px;
}
.stars2 {
  background: transparent url(../images/sprite_sheet_icons.png) no-repeat -45px -82px;
  height: 13px;
  width: 65px;
  margin-left: 5px;
}
.stars3 {
  background: transparent url(../images/sprite_sheet_icons.png) no-repeat -45px -98px;
  height: 13px;
  width: 65px;
  margin-left: 5px;
}
.stars4 {
  background: transparent url(../images/sprite_sheet_icons.png) no-repeat -45px -114px;
  height: 13px;
  width: 65px;
  margin-left: 5px;
}

.smallFormLabel {
  padding: 2px 2px;
}
.smallFormElement {
  padding: 2px 2px;
}

.formTitle {
  padding:0 0 5px 10px;
  color: #8F8F7D;
  font-size: 14px;
  font-weight: bold;
  text-shadow: #fff 1px 1px 0;
}
  
.adFormBlue {
  background-color: #A2CDE1;
  border-top: 1px solid #738F99;
  border-right: 1px solid #84AABD;
  border-left: 1px solid #84AABD;
  border-bottom: 1px solid #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-right:50px;
  padding: 20px;
  float: left;
}
 
.adFormGreen {
  background-color: #BDD49F;
  border-top: 1px solid #7E8C6B;
  border-right: 1px solid #97AF74;
  border-left: 1px solid #97AF74;
  border-bottom: 1px solid #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-right:50px;
  padding: 20px;
  float: left;
}

.formElement {
  padding-bottom: 10px;
}
  .formElement label {
    font-size: 11px;
    font-weight: bold;
    margin-bottom:3px;
  }
    

.label {
  padding: 4px 10px 4px 4px;
  text-align: right;
  vertical-align: top;
}
.formElement {
  padding: 4px;
  vertical-align: top;
}

.adBigContainer {
  background-color: #fff;
  padding: 15px;
  width: 900px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
.adBig {
  background-color: #fff;
  width: 880px;
}

/* this level of specificity is needed because the padding attribute
   gets overwritten when the table is in the facebox popup  */
#adAttributes .adBigAttributes {
  font-size: 12px;
  vertical-align: top;
  text-align: center;
  white-space: nowrap;
  padding-right: 20px;
}


.adMessageYellow {
  background: #edd66a;
  border-top: 1px solid #adacac;
  border-left: 1px solid #adacac;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff; 
  float: left;
  padding: 10px;
  margin-bottom: 20px; 
  font-weight:bold;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.adMessageContainer {
  padding: 10px;
  margin-bottom: 20px; 
  font-weight:bold;
  width: 500px;
}
.adMessageBody {
  padding-left: 20px;
  float: left;
  width: 400px;
}


.bigEnvelope {
  background: #fff url(../images/sprite_sheet_icons.png) no-repeat 0 -255px;
  height: 56px;
  width: 74px;
  float: left;
}
.documentGreen {
  background: #fff url(../images/sprite_sheet_icons.png) no-repeat -46px -138px;
  height: 56px;
  width: 43px;
  float: left;
}
.documentRed {
  background: #fff url(../images/sprite_sheet_icons.png) no-repeat -90px -138px;
  height: 56px;
  width: 43px;
  float: left;
}

.adMessageDeleted {
  background: #fff url(../images/doc_delete_big.gif) no-repeat 8px 8px;
  float: left;
  padding: 10px 10px 10px 65px;
  margin-bottom: 20px; 
  font-weight:bold;
  width: 390px;
}
.adMessageConfirmed {
  background: #fff url(../images/doc_confirm_big.gif) no-repeat 8px 8px;
  float: left;
  padding: 10px 10px 10px 65px;
  margin-bottom: 20px; 
  font-weight:bold;
  width: 390px;
}
.adMessageWhite {
  background-color:#fff; 
  border-top: 1px solid #adacac;
  border-left: 1px solid #adacac;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff; 
  float: left;
  padding: 10px;
  margin-bottom: 20px; 
  font-weight:bold;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.contactForm {
  background-color:#abcc7d; 
  margin:3px 0 5px 0; 
  padding:10px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.contactFormMessage {
  background-color:#abcc7d;
  font-size:14px;
  font-weight: bold;
  color: #fff;
  padding:3px; 
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

/* =Data Filter
-----------------------------------------------------------------------------*/
.dataFilter {
  background: url(../images/sprite_sheet_ads.png) no-repeat -1141px 0;
  float: left;
  margin: 8px 7px 22px 7px;
  height: 305px;
  width: 226px;
  /* overflow: hidden; */
}
  .dataFilter .dataFilterElements {
    padding: 15px 10px;
  }
  .dataFilter .formElementPair {
    padding: 3px 0;
  }
  .dataFilter label {
    clear: left;
    color: #314A11;
    display: block;
    float: left;
    font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
    font-weight: bold;
    font-size: 11px;
    padding-right: 10px;
    text-align: right;
    width: 50px;
  }
  .dataFilter .formElement {
    display: block;
    float: left;
    padding: 0;
    width: 125px;
  }
  .dataFilter select.filterElement {
  	border:1px solid #AAAAAA;
  	color: #504848;
  	vertical-align:middle;
  	font-size: 16px;
  	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
  	/* font-weight: bold; */
  	width: 125px;
  }
  .dataFilter input.filterElement {
  	border:1px solid #AAAAAA;
  	color: #504848;
  	padding:2px;
  	vertical-align:middle;
  	font-size: 16px;
  	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
  	/* font-weight: bold; */
  	width: 119px;
  }
    #filterNumResults {
      color:#314A11;
      padding-top: 2px;
      display: none;
      font-size: 10px;
      text-align: center;
    }
      #filterNumResultsVal {
        font-weight: bold;
        padding-left: 5px;
      }
		
.greenButton {
  background-color: #8AAD59;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  white-space:nowrap;
  width: 150px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.tagYellow {
  background: url(../images/tag_yellow_right.png) no-repeat top right;
  display: block;
  height: 23px;
  padding-right:10px;
  position:absolute;
  top: 4px;
  left: -5px;
}
  .tagYellow b {
    background: url(../images/tag_yellow_left.png) no-repeat top left;
    color: #fff;
    font-weight:bold; 
    font-size: 12px;
    letter-spacing: 1px;
    float: left;
    display: block;
    height: 23px;
    padding: 2px 0 0 7px;
  }
  
.tagGreen {
  background: url(../images/tag_green_right.png) no-repeat top right;
  display: block;
  height: 23px;
  padding-right:10px;
  position:absolute;
  top: 4px;
  left: -5px;
}
  .tagGreen b {
    background: url(../images/tag_green_left.png) no-repeat top left;
    color: #fff;
    font-weight:bold; 
    font-size: 12px;
    letter-spacing: 1px;
    float: left;
    display: block;
    height: 23px;
    padding: 2px 0 0 7px;
  }

  
/* =Facebook
-----------------------------------------------------------------------------*/
#fbLikeBox {
  float: right;
  background-color: #fff;
}


/* =Form related
-----------------------------------------------------------------------------*/       
.standardFormLabel {
 padding: 5px 10px;
 text-align: right;
 font-weight: 600;
 font-size: 14px;
}
.standardFormElement {
 padding: 5px 10px;
}
       
       
/* =Input elements
-----------------------------------------------------------------------------*/
input.big {
	border:1px solid #84AABD;
	color: #000;
	padding:2px;
	vertical-align:middle;
	font-size: 18px;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	width: 350px;
}
textarea.big {
	border:1px solid #84AABD;
	color: #000;
	padding:2px;
	vertical-align:middle;
	font-size: 18px;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	width: 350px;
}
select.big {
	border:1px solid #84AABD;
	color: #000;
	vertical-align:middle;
	font-size: 18px;
}
        
input.textElement, textarea.textAreaElement {
	background:#FFFFFF url(../images/inputtopfade.gif) repeat-x scroll center top;
	border:1px solid #AAAAAA;
	color: #504848;
	padding:4px;
	vertical-align:middle;
	font-size: 16px;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
	width: 270px;
}

select.selectInput {
	background:#FFFFFF url(../images/inputtopfade.gif) repeat-x scroll center top;
	border:1px solid #AAAAAA;
	color: #504848;
	vertical-align:middle;
	font-size: 16px;
}
 
select {
    font-size: 16px;
	font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
}

.emailInput {
  background: transparent url(../images/icon_lock.png) no-repeat left 5px;
  padding: 5px 0 0 30px;
}


/* =Misc
-----------------------------------------------------------------------------*/
#intro {
  background-color: #efece5;
  padding: 15px;
  margin: 0 2px 30px 0;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  border-radius: 5px;
}

.mapmarker {
  background:transparent url(../images/sprite_sheet_icons.png) no-repeat 0 -313px;
  height: 26px;
  line-height: 26px;
  padding-left: 25px;
}

.spacer {
 padding-right:15px;
} 

#locResultsTable td {
  padding-right:20px; 
  vertical-align:top;
}
  #locResultsTable td div {
    padding-top:2px;
  }
    #locResultsTable td div a {
      text-decoration: none;
    }
      #locResultsTable td div a: {
        text-decoration: underline;
      }

.adViews {
  padding: 5px 0 0 10px;
}

.bannedWord {
  background-color: red;
  color: #fff;
}

/* =Buttons
-----------------------------------------------------------------------------*/
#buttonAddNew {
  font-family:"Trebuchet MS",Arial,sans-serif;
  background:transparent url(../images/sprite_sheet_buttons.png) no-repeat 0 -343px;
  display:block;
  float: right;
  height:54px;
  width:231px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  line-height:52px;
  color:#fff; 
  font-size: 18px;
  font-weight: 500;
  text-shadow: #3684AF 0 -1px 0;
}
  #buttonAddNew:hover {
    background-position: 0 -398px;
  }
  
.greenDelete {
  background:transparent url(../images/sprite_sheet_icons.png) no-repeat 0 -130px;
  width: 18px;
  height: 18px;
  float: left;
  margin: 5px 0 0 10px;
}
.greenDelete:hover {
/* todo: need hover icon in sprite_sheet_icons */
  background-position: 0 -130px;
}

.adNoImageSmall {
  border: 1px solid #e1e0e0;
  background:transparent url(../images/sprite_sheet_ads.png) no-repeat -1723px 0;
  height:145px;
  width:195px;
}
.adNoImageBig {
  border: 1px solid #e1e0e0;
  background:transparent url(../images/sprite_sheet_ads.png) no-repeat -1370px 0;
  height:232px;
  width:346px;
}
  
#buttonSearchContainer {
  text-align: center;
  padding-top: 12px;
}
#buttonSearch {
  background: transparent url(../images/sprite_sheet_buttons.png) no-repeat 0 0;
  font-family:"Trebuchet MS",Arial,sans-serif;
  display:block;
  margin: 0 auto;
  height:44px;
  width:152px;
  text-decoration: none;
  line-height:42px;
  color:#2a400c; 
  font-size: 18px;
  font-weight: 500;
}
  #buttonSearch span {
    padding-left: 25px;
  }
  #buttonSearch:hover {
    background-position: 0 -44px;
  }
  
#buttonSubmit {
  background: transparent url(../images/sprite_sheet_buttons.png) no-repeat 0 -208px;
  font-family:"Trebuchet MS",Arial,sans-serif;
  display:block;
  margin: 0 auto;
  height:45px;
  width:171px;
  text-decoration: none;
  line-height:44px;
  color:#195368; 
  font-size: 18px;
  font-weight: 500;
  text-shadow: #fff 1px 1px 1px;
}
  #buttonSubmit:hover {
    background-position: 0 -255px;
  }

#buttonEdit {
  background: transparent url(../images/sprite_sheet_buttons.png) no-repeat 0 -88px;
  display:block;
  float: right;
  padding-left: 56px;
  margin: 0 20px 15px 0;
  height: 59px;
  width: 45px;
  text-decoration: none;
  line-height:58px;
  color:#fff; 
  font-size: 16px;
  text-shadow: #64944c 1px 1px 1px;
  font-weight: bold;
}
  #buttonEdit:hover {
    background-position: 0 -148px;
  }
  
#buttonDelete {
  background: transparent url(../images/sprite_sheet_buttons.png) no-repeat -102px -89px;
  display:block;
  float: right;
  padding-left: 53px;
  height: 59px;
  width: 67px;
  text-decoration: none;
  line-height:58px;
  color:#fff; 
  font-size: 16px;
  text-shadow: #a95454 1px 1px 1px;
  font-weight: bold;
}
  #buttonDelete:hover {
    background-position: -102px -149px;
  }

#locGoBackButton {
  background: #6984a3 url(../images/sprite_sheet_buttons.png) no-repeat 0 -301px;
  color: #BFDEFF;
  float: left;
  padding-left: 6px;
  font-size: 11px;
  text-decoration: none;
  text-align: center;
  line-height: 19px;
  width: 57px;
  height: 20px;
  margin-bottom: 5px;
}
  #locGoBackButton:hover {
    background-position: 0 -322px;
    color: #fff;
  }

#locCloseButton {
  cursor: pointer;
}

#letsBeFriends {
  background: url(../images/letsBeFriends.png) no-repeat top left;
  width: 274px;
  height: 259px;
  padding-right: 10px;
  float: right;
}

/* =Popups
-----------------------------------------------------------------------------*/
.popupBlue {
  z-index: 9999;
  min-height: 200px;
}
  .popupBlueArrowLeft {
    background: url(../images/arrow_blue_left.gif) no-repeat 0 22px;
    width: 13px;
    padding: 0;
  }
  .popupBlueArrowRight {
    background: url(../images/popup_arrow_blue_right.png) no-repeat 0 30px;
    width: 25px;
    padding: 0;
  }
  .popupBlueContent {
    background-color: #6984a3;
  	color: #fff;
  	font-size: 12px;
  	padding: 10px;
  	z-index: 9999;
  	-moz-border-radius:3px;
  	-webkit-border-radius:3px;
    border-radius: 3px;
    min-height: 200px;
  }
  .popupBlue a {
    color: #fff;
  } 
  
.popupDarkGray {
  z-index: 9999;
  min-height: 200px;
}
  .popupDarkGrayArrowUp {
    background: url(../images/arrow_popup_gray_up.gif) no-repeat center bottom;
    height: 12px;
  }
  .popupDarkGrayArrowLeft {
    background: url(../images/arrow_popup_gray_left.gif) no-repeat right center;
    width: 12px;
  }
  .popupDarkGrayContent {
    background-color: #4E4F4F;
  	color: #fff;
  	padding: 10px;
  	z-index: 9999;
  }
  .popupDarkGray a {
    color: #fff;
  } 
