
/* Global utility stylesheet */
/* This is stuff that is common across all oc pages and should work fine in all modern browsers */
/* $Id: global.css.tplt 33417 2007-12-02 03:08:57Z darren $ */



/* Global utility classes and IDs */
#main {
}
#tribe {
  border: none;
}
#footer {
  padding: 1em 1.5em;
  text-align: center;
}
#footer p {
  margin: 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear, .spacer {
  clear:both;
}

/* This is a new method of clearing floats without adding extra markup --VB */
/* See http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}


img.wait {
	width: 16px;
	height: 16px;
}

/* ********************************       IE HACKS       *********************************** */

.clearfix { display: inline-table; } /* reset for IE Mac */

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; } /* this is for IE PC */
.clearfix {display: block;} /* this is the real value used by all other browsers except IE mac */
/* End hide from IE-mac */

/* use this to fix three pixel job in IE or any other IE weirdness */
* html .jogfix, * html .haslayout {
  height: 1%;
}

/* If a div's style attributes (bg, border) don't appear until you scroll */
/* off the page and back again, try appying this style */
* html .ieBGFix {
	background: url(null) fixed no-repeat;
}

/* ********************************       / IE HACKS       *********************************** */



/* *******************************      UTILITY CLASSES    *********************************** */

.text_center, .centered {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

div.centered table, table.centered {
  margin-left:auto; 
  margin-right:auto;
  text-align: left;
}
.hidden {
  visibility: hidden;
}
.nowrap {
  white-space: nowrap;
}
.inline {
  display: inline;
}
span.questionIcon {
	text-decoration: none;
}
.large {
  font-size: 1.11em;
  line-height: 1.4em;
}
.small {
  font-size: 0.92em;
}
.tiny {
  font-size: 0.85em;
}
.lined {
  border: 1px solid #666;
}
.noborder {
  border: 0;
}
.selected {
	font-weight: bold;
	color: #333;	
}
.tip {
	text-align: left;
}
.margin-top {
  margin-top: 1em;
}
.margin-top-double {
  margin-top: 2em;
}
div.secondary, span.secondary, td.secondary {
	color: #333;
	font-size: 0.92em;
}
div.secondary a, span.secondary a, td.secondary a {
	color: #333;
}
.catcount {
	font-size: 0.92em;
	color: #666;
}

/* use this to remove bullets from lists */
/* need to set both margin and padding to get consistent results across IE, and gecko-based browsers */
ul.clean {
  margin: 0px;
  padding: 0px;
  margin-top: .4em;
  margin-bottom: 2em;
  list-style: none;
}

/* double-spaced lists */
ul.double li, ol.double li {
  margin: 1em 0;
}

.stars {
	width: 60px;
	display: inline;
	white-space: nowrap;
}

/* *******************************      / UTILITY CLASSES    *********************************** */



/* ***************************     GLOBAL BACKGROUND COLORS    ********************************* */
body, body.body {
	background-color: #C0B9B6;
}

#tribeWrapper {
  background: #FFFFFF;
  z-index: 100;
}

/* *********************************************************************** */
/* WOO HOO! ROUNDED CORNERS!                                               */
/*                                                                         */
/* Note: the order here is important. Start with #tribeWrapper             */
/*       then the generic .contentContainer, then any specialized          */
/*       containers like .sidebar or .darkBg                               */
/*       YOU NEED extra1 THROUGH extra4 DIVS IN SOMETHING TO GET CORNERS!  */

.extra1, .extra2, .extra3, .extra4 {
	position: absolute;
	background-repeat: no-repeat;
	height: 11px;
	width: 11px;
}

#tribeWrapper .extra1 {
	background-image: url('/tribe/images/redesign/corners/main_top_left.gif');
	top: 0;
	left: 0;
}
#tribeWrapper .extra2 {
	background-image: url('/tribe/images/redesign/corners/main_top_right.gif');
	top: 0;
	right: 0;
}
#tribeWrapper .extra3 {
	background-image: url('/tribe/images/redesign/corners/main_bottom_left.gif');
	bottom: 0;
	left: 0;
}
#tribeWrapper .extra4 {
	background-image: url('/tribe/images/redesign/corners/main_bottom_right.gif');
	bottom: 0;
	right: 0;
}


/* Note the -2px positioning here. This is because we've got a 1px border on these divs */
/* and we need to extend an extra pixel outside to cover an occasional escaping border  */

#tribeWrapper .contentContainer {
	background: #FFFFFF;
	border: 1px solid #D2CFCC;
}
#tribeWrapper .contentContainer .extra1 {
	background-image: url('/tribe/images/redesign/corners/content_top_left.png');
	top: -2px;
	left: -2px;
}
#tribeWrapper .contentContainer .extra2 {
	background-image: url('/tribe/images/redesign/corners/content_top_right.png');
	top: -2px;
	right: -2px;
}
#tribeWrapper .contentContainer .extra3 {
	background-image: url('/tribe/images/redesign/corners/content_bottom_left.png');
	bottom: -2px;
	left: -2px;
}
#tribeWrapper .contentContainer .extra4 {
	background-image: url('/tribe/images/redesign/corners/content_bottom_right.png');
	bottom: -2px;
	right: -2px;
}

