			/* Tabbed Styles */
			.tabbed {
				width: 100%;
				
				margin: 0 auto;
				margin-bottom: 68px;
/*				border-bottom: 1px solid #069;*/
				overflow: hidden;
				transition: border 250ms ease;
			}
			.tabbed ul.tabbedround{
				margin: 0px;
				padding: 0px;
				overflow: hidden;
				float: left!important;
				padding-left: 32px;
				list-style-type: none;
                width: 100%;
			}
			.tabbed ul.tabbedround * {
				margin: 0px;
				padding: 0px;
			}
			.tabbed ul.tabbedround li {
				display: block;
				float: left;
				padding: 3px 5px ;
				background-color: #c3c3e5;
				margin-right: 46px;
				z-index: 2;
				position: relative;
				cursor: pointer;
				color: #333 !important;
                letter-spacing: 1px;
/*				text-transform: uppercase;*/
				font: 400 12px/22px roboto, "Open Sans", Helvetica, sans-serif;

				transition: all 250ms ease;
			}

			.tabbed ul.tabbedround li:before,
			.tabbed ul.tabbedround li:after {
				display: block;
				content: " ";
				position: absolute;
				top: 0;
				height: 100%;
				width: 32px; 	
				background-color: #c3c3e5;
				transition: all 250ms ease;
                 z-index: -2;
                cursor: pointer;
			}
			.tabbed ul.tabbedround li:before {
				right: -24px;  
				transform: skew(30deg, 0deg);
				box-shadow: rgba(0,0,0,.1) 3px 0 5px, inset rgba(255,255,255,.09) -1px 0;
                z-index: -2;
                cursor: pointer;
			}
			.tabbed ul.tabbedround li:after {
				left: -24px;
				transform: skew(-30deg, 0deg);
				box-shadow: rgba(0,0,0,.1) -3px 0 5px, inset rgba(255,255,255,.09) 1px 0;
                 z-index: -2;
                cursor: pointer;
			}
			.tabbed ul.tabbedround li:hover,
			.tabbed ul.tabbedround li:hover:before,
			.tabbed ul.tabbedround  li:hover:after {
				background-color: #F4F7F9;
				color: #444;
			}
			.tabbed ul.tabbedround li.active {
				z-index: 3;
                color: #605ca8; 
                 z-index: 9;
			}
            .tabbed ul.tabbedround li.active a{
                color: #413f73;
                z-index: 9;
                font-weight: 700;
            }
            .tabbed ul.tabbedround li a{
                color: #333;
                font-weight: 700;
            }
            .tabbed ul.tabbedround li a:hover{
                color: #605ca8;
            }
			.tabbed ul.tabbedround li.active,
			.tabbed ul.tabbedround li.active:before,
			.tabbed ul.tabbedround li.active:after {
				background-color: #fff;
				color: #605ca8!important;
              
			}
           /* Round Tabs */
			.tabbed.round ul.tabbedround li {
				border-radius: 8px 8px 0 0;
                cursor: pointer;
			}
			.tabbed.round ul.tabbedround li:before {
				border-radius: 0 8px 0 0;
                 cursor: pointer;
			}
			.tabbed.round ul.tabbedround li:after {
				border-radius: 8px 0 0 0;
                 cursor: pointer;
			}

.tabbed > ul > .parents li {
    background: #fff;
}
	
.tabbed> .tab-content {
    background: #fff;
    padding: 10px 10px 0 10px;
    margin-top:28px;
    /*border-bottom-right-radius: 3px;*/
    /*border-bottom-left-radius: 3px*/
}		
