/*
	Copyright (c) Gareth Hadfield 2018
	
	Tab Control
*/


.tab_pages{
}

.tab_pages > div:first-child > div{
	border-right:solid #f0f0f0 1px;
	border-top:solid #f0f0f0 1px;
	border-bottom:solid #f0f0f0 1px;
	padding:10px;
	padding-left:20px;
	padding-right:20px;
	float:left;
	width:100px;
	cursor:pointer;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

.tab_pages > div:first-child > div:last-child{
	width:auto;
	overflow:hidden;
	border:none;
	float:none;
	height:45px;
	border-bottom:solid #f0f0f0 1px;
	cursor:default;
	padding-top:0px;
	padding-bottom:0px;
}

.tab_pages > div:first-child > div:first-child{
	border-left:solid #f0f0f0 1px;
}

.tab_pages > div{
	clear:left;
	border:solid #f0f0f0 1px;
	padding:20px;
	border-top:none;
}

.tab_pages > div:first-child{
	clear:left;
	padding:0px;
	border:none;
}

.tab_pages > div:first-child > div.active_tab{
	border-top:solid #284f6b 4px;
	padding-top:7px;
	border-bottom:none;
}

.tab_pages > div:first-child > div.temp_tab{
	padding:0px;
}