#tribeWrapper .solidBg {
	background-color: #D2CFCC;
	border: none;
}
#tribeWrapper .solidBg .extra1 {
	background-image: url('/tribe/images/redesign/corners/sidebar_top_left.png');
	top: 0;
	left: 0;
}
#tribeWrapper .solidBg .extra2 {
	background-image: url('/tribe/images/redesign/corners/sidebar_top_right.png');
	top: 0;
	right: 0;
}
#tribeWrapper .solidBg .extra3 {
	background-image: url('/tribe/images/redesign/corners/sidebar_bottom_left.png');
	bottom: 0;
	left: 0;
}
#tribeWrapper .solidBg .extra4 {
	background-image: url('/tribe/images/redesign/corners/sidebar_bottom_right.png');
	bottom: 0;
	right: 0;
}

#tribeWrapper .sidebar {
	background-color: #D2CFCC;
	border: none;
}
#tribeWrapper .sidebar .extra1 {
	background-image: url('/tribe/images/redesign/corners/sidebar_top_left.png');
	top: -1px;
	left: -1px;
}
#tribeWrapper .sidebar .extra2 {
	background-image: none;
}
#tribeWrapper .sidebar .extra3 {
	background-image: url('/tribe/images/redesign/corners/sidebar_bottom_left.png');
	bottom: -1px;
	left: -1px;
}
#tribeWrapper .sidebar .extra4 {
	background-image: none;
}


/* SINGLE COLUMN PAGES HAVE NO CONTENT BORDERS */

.one-column #tribeWrapper .contentContainer {
	border: none;
}
	.one-column .contentContainer .extra1,
	.one-column .contentContainer .extra2,
	.one-column .contentContainer .extra3,
	.one-column .contentContainer .extra4 {
		display: none;
	}



/* END ROUNDED CORNERS                                                     */
/* *********************************************************************** */


/* MASTHEAD */

.semanticLinks {
	display: none;
}

#masthead {
	position: relative;
	height: 30px;
	margin: 0;
	background: #FFFFFF;
	border-bottom: 1px solid #EEEEEE;
	z-index: 2000;
}

#masthead a {
	color: #000000;
	text-decoration: none;
}
	#masthead a:hover {
		color: #FF6600;
		text-decoration: underline;
	}
#masthead a.button {
	color: #FFFFFF;
}
#masthead #logo {
	width: 80px;
	position: absolute;
	left: 5px;
	top: 5px;
}

#globalNav {
	position: absolute;
	left: 110px;
	top: 9px;
}
	#globalNav .selected a {
		color: #FF6600;
	}
	#globalNav ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}
			#globalNav ul li {
				float: left;
				padding: 0px 15px 6px 0px;  /* bottom padding long enough to reach behind popup div */
				margin: 0;
				position: relative;
			}
			
			#globalNav ul ul {
				color: #333333;
				background: #FFFFFF;
				border: 1px solid #D2CFCC;
				position: absolute;
				top: 21px;
				left: 0px;
				width: 11em;
			}
				#globalNav ul ul hr {
					width: 10em;
					height: 1px;
					border: none;
					background: #DDDDDD;
				}
				#globalNav ul ul li {
					float: none;
					padding: 0 0 0 0;
					background: #FFFFFF;
				}
					#globalNav ul ul a {
						display: block;
						width: 10em;
						padding: 1px 0.5em;
					}
						#globalNav ul ul a:hover {
							color: #FFFFFF;
							background: #FF6600;
							text-decoration: none;
						}
						
#mastheadAddModules {
	position: absolute;
	left: 330px;
	top: 9px;
}
	#mastheadAddModules a {
		color: #003399;
		text-decoration: underline;
	}

#mastheadLoginForm {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 240px;
/*	height: 50px; */
	background: #FFF;
	border: 1px solid #666;
	padding: 3px 4px 2px 4px;
	z-index: 5000;
}
	#mastheadLoginForm input[type="text"], #mastheadLoginForm input[type="password"] {
		width: 105px;
		color: #666;
		margin-top: 1px;
		margin-bottom: 3px;
		margin-right: 2px;
		padding-left: 2px;
	}
	/* hide the submit button off the page -- really should use input[type="submit"] but IE doesn't support that */
  #mastheadLoginForm .offPage {
    position: absolute;
    top: 0;
    left: -5000px;
  }

  #mastheadLoginForm img {
    position: absolute;
    right: 3px;
    top: 3px;
  }
  
  #checkbox, #remember, #help, #button {
    padding: 2px 0 0 0;
  }

  #remember {
    margin-left: 3px;
  }

  #help {
    font-size: 0.92em;
  }
  
  #button {
    padding-top: 2px;
    padding-right: 2px;
  }


span.greetingShort, span.greetingMedium, span.greetingLong, span.greetingGodzilla {
		font-weight: bold;
		font-family: Arial, sans-serif;
}

span.greetingShort {
	font-size: 13px;
}
span.greetingMedium {
	font-size: 11px;
}
span.greetingLong {
	font-size: 9px;
}
span.greetingGodzilla {
	font-size: 7px;
}

