.table-white {
	border: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}
.table-white-top {
	background-color: #FFFFFF;
	border-top: 1px solid #CCCCCC;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
.table-white-cell-bottom {
	background-color: #FFFFFF;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #CCCCCC;
	border-left: none;
}
.table-white-cell-left {
	background-color: #FFFFFF;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #CCCCCC;
}
.table-white-cell-right {
	background-color: #FFFFFF;
	border-top: none;
	border-right: 1px solid #CCCCCC;
	border-bottom: none;
	border-left: none;
}
.table-white-cell-sides {
	background-color: #FFFFFF;
	border-top: none;
	border-right: 1px solid #CCCCCC;
	border-bottom: none;
	border-left: 1px solid #CCCCCC;
}




.table-gray {
	border: 1px solid #CCCCCC;
	background-color: #EFEFEF;
}
.table-gray-cell-top {
	background-color: #EFEFEF;
	border-top: 1px solid #CCCCCC;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
.table-gray-cell-bottom {
	background-color: #EFEFEF;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #CCCCCC;
	border-left: none;
}
.table-gray-cell-left {
	background-color: #EFEFEF;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #CCCCCC;
}
.table-gray-cell-right {
	background-color: #EFEFEF;
	border-top: none;
	border-right: 1px solid #CCCCCC;
	border-bottom: none;
	border-left: none;
}
.table-gray-cell-sides {
	background-color: #EFEFEF;
	border-top: none;
	border-right: 1px solid #FF9900;
	border-bottom: none;
	border-left: 1px solid #FF9900;
}




.table-yellow {
	border: 1px solid #CCCCCC;
	background-color: #FFFFCC;
}
.table-yellow-cell-top {
	background-color: #FFFFCC;
	border-top: 1px solid #CCCCCC;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
.table-yellow-cell-bottom {
	background-color: #FFFFCC;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #CCCCCC;
	border-left: none;
}
.table-yellow-cell-left {
	background-color: #FFFFCC;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #CCCCCC;
}
.table-yellow-cell-right {
	background-color: #FFFFCC;
	border-top: none;
	border-right: 1px solid #CCCCCC;
	border-bottom: none;
	border-left: none;
}
.table-yellow-cell-sides {
	background-color: #FFFFCC;
	border-top: none;
	border-right: 1px solid #FF9900;
	border-bottom: none;
	border-left: 1px solid #FF9900;
}




.table-gradient {
	background-image: url(images/table/gradient_whitegray.gif);
	background-repeat: repeat-x;
	background-position: bottom left;
}
.table-chiclet-cell-top {
	border-top: 1px solid #CCCCCC;
	border-right: none;
	border-bottom: none;
	border-left: none;
	line-height: 10px;
}
.table-chiclet-cell-bottom {
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #CCCCCC;
	border-left: none;
	line-height: 0px;	
}
.table-chiclet-cell-left {
	width: 10px;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 1px solid #CCCCCC;
}
.table-chiclet-cell-right {
	width: 10px;
	align: right;
	border-top: none;
	border-right: 1px solid #CCCCCC;
	border-bottom: none;
	border-left: none;
}





.table-dashed-bottom {
	border-top: none;
	border-right: none;
	border-bottom: 1px dashed #CCCCCC;
	border-left: none;
	line-height: 0px;	
}




.line-light-dashed {
	background-color: #CCCCCC;
	height: 1px;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	border-bottom-color: #CCCCCC;
}




.form-standard 
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
}

/*
 * Universal top navigator styling
 */
#earthcomber-buttonbar {
	margin: 0px auto 0px auto;
	width: 740px; 
	background-image: url(images/titlebar/menubar_bg.gif);	
	background-repeat: repeat-x;
	background-position: top left;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
//	font-weight: bold;
}
#earthcomber-buttonbar img {
	display: inline;
}
#earthcomber-buttonbar #major-links {
	width: 546px;
	vertical-align: top;
}
#earthcomber-buttonbar #minor-links {
	width: 184px;
	vertical-align: top;
	text-align: right;	
}
#earthcomber-buttonbar #spacer {
	width: 5px;
}
/*
 * HACK: The login-toggle style is used to conditionally hide the logged-in text.
 * In the HTML, a div is id'd as: id="login-toggle{user_name}". If the user is logged
 * OUT, {user_name} resolves to '', therefore id resolves to 'login-toggle', and
 * the following styles will be applied, hiding the logged-in text. If logged IN,
 * id resolves to e.g. 'login-togglefabio', which doesn't match any defined styles.
 * So the div will not apply any additional styling, and the text will be visible,
 * rendered via "normal" styling rules.
 * 
 * We use this hack because XTemplate (used by drupal/community for page templating) doesn't
 * support conditional logic. So we couldn't do something like "if user_name empty" in the
 * template itself. -ctd Oct 02 2006
*/
#earthcomber-buttonbar #login-toggle {
	visibility: hidden;
	height: 10px;
	overflow: hidden;
}

