/*{{{ very basic styles */

body {
	margin:0;
	background-color:#fff;	
}

.blue {	
	color:#2D5AC3;	
	font-size: 14px;
	height: 20px;
}

#content {
	background:#fff url(./../images/hp_content_top.jpg) no-repeat;	
	float:left;
	min-height:400px;	
	padding:20px;
	width:573;
}


#content, #right {
	margin-top:100px;		
}

/*{{{ tabs */

/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:30px;		
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
.tabs a { 
	background: url(./../images/tabs.png) no-repeat -652px 0;
	font-size:11px;
	display:block;
	height: 26px;  
	line-height:30px;
	width: 111px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background-position: -652px -31px;	
	color:#fff;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	background-position: -652px -62px;		
	cursor:default !important; 
	color:#000 !important;
}

/* initially all panes are hidden */ 
.panes .pane {	
	display:none;		
}


/*}}}*/