#loggedInMasthead table {
	float: right;
	margin-right: 8px;
	margin-top: 2px;
	width: auto;
}

#loggedInMasthead table.greetingShort {
		margin-right: 16px;
}

#loggedInMasthead table td {
	text-align: right;
	line-height: 1em;
}
#loggedInMasthead img {
	margin-left: 5px;
}

	#loggedInMasthead .secondary a {
			font-family:  Arial, sans-serif;
			text-decoration: none;
			_font-size: 10px;
	}

	#loggedInMasthead .secondary a:hover {
			text-decoration: underline;
	}
	
#loginButtons {
	float: right;
	margin-top: 5px;
	color: #666;
	}
	#loginButtons .button {
			margin: 0;
	}
	

#mastheadSearch {
	float: right;
	margin-right: 30px;
	margin-top: 2px;
}
	#mastheadSearch input.searchField {
		color: #999;
		background-color: #F7FFDB;
		margin-right: 5px;
		font-size: 1.2em;
	}
	
/* END MASTHEAD */



/* ****************************     ALERTS AND WARNINGS    ************************************ */

/* Unsupported browsers message */
#unsupportedBrowsers {
  display: none;
}


/* system error and confirmation messages */
#messages div {
	margin: 10px 0px;
	padding: 10;
}
	#messages form {
		margin: 0;
		padding: 0;
	}

#messages .error img {
	float: left;
	margin-left: 20px;
	margin-top: 1.5em
}
#messages .error .errorMessage {
	margin-left: 60px;
	margin-right: 20px;
	text-align: left;
}

.system, .error, #confirmation {
  background: #FDFFD3;
  border: 1px solid #EEEEEE;
  padding: 12px;
  text-align: center;
  font-weight: bold;
}

.system img {
  margin-right: 0.25em;
}

  .error .errorContent, .error h3 {
  	font-size: 1.2em;
  	font-weight: bold;
  	color: #000;
    margin: 0;
    padding: 0;
    text-align: left;    
  }

  div.insufficientPrivieges {
    padding: 10px 15px;
    text-align: center;
  }

.attention, .notice {
	border: 2px solid #FFDA7C;
	background: #FFF3E9;
	padding: 10px;
}

/* System Message Box */
.system_message {
	position: relative; /* absolutely positioned stuff inside */
  background: #FDFFD3;
  border: 1px solid #EEEEEE;
  padding: 10px;
  margin-bottom: 16px;
}

/* Alerts of various types */

/* Use this to highlight new features above the page content */
div.alert { 
  display: block;
	border: 1px solid #ccc; 
	background: #ffff99; 
	text-align:center;
	margin: 1em;
	padding: 0.25em;
	position: relative;
}
  div.alert a { font-weight: bold }
  
p.alert, span.alert { 
  color: #FF6600;
  font-weight: bold;
}

/* new item indicator */
.alertstar { 
  color: #FF6600;
  font-weight: bold;
  font-family:  Arial, sans-serif;
  font-size: 1.45em;  
  vertical-align: bottom;
  padding-right: 2px;
}

/* generic new text */
.new {
  color: #FF6600;
}

/* Use this to highlight new features from inside page content */
div.marketing_alert {
	position: relative; /* absolutely positioned stuff inside */
  background: #FDFFD3;
  border: 1px solid #C9C9C9;
  padding: 10px;
  margin-bottom: 16px;
}
	.marketing_alert .pageIcon {
		margin: 0 15px 0 5px;
	}
	.marketing_alert h2 {
		margin-bottom: 0.2em;
	}
	.marketing_alert p {
		margin-bottom: 0.25em;
		margin-right: 10px;
		color: #333;
	}
	.marketing_alert .close {
		position: absolute;
		top: 5px;
		right: 5px;
	}

/* ****************************    / ALERTS AND WARNINGS    ************************************ */



/* **********************************        IMAGES       ************************************** */

/* Global image sizes */
.picMugshot { 
  width: 48px;
  height: 48px;
}
  /* right now only Safari gets this right */
  div.picMugshot { display: inline-block; }

/* The following styles are for flagged photos */
.deleted {
  position: relative;
  _height: 1%;
  background: #000;
  }
.deleted img {
  filter: alpha(opacity=60);
  -moz-opacity:0.6;
}
.deletedText {
  background: #000;
  position: absolute; 
  width: 100%;
  left: 0;
  top: 30%; 
  padding: 1em 0;  
  border-top: 1px solid #fff; 
  border-bottom: 1px solid #fff;  
  color: #FFF;  
  text-align: center;
  z-index: 10;
}
  .deletedText span {
    display: block;
    padding: 0 .5em;
  }
.picMugshot .deletedText {
  font-size: 0.85em;
  _font-size: 0.7em; /* ie font-size */
  top:14px;
  margin: 0;
  padding: 3px 0;
}

a:link .deletedText, a:visited .deletedText {
  color: #FFF;    
  text-decoration: none;    
}
a:hover .deletedText, a:active .deletedText {
  color: #FFF;    
  text-decoration: underline;        
}

/* **********************************       / IMAGES       ************************************** */


