/* Tab Content - menucool.com */
ul.tabsvertical {
    /* display:flex; */
    
    /* justify-self: flex-start; */
    width:100%;
    padding: 6px 0;
    font-size: 0;
    margin:0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
ul.tabsvertical li {
    flex-direction:column; 
    justify-content: flex-start;
    width:100%;
    display: flex;
    margin: 0;
    margin-right:2px; /*distance between tabs*/
}
ul.tabsvertical li a {
    font: normal 20px Verdana;
    text-decoration: none;
    position: relative;
    padding: 6px 10px;
    /* border: 1px solid #CCC; */
    border-bottom-color:#AAA;
    color: #ffffff;
    border-radius: 4px 0 0 4px;
	margin: 3px 0 3px 0;
    outline:none;
	background: #05471F; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#000000, #05471F); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#000000, #05471F); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#000000, #05471F); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#000000, #05471F); /* Standard syntax */
}
ul.tabsvertical li a:visited {
    color: #ffffff;
}
ul.tabsvertical li a:hover {
    /* //border: 1px solid #AAA; */
    background: #000000 url(tabbg.gif) 0 -36px repeat-x;
}
ul.tabsvertical li.selected a, ul.tabs li.selected a:hover {
    /* //padding: 9px 16px 6px; */
    position: relative;
    top: 0px;
    font-weight:bold;
    /* //background: white url(tabbg.gif) 0 -72px repeat-x;
    //border: 1px solid #AAA;
    //border-bottom-color: white; */
	/* border-radius: 4px 4px 0 0; */
	background: #000000; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#05471F, #000000); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#05471F, #000000); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#05471F, #000000); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#05471F, #000000); /* Standard syntax */
}
ul.tabsvertical li.selected a:hover {
    text-decoration: none;
}

div.tabcontentsvertical {
    border: 2px solid #000000; padding: 30px;
    /* //background-color:#31A2E4; */
	background-color:white;
    border-radius: 4px;
}
