/* Tabs container */
.r-tabs {
	position: relative;
}
/* Tab element */
.r-tabs.tabs-vertical .r-tabs-nav {
	float: left;
}
.r-tabs.tabs-vertical .r-tabs-panel {
	float: right;
}
.r-tabs.tabs-vertical .r-tabs-nav,
.r-tabs.tabs-vertical .r-tabs-panel {
	width: 49.9%;
}
.r-tabs .r-tabs-nav .r-tabs-tab {
	float: left;
	display: block;
	position: relative;
	width: 20%;
}
.r-tabs.tabs-vertical .r-tabs-nav .r-tabs-tab {
	width: 100%;
}
/* Tab anchor */
.r-tabs .r-tabs-nav .r-tabs-anchor {
	display: inline-block;
	padding: 10px 12px;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	color: #7c7b7b;
}
/* Disabled tab */
.r-tabs .r-tabs-nav .r-tabs-state-disabled {
	/*opacity: 0.5;*/
}
/* Active state tab anchor */
.r-tabs .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
	display: inline-block;
	width: 100%;
	color: #00c5ad;
	text-shadow: none;
	/*background-color: white;*/
}
/* Tab panel */
.r-tabs .r-tabs-panel {
	/*background-color: white;*/
	/*background: -moz-linear-gradient(top, rgb(244, 246, 247) 0%, rgba(0,0,0,0) 100px);*/
	/*background: -webkit-linear-gradient(top, rgb(244, 246, 247) 0%, rgba(0,0,0,0) 100px);*/
	/*background: linear-gradient(to bottom, rgb(244, 246, 247) 0%, rgba(0,0,0,0) 100px);*/
	background: url(../../images/tab-bg.png) repeat-x;
}
/* Accordion anchor */
.r-tabs .r-tabs-accordion-title .r-tabs-anchor {
	display: block;
	padding: 10px;
	/*background-color: #00c5ad;*/
	/*color: #fff;*/
	background: #e0e2e7;
    background: -moz-linear-gradient(top, #f6f7f8 0%, #e0e2e7 100%);
    background: -webkit-linear-gradient(top, #f6f7f8 0%, #e0e2e7 100%);
    background: linear-gradient(to bottom, #f6f7f8 0%, #e0e2e7 100%);
    color: #7c7b7b;
	font-weight: bold;
	text-decoration: none;
	/*text-shadow: 0 1px rgba(0, 0, 0, 0.4);*/
	font-size: 14px;
}
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	color: rgb(168, 92, 118);
}
/* Active accordion anchor */
.r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
	/*background-color: #fff;*/
	/*color: #00c5ad;*/
	text-shadow: none;
}
/* Disabled accordion button */
.r-tabs .r-tabs-accordion-title.r-tabs-state-disabled {
	/*opacity: 0.5;*/
}
/* Info bar */
.r-tabs .info {
	display:inline-block;
	margin-top: 10px;
	margin-right: 10px;
	padding: 10px 20px;
	width: 300px;
	line-height: 100%;
	font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 14px;
	color: #00c5ad;
	border: 2px solid #00ab94;
	background-color: #fff;
	cursor: pointer;
} 