/* UTILITY LINKS */
/* (deprecated: title-links) are the little links that appear in title bars such as "View All >" or "Back >" */
.utility-link a:link, .utility-link a:visited, .title-link a:link, .title-link a:visited { 
	color:#333; 
}
a.utility-link:link, a.utility-link:visited, a.title-link:link, a.title-link:visited { 
	color:#333; 
}

/* underlines and overlines */
.overline {
  border-top:  1px #ccc solid;
}

.overline-dotted {
  border-top:  1px #ccc dotted;
}

.underline, div.hr {
  border-bottom: 1px #ccc solid;
}

.underline-dotted, div.hr-dotted {
  border-bottom: 1px #ccc dotted;
}

div.hr, div.hr-dotted {
  height: 1px;
}

/* *************************************************************** */
/* BIG BAD USERFORM                                                */

.userForm fieldset {
  margin: 0.5em;
	border: 1px dotted #CCC;
}
	.userForm fieldset legend {
		font-size: 1em;
		font-weight: bold;
		color: #333;
    background: #fff;
    padding: 0 5px 5px 5px;
	}	
	
	/* use this when you don't want to show the fieldset border */
	fieldset.hidden {
	 border: 0;
	 visibility: visible;
	}
		
	/* This is for browsers that support standards -- set text fields and text areas to 99% of their containers width */
	.userForm textarea, 
	.userForm input[type="text"],
	.userForm input[type="password"] {
		width: 99%;
	}
	/* IE for some reason expands the textarea when you type in it so we disable the width 99% for IE */
	* html .userForm textarea {
	 width: auto;
	}
	/* use this when you don't want to autosize fields up to 95% */
	.userForm textarea.nativeSize, .userForm input.nativeSize {
	 width: auto;
	}
	
.lvPair {
	height: 1%; /* contains floats */
	clear: both;
	margin: 1em 0em;
}

/* Global Form Element Styling */
textarea, input, select {
	font-family:  arial, verdana, sans-serif;
  font-size: 1em;
}

form .label, form label {
	text-transform: lowercase;
	font-size: 1em;
	color: #666;
	font-weight: bold;
	width: 120px;
	text-align: right;
	padding-top: 2px; /* try to line up vertically with form elements */
}
/* float the span containing the <label> because floating <label> causes it to disappear in NS7 PC. */
form span.label, form div.label {
	float: left;
}
  form .compact .label, form .compact label {
    width: 8em;
  }
  form .wide .label, form .wide label {
    width: 180px;
  }
/* use this for labels next to checkboxes */
.checkLabel { 
  width: auto;
  font-weight: normal;
  display: inline;
  color: inherit;
  text-transform: none;
  float: none;
  text-align: inherit;
  padding-top: 0;
}

form .value {
	margin-left: 130px;
	/* display: inline-block; */
}
  form .compact .value {
  	margin-left: 9em;  
  }
  form .wide .value {
  	margin-left: 190px;  
  }  

/* use this for values that aren't form elements */
form .static {
	padding-top: 2px; 
}

form .helpCaption, form .help {
	color: #FF6600;
	font-size: 0.92em;
  font-weight: normal;
}

form .helpPopup {
	font-size: 0.92em;
}
form .helpPopup a:link { color: #FF6600; }
form .helpPopup a:visited { color: #FF6600; }

.nextSteps {
	clear: both;
	padding-top: 0.5em;
}	
	.nextSteps table {
		width: 100%;
	}
	.nextSteps table.auto {
    width: auto;
	}
	.nextSteps table td {
		text-align: right;
	}
  .nextSteps table td.buttonGroup {
    text-align: center;
    margin: 0 5px;
    padding: 0 5px;
  }	
	.nextSteps table td.comment {
		text-align: left;
	}
	.nextSteps .buttons .button {
		float: right;
		margin-left: 10px;
	}
  .nextSteps .tip {
    float: left;
    width: 300px;
  }

form .prevNext {
	text-align: center;
}

form .extra {
	background: #E6E6E6;
	padding: 10px;
}
form #moreOptionsToggle {
    font-size: 1.05em;
}
.form_error {
	color: #990000;
	font-weight: bold;
}
.required {
	color: #FF6600
}

/* this is how we should eventually do it */
/*  .required:after {                     */
/*    content: "*";                       */
/*    color: #7354FF;                     */
/*  }                                     */ 


.userForm .scrollingDiv {
	width: 100%;
	height: 175px;
	overflow: auto;
	border: 1px solid #999;
}
/* silly IE has trouble with calculating width based on % so we have to set it in pixels */
* html .userForm .scrollingDiv {
  width: 400px;
}
.userForm table.scrollingItems {
  width: 95%;
}

.userForm table.scrollingItems td {
 padding: 0px 0px;
}

/* prevents horizontal scrollbar in Firefox */
.userForm .scrollingDiv ul {
	width: 90%;
}

.userForm .column {
	width: 45%;
	float: left;
}

.userForm .stacked label {
	text-align: left;
	margin-bottom: 5px;
	width: auto;
}
.userForm .stacked .value {
	margin-left: 0;
	clear: both;
	width: auto;
}

/* this fixes funny looking form elements in FF */
.userForm input[type="text"], 
.userForm input[type="password"], 
.userForm input[type="file"],
.userForm textarea, 
.userForm select {
    border-right: 1px solid #aaa;   
    border-bottom: 1px solid #ccc;    
    padding: 1px;
    background: #f6f6f6;
    color: #000000;
  }
.userForm input[type="text"], 
.userForm input[type="password"], 
.userForm textarea {  
    border-top: 2px solid #888;
    border-left: 1px solid #666;
    }


/* location selector on Manage.vm */
#locationSelector #parentRegion {
  font-size: 1.1em;
  font-weight: bold;
}
#locationSelector #changeLocation {
  font-weight: bold;
}


