 .tabs_wrapper {
	 width: 100%;
	 text-align: center;
	 margin: 0 auto;
	 background: none;
}
 ul.tabs {
	 display: inline-block;
	 vertical-align: top;
	 position: relative;
	 z-index: 10;
	 margin: 0;
	 padding: 0;
	 width: 23%;
	 min-width: 175px;
	 list-style: none;
	 -ms-transition: all 0.3s ease;
	 -webkit-transition: all 0.3s ease;
	 transition: all 0.3s ease;
	 /*border:solid 1px #CCCCCC;*/
	 /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);*/
}
 ul.tabs li {
	 margin: 0;
	 cursor: pointer;
	 min-height: 31px;
	 line-height: 20px;
	 padding: 10px 15px 10px 15px;
	 color: #FFFFFF;
	 text-align: left;
	 font-weight: bold;
	 background-color: #FFFFFF;
	 background: #0063AF;
	 border-bottom:solid 1px #FFFFFF;
	/* IE6-9 */
	 -ms-transition: all 0.3s ease;
	 -webkit-transition: all 0.3s ease;
	 transition: all 0.3s ease;
}
 ul.tabs li:hover {
	 background: #5B95DE;
	 color: #FFFFFF;
	 -ms-transition: all 0.3s ease;
	 -webkit-transition: all 0.3s ease;
	 transition: all 0.3s ease;
}
 ul.tabs li.active {
	 background: #5B95DE;
	 color: #FFFFFF;
	 -ms-transition: all 0.3s ease;
	 -webkit-transition: all 0.3s ease;
	 transition: all 0.3s ease;
}
 .tab_container {
	 display: inline-block;
	 vertical-align: top;
	 position: relative;
	 z-index: 20;
	 left: -2%;
	 width: 73%;
	 min-width: 10px;
	 text-align: left;
	 background: #FFFFFF;
	 border:solid 1px #CCCCCC;
	 /*box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);*/
}
 .tab_content {
	 padding: 20px;
	 height: 100%;
	 display: none;
}
 .tab_drawer_heading {
	 display: none;
}
 @media screen and (max-width: 781px) {
	 ul.tabs {
		 display: none;
	}
	 .tab_container {
		 display: block;
		 margin: 0 auto;
		 width: 95%;
		 border-top: none;
		 /*box-shadow: 0px 0px 10px black;*/
	}
	 .tab_drawer_heading {
		 background: #0063AF;
		/* IE6-9 */
		 color: #FFFFFF;
	 	border-bottom:solid 1px #FFFFFF;
		 margin: 0;
		 padding: 10px;
		 display: block;
		 cursor: pointer;
		 -webkit-touch-callout: none;
		 -webkit-user-select: none;
		 -khtml-user-select: none;
		 -moz-user-select: none;
		 -ms-user-select: none;
		 user-select: none;
		 text-align: center;
	}
	 .tab_drawer_heading:hover {
		 background: #5B95DE;
		 color: #FFFFFF;
	}
	 .d_active {
		 background: #5B95DE;
		 color: #FFFFFF;
	}
}