
		.tabsContainer
		{			
			margin: 8px 0px;
			height: 280px;			
		}

		ul.tabs
		{
			margin: 0px;
			padding: 0px;
			list-style: none;
			background: #2e6fa7;
		}
		
		ul.tabs li{			 
			color: #fff;
			display: inline-block;
			padding: 2px 5px;
			cursor: pointer;
			font-size: 12px;
			background: #337ab7;
			margin-left: -3px;
			-webkit-transition: background 0.4s; /* Safari */
			transition: background 0.4s;
		}

		ul.tabs li:hover{
			background: #3988cb;
		}
		 

		ul.tabs li.current{			
			background: #e4e4e4;			 
			color: #222;
		}

		.tab-content{
			position: absolute;
			top: 20;
			left: 4;
			width: 100%;
			display: none;
			background: #fff;
			padding: 15px 0px;	
		}

		.tab-content.current
		{
			/*display: inherit;*/
			
		}