/* / BIG BAD USERFORM                                              */
/* *************************************************************** */

/* *************************************************************** */
/* INLINE EDIT FORMS                                               */


a.inlineEdit {
  font-size: 0.92em;
  font-style: normal;
  font-weight: normal;
  text-decoration: underline;
  white-space: nowrap;
}
  a.inlineEdit:link, a.inlineEdit:visited { color: #666; }
  a.inlineEdit:hover, a.inlineEdit:active { color: #000; }

a.inlineButton {
  font-size: 0.92em;
  font-style: normal;
  font-weight: normal;
  white-space: nowrap;
  border: 1px solid #ccc;
  background: #eee;
  padding: 1px 4px;
  text-decoration: none;
}
  a.inlineButton:link, a.inlineButton:visited { color: #666; }
  a.inlineButton:hover, a.inlineButton:active { background: #ccc; color: #000;   border: 1px solid #666; }

  h1 a.inlineEdit, h1 a.inlineButton {
    font-size: 0.5em;
  }

form.inlineEdit input[type="text"], 
form.inlineEdit input[type="password"], 
form.inlineEdit textarea, 
form.inlineEdit select {
    border-right: 1px solid #aaa;   
    border-bottom: 1px solid #ccc;    
    padding: 1px;
    background: #fee;
  }
form.inlineEdit input[type="text"], 
form.inlineEdit input[type="password"], 
form.inlineEdit textarea {  
    border-top: 2px solid #888;
    border-left: 1px solid #666;
    }
form.inlineEdit div.textareaButtons {
  margin-top: 3px;
  text-align: right;
}

/* / INLINE EDIT FORM                                              */
/* *************************************************************** */

/* *************************************************************** */
/* EDIT TABS                                                       */
/*                                                                 */
/* This section defines the divs way.                              */

#tabs .text {
	padding: 1em 0em 1.5em;
	text-align: center;
}

div.tabs {
	clear: both;
	padding-left: 10px;
	font-size: 12px; /* use px here because tabs used fixed-height graphics */
	border-bottom: 2px solid #D2CFCC;
}
div.tabs .tab {
	display: inline;
	background: url("/tribe/images/redesign/tabs/configure_off_left.gif") no-repeat left top;
	margin: 0;
	padding-left: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin-right: 2px;
}
html>body div.tabs .tab { 			/* IE 4+ doesn't see this */
	padding-top: 2px;
	padding-bottom: 2px;
}
div.tabs .tab a {
	background:url("/tribe/images/redesign/tabs/configure_off_right.gif") no-repeat right top;
	line-height: 15px;
	margin: 0;
	padding-right: 10px;
	padding-top: 2px;
	padding-bottom: 2px;
	text-decoration:none;
	font-weight:bold;
	color:#FFFFFF;
}
div.tabs .tab .count {
	font-weight: normal;
	font-size: 11px;
}
div.tabs .current {
	background-image:url("/tribe/images/redesign/tabs/configure_on_left.gif");
}
div.tabs .current a {
	background-image:url("/tribe/images/redesign/tabs/configure_on_right.gif");
	color:#000000;
}
.tabbed-content {
	padding-top: 1em;
}
	.tabbed-content .current {
		display: block;
	}
	.tabbed-content .hidden {
		display: none;
	}

/* END EDIT TAB                                                    */
/* *************************************************************** */

/* *************************************************************** */
/* CATEGORY TABS                                                   */

ul.categoryTabs {
	clear: both;
	margin: 0;
	padding: 0;
	list-style: none;
/*	height: 21px;
	overflow: hidden; */
}
	ul.categoryTabs li {
		display: block;
		float: left;
		height: 21px;
		padding: 0;
		margin: 0 5px 0 0;
		background-repeat: no-repeat;
		background-image: url('/tribe/images/redesign/tabs/left_off.gif');
	}
	ul.categoryTabs li.current {
		font-weight: bold;
		background-image: url('/tribe/images/redesign/tabs/left_on.gif');
	}
	ul.categoryTabs li a {
		display: block;
		font-size: 12px;
		line-height: 21px;
		margin: 0 0 0 10px;
		padding: 0px 10px 0px 0px;
		color: #000;
		text-decoration: none;
		background:url("/tribe/images/redesign/tabs/right_off.gif") no-repeat right top;
	}
		ul.categoryTabs li.current a {
			background:url("/tribe/images/redesign/tabs/right_on.gif") no-repeat right top;
		}	
		ul.categoryTabs li a:hover {
			text-decoration: underline;
		}

/* END CATEGORY TABS                                               */
/* *************************************************************** */



/* INVITE FOLLOWER */
#inviteContainer {
  background: #E6E6E6;
  padding: 15px 0;
}

#inviteFollower {
  width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
	font-weight: normal; 
	color: #000000;
	background: #FFDAB2; 
	border: 1px solid #E6E6E6;  
}
	#inviteFollower .minicard {
		background: #FFF;
	}

  #inviteFollower p a { font-weight: bold; }

  #inviteFollower td.inviter {
    width: 160px;
  }
  #inviteFollower td.message {
  	padding: 2px 20px;
  }
  #inviteFollower td.join {
    width: 140px;
    padding-top: 10px;
    padding-right: 20px;
  }
  

