
/*CSS with browser width 800px or greater
@media(min-width:800px)
{*/
	/*tab panels menu outer div*/
	.tab_panels_outer_div{
		position:relative;
		/*min-height:300px;*/ /*determines the visible area while the panels are in transition */
		width:100%;
	}

	/*tab panels overall menu header div*/
	.tab_panels_header_div{
		position:relative;
		display:table;
		width:100%;
		table-layout:fixed;
		/*box-shadow:0px 5px 5px -2px #333333;*/
		box-shadow:0px 3px 5px -2px #333333;
		z-index:35;
	}
	/*tab panels menu panel header div*/
	.tab_panels_panel_header_div{
		position:relative;
		display:table-cell;
		height:40px;
		vertical-align:middle;
		text-align:center;
		cursor:pointer;
		z-index:1000;
	}

	/*tab panels menu panel header text*/
	.tab_panels_panel_header_text{
		position:relative;top:0px;
		width:100%;
		font-size:14px!important;
		color:#ffffff;
		z-index:1100;
	}

	/*tab panels menu panel header arrow*/
	.tab_panels_panel_header_arrow{
		position:absolute;top:40px;left:0px;
		display:none;
		width:0px;
		z-index:1200;
	}

	/*tab panels menu panel content div*/
	.tab_panels_panel_content_div{
		position:relative;
		height:100%;
		width:100%;
		display:none;
	}
/*}*/