div.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px;
	border-bottom: 1px solid #998B78;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
}
div.tabs input {
	float: left;
	margin: 0;
	font-size: 14px;
	cursor: pointer;
	padding: 0px 13px;
	height: 32px;
	line-height: 31px;
	border: 1px solid #998B78;
	border-bottom: none;
	font-weight: bold;
	background: #E6E2DD;
	overflow: hidden;
	position: relative;
	color: #6D635B;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	margin-right: 3px;
	text-decoration: none;
}
div.tabs input:hover {
	background: #f2efeb;
	text-decoration: none;
}	
div.tabs input.active {
	background: #FFFFFF;
	height: 33px;
	line-height: 20px;
	border-bottom: 1px solid #FFFFFF;
	text-decoration: none;
}
.tab_container {
	padding: 5px;
	border: 1px solid #998B78;
	border-top: none;
	clear: both;
	float: left; 
	width: 100%;
	background: #FFFFFF;
	box-sizing: border-box;
}

.lms-style {
	border: 1px solid #6d635b;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
}

.lms-wrapper {
	padding: 10px;
}

.lms-header {
	color: white;
	font-size: 20px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	padding: 8px 15px;
	background-color: #6d635b;
	margin: 0;
	border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
}

/*responsiveness for calendar controls */
@media all and (max-width: 390px) {
	.lms-register {
		
	}

	div.tabs {
		height: 65px !important;
		position: relative !important;
	}
	
	div.tabs input {
		position: absolute !important;
		bottom: 0 !important;
		left: 90px !important;
	}
	
	div.tabs input:first-child {
		left: 0 !important;
	}
	
	div.tabs input.active {
		bottom: -1px !important;
		left: 0 !important;
	}
	
}