/* *************************************************************** */
/* MINICARDS                                                       */

/* All minicards get default styling defined by .minicard                        */
/* All the various minicard styles are then extensions or overrides              */
/* to the default style.                                                         */
/* Current minicard styles are: 

/* -mcSmall    -> name + online indicator                                        */
/* -mcPhoto    -> mugshot (48px square image)                                    */
/* -mcMugshot  -> name, mugshot, online indicator, friend count                  */
/* -mcCompact  -> name, mugshot, online indicator, friend count, location        */
/* -mcMedium   -> name, medium photo (150px wide), online indicator, friend count  */
/* -mcLarge    -> name, thumb photo, online indicator, person path, location, interests, occupation, friends and network  */

/* In the markup the minicard will look like                                     */
/* <div class="minicard mcMugshot"> or <div class="minicard mcLarge"> etc.       */

/* Global minicard styles */
/* The default style is miniCardSmall which is just a text link   */
.minicard { }
  .minicard .name a:link { color:#000; }
  .minicard .name a:visited { color:#000; }
  .minicard .name a:hover { color: #9B0000; }  
  .minicard .name a:active { color: #9B0000; }

  .minicard .online .name { font-weight: bold;}
  .minicard .offline { background: transparent; }	 
  .onlineIcon {
    background: url("/tribe/images/icon_offline.gif") no-repeat top left;    
    width: 16px;
  }
  .employee .onlineIcon {
    background: url("/tribe/images/icon_offline_emp.gif") no-repeat top left;      
  }
 .subscribe .onlineIcon {
    background: url("/tribe/images/icon_offline_sub.gif") no-repeat top left;
  }

  .online .onlineIcon {
    background: url("/tribe/images/icon_online.gif") no-repeat top left;
  }  
  .employee .online .onlineIcon {
    background: url("/tribe/images/icon_online_emp.gif") no-repeat top left;  
  }
.subscribe .online .onlineIcon {
    background: url("/tribe/images/icon_online_sub.gif") no-repeat top left;
  }
  .onlineIcon img {
    width: 16px;
    height: 16px;  
    vertical-align: middle;
  }
  .minicard .friendCount a { color: #000000; }   
  .minicard .photo { text-align: center; }

/* mcSmall additional styles */
  .mcSmall span.onlineIcon {
    margin-right: 2px;
  }

/* mcPhoto additional styles */
  .mcPhoto .photo img { border: 0 }

/* mcMugshot additional styles */
.mcMugshot {
   width: 52px;
   font-weight: normal;
   font-family: 'Lucida Grande', Lucida, Arial,  sans-serif;
   font-size: 10px;
   border: 1px solid #ccc;
   background: #FFF;
   padding: 0px;
   white-space: nowrap;
   text-align: center;
 } 
  .mcMugshot .online, .mcMugshot .offline {
    padding: 2px 0;
  }
  .mcMugshot .online  { 
    background: #ccc; 
  }	
  .mcMugshot .offline {
    background: #fff;
  }
  .mcMugshot a, .mcMugshot a:link, .mcMugshot a:visited, #columns .mcMugshot a, #contentArea .mcMugshot a { 
    color: #000000;
   }
       
  .mcMugshot .name {
    margin: 0;
    padding-bottom: 1px;
   }
  .mcMugshot .photo {
    height: 48px;
    margin: 0;
    padding: 0;
   }
  .mcMugshot .stats { 
    white-space: nowrap; 
  }
  .mcMugshot .onlineIcon {
    text-align: center;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    margin-top: 1px;
  }
  .mcMugshot .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey.gif") no-repeat;  
  }
  .mcMugshot.employee .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey_emp.gif") no-repeat;  
  }
  .mcMugshot.subscribe .online .onlineIcon {
    background: url("/tribe/images/icon_online_sub.gif") no-repeat;
  }
  .mcMugshot .friendCount {
    float: right;
    text-align: center;
    padding-right: 4px;
   }
  .mcMugshot .anonymous {
     height: 10px;
    font-size: 8px;
    text-transform: uppercase;
    margin-top: 2px;
    margin-bottom: 0px;
   }


/* mcCompact additional styles */
table.mcCompact {
  margin: 2px;
  border: 1px solid #ccc;
}
	.mcCompact .photo {
	  width: 48px; 
	}
	.mcCompact .stats {
	  padding-left: 2px;
	}

/* mcMedium additional styles */
.mcMedium {
  border: 1px solid #aaa;
  width: 162px;
}
  .mcMedium .online, .mcMedium .offline {
    padding: 3px 6px;
  }
  .mcMedium .name { 
    font-size: 1.11em;
    font-weight: bold;
    text-align: center;
    padding-bottom: 4px;
  }  
  .mcMedium .photo {
    text-align: center;  
    width: 150px;
    height: 150px;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .mcMedium .photo table, .mcMedium .photo table td {
    text-align: center;    
    height: 150px;
    width: 150px;
    padding: 0;  
    margin: 0;
  }
  
/* uncomment this to scale photos to fit
  .mcMedium .photo img {
    max-width: 150px;
    max-height: 150px;
  }
*/  
  .mcMedium a {
    color: #000;
  }
  .mcMedium .online  { 
    background: #ccc; 
  }	  
  .mcMedium .stats { 
    white-space: nowrap; 
  }
  .mcMedium .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey.gif") no-repeat;  
  }
  .mcMedium.employee .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey_emp.gif") no-repeat;  
  } 
  .mcMedium.subscribe .online .onlineIcon {
    background: url("/tribe/images/icon_online_sub.gif") no-repeat;
  }
  .mcMedium table.stats {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .mcMedium table.stats td {
    height: 16px;
    padding: 0 1px;    
  }
  .mcMedium td.icon {
    width: 14px;
    text-align: right;
  }
  .mcMedium .online td.status {
    font-weight: bold;
    text-align: left;
  }
  .mcMedium .offline td.status {
    text-align: left;	
    font-weight: regular;
  }
  .mcMedium td.friendCount {
    text-align: right;
    width: 90%;
  }
  * html .mcMedium td.friendCount, * html .mcMedium td.status {
    padding-bottom: 1px;
  }

/* mcPortrait additional styles */
.mcPortrait {
  border: 1px solid #ccc;      
}

/* mcLineItem additional styles */
.mcLineItem .onlineIcon {
  padding-left: 9px;
  margin-left: 6px;
}

/* mcLarge additional styles */
table.mcLarge {
  margin-bottom: 1em;
  border: 1px solid #ccc;      
  border-collapse: collapse;
}
  table.mcLarge td {
    padding: 5px;
    border: 1px solid #ccc;          
  }
  table.mcLarge td.online  { 
    background: #ccc; 
  }	  
  table.mcLarge div.item {
    margin-bottom: 3px;
    width: 210px;
    overflow: hidden;
  }
  table.mcLarge .name {
    text-align: center;
  }
  table.mcLarge .stats .onlineIcon {
    text-align: center;
    float: left;
    margin-left: 4px;
    margin-top: 1px;
  }
  table.mcLarge .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey.gif") no-repeat;  
  }
  table.mcLarge.employee .online .onlineIcon {
    background: url("/tribe/images/icon_online_grey_emp.gif") no-repeat;  
  } 
  table.mcLarge.subscribe .online .onlineIcon {
    background: url("/tribe/images/icon_online_sub.gif") no-repeat;
  }
  table.mcLarge .friendCount {
    float: right;
    text-align: center;
    padding-right: 4px;
   }  
  table.mcLarge td.employee { 
    vertical-align: center; 
    text-align: center;
    font-weight: bold;
  }

/* Styles for lists of minicards */

ul.floatedList {
	list-style: none;
	margin: 10px 0px;
	padding: 0;
}
	ul.floatedList li {
		float: left;
		text-align: center;
		margin: 0px 6px;
		font-size: 0.9em;
	}
	ul.floatedList li a {
		white-space: nowrap;
	}
	
	/* set heights here for list types */
	ul.portrait li {
		height: 120px;
		width: 60px;
	}

/* END MINICARDS AND MUGSHOTS                                      */
/* *************************************************************** */



/* *************************************************************** */
/* REGISTER                                                        */

#registration #main {
	width: 640px;
}

#registration .contentContainer {
	background: #FFF;
	border: 1px solid #CCC;
	padding: 10px;
	margin: 10px auto;
	width: 640px;
}

#registration .logo {
  margin-bottom: 20px;
}

#registration .contentTitle, #registration .content {
  margin: 10px 20px;
}

#registration .nextSteps {
  margin-top: 10px;
}

#registration .nextSteps .tip {
  font-size: 0.92em;
  line-height: 1.11em;
}


/* 051230 EL:  for when we restyle registration
#registration #main {
  min-width: 780px;
  max-width: 780px;
}

#registration #tribeWrapper {
  margin-top: 40px;
}

#registration h1 {
  font-size: 1.8em;
}

#registration .steps {
  margin-top: 10px;
}


*/

/* END REGISTER                                                    */
/* *************************************************************** */

/* *************************************************************** */
/* NEW USER CONTENT                                                */
/* Show this if you don't have user-generated content.             */
/* THIS DOES NOT GO IN contentContainer                            */

.newUserContent {
	background: #EFF8FF;
	border: 1px solid #D2CFCC;
	margin-bottom: 16px;
	padding: 10px;
}

/* END NEW USER CONTENT                                            */
/* *************************************************************** */

/* *************************************************************** */
/* CHANGE LOCATION                                                 */

/* override default appearance */

/* these sections have different basic look than default */
/* so we'll override the default settings here */

#changeLocation .content {
	border: none;
	background: transparent;
}
#changeLocation .contentContainer {
	margin: 0 auto;
	width: 640px;
}
#changeLocation .content table.cities {
	margin: 20px auto;
}
#changeLocation .content .cityNew {
	color: #FF6600;
  font-size: 0.85em;
}

#changeLocation .content table.cities h2 {
		font-size: 1.1em;
		color: #000;
		padding: 10px 0px;
	}
#changeLocation .content table.cities td {
		padding: 0px 10px;
		color: #666;
		font-size: 1.1em;		
		line-height: 1.8em;
		white-space: nowrap;
	}
#changeLocation .content table.cities a {
		margin-left: 10px;
	}
#changeLocation .content table.cities a.city1 {
		font-size: 1.1em;
		font-weight: bold;
	}
#changeLocation .content table.cities a.city2 {
		font-size: 1.3em;
		font-weight: bold;
	}
#changeLocation .content table.cities a.city3 {
		font-size: 1.5em;
		font-weight: bold;
	}
	
#changeLocation .content table.cities .attention {
    font-size: 0.85em;	
	}
	
.otherCityLinks td {
	text-align: center;
	width: 50%;
	padding: 0px 10px;
	font-size: 1.2em;
	font-weight: bold;
}

/* CHANGE LOCATION                                                 */
/* *************************************************************** */

/* *************************************************************** */
/* CITY PICKER                                                     */

#cityPicker {
	background: #FFFFFF;
}
#cityPicker #logo {
	margin-bottom: 0px;
	margin-top: 0px;
}

#cityPicker .cities, #cityPicker .otherCityLinks, #cityPicker .testimonials, #cityPicker .miniFooter {	
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	text-align: left;
}

#cityPicker .cities, #cityPicker .otherCityLinks, #cityPicker .testimonials {
	width: 600px;
	}

#cityPicker table.cities {
	margin-top: 20px;
}
	#cityPicker .cities h2 {
		font-size: 1.1em;
		color: #000;
		padding: 10px 0px;
	}
	#cityPicker .cities td {
		padding: 0px 10px;
		color: #666;
		font-size: 1.1em;		
		line-height: 1.8em;
		white-space: nowrap;
	}
	#cityPicker .cities a {
		margin-left: 10px;
	}
	#cityPicker .cities a.city1 {
		font-size: 1.1em;
		font-weight: bold;
	}
	#cityPicker .cities a.city2 {
		font-size: 1.3em;
		font-weight: bold;
	}
	#cityPicker .cities a.city3 {
		font-size: 1.5em;
		font-weight: bold;
	}
	
	#cityPicker .cities .attention {
    font-size: 0.85em;	
	}
	
#cityPicker .otherCityLinks td {
	text-align: center;
	width: 50%;
	padding: 0px 10px;
	font-size: 1.2em;
	font-weight: bold;
}
#cityPicker .testimonials {
}
	#cityPicker .testimonials .intro {
		color: #666;
		height: 3em;
	}
	#cityPicker .testimonials .testimonial {
		margin: 5px 15px 5px 5px;
	}
	#cityPicker .testimonials .testimonial .photo {
		float: left;
		width: 52px;
		text-align: center;
		border: 1px solid #CCC;
		padding: 2px;
	}
		#cityPicker .testimonials .testimonial .photo a {
			color: #666;
		}
	#cityPicker .testimonials .testimonial .text {
		margin-left: 65px;
	}
	#cityPicker .testimonials ul {
		margin-top: 0px;
		margin-left: 20px;
	}

#cityPicker .miniFooter {
	padding-top: 5px;
	border-top: 1px solid #666;
}


/* CITY PICKER                                                     */
/* *************************************************************** */




/* Account stuff */
#account .moduleConfiguration {
    margin-bottom: 30px;
  }
#account .extra {
	padding-left: 30px;
	padding-right: 30px;
}


/* Tribe25 Header */
.tribe25Header {
	background: #6C7381;
	padding: 10px;
	color: #FFF;
	text-align: center;
}
	.tribe25Header a {
		font-weight: bold;
		color: #FFF;
	}
	.tribe25Header img {
		margin-bottom: -2px;
	}



/* *************************************************************** */
/* AD PLACEMENT                                                    */

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}
.googleAd {
	width: auto; 
	text-align: center;
	margin: 10px auto;
}
	#footer .googleAd {
		margin-bottom: 20px;
	}

.OAS {
  text-align: center;
  margin: 10px 0;
}

.OAS .caption {
  text-align: center;
  font-size: 0.85em;
  text-transform: uppercase;
  color: #666;
}

/* styles for 468x60 ads */
.Middle1 { 
  text-align: center;
  height: 60px;
  width: 100%;
  min-width: 490px;
	width:expression(this.width < 490 ? "490px" : "auto");   
}
.Middle1 .caption { display: none; }
.Middle1 .caption1 {
  float: left;
  width: 11px;
  height: 60px;
	background-image: url('/tribe/images/redesign/ad_banner_left.gif');
}
.Middle1 .caption2 {
  float: right;
  width: 11px;
  height: 60px;
	background-image: url('/tribe/images/redesign/ad_banner_right.gif');
}

#tribecard .caption1, #tribecard .caption2 { display: none; }


/* AD PLACEMENT                                                    */
