* {
	margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px;}

html {
    /* color: #547690 ; */
    color:black;
	background: transparent;
	font-size: 14px;
	font-family:  sans-serif;
}
/* body { padding-top: 6rem; } */
table {
    border: 1px solid black;
}

img {
/* -webkit-filter: grayscale(100%); Safari 6.0 - 9.0 */
/* filter: grayscale(100%); */
   background: transparent;
  }
  /* p {
    color:black;
    font-size: 14px;
	font-family:  sans-serif;
  }
  h1,h2,h3,h4,h5 {
    color:black;
  } */

.leftimg {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 200px;
}
.active{
    background-color: blue;
    color: blueviolet;
}
.red {
    background-color: green;
    color:red;
}
/*img:hover {

    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display: block;
	clear: both;
}

.clear {
	clear: both;
}
.p5 {
	padding: 5px;
}
.m5 {
	margin: 5px;
}

.p10 {
	padding: 10px;
}
.m10 {
	margin: 10px;
}

.mp5 {
	padding: 5px;
	margin: 5px;
}
.mp10 {
	margin: 10px;
	padding: 10px;
}

.ma5 {
	margin: 5px 5px;
}
.ma10 {
	margin: 10px 10px;
}

.w20 {
	width: 20px;
}
.w50 {
	width: 50px;
}
.w100 {
	width: 100px;
}
.w150 {
	width: 100px;
}
.w200 {
	width: 200px;
}
.w300 {
	width: 300px;
}
.w400 {
	width: 400px;
}
.w500 {
	width: 500px;
}
.h10 {
	height: 10px;
}
.h20 {
	height: 20px;
}
.h30 {
	height: 30px;
}
.h40 {
	height: 40px;
}
.h50 {
	height: 50px;
}
.h100 {
	height: 100px;
}
.h150 {
	height: 150px;
}
.h200 {
	height: 200px;
}
.h300 {
	height: 300px;
}
.h400 {
	height: 400px;
}
.h500 {
	height: 500px;
}

.ohe {
	overflow: hidden;
	text-overflow: ellipsis;
}
.ohe {
	overflow: hidden;
	text-overflow: ellipsis;
}
.ohe {
	overflow: hidden;
	text-overflow: ellipsis;
}
.ov {
	overflow:  visible;
}

.wrapper-left {
	margin: 0px auto;
    width: 15%;
    float: left;
    min-height: 800px;
}

.wrapper-center {
	margin: 0px auto;
    width: 70%;
    float: left;
    min-height: 620px;
    background: #ECECEC;
}

.wrapper-right {
	margin: 0px auto;
    width: 15%;
    float: left;
    min-height: 800px;
}

.wrapper-header  {
    margin: 0px auto;
    height: 80px;
    /* background: #00bfff; */
    min-height: 120px;
    top: 0px;
    border-bottom: 1px solid #A9D0F5;
}
.wrapper-body {
	margin: 0px auto;
    /* background: #00ffbf; */
    min-height: 440px;
}

.wrapper-footer {
	margin: 0px auto;
    /* background: #00bfff; */
    min-height: 220px;
    border-top: 1px solid blue;
}

#wrapper-footer p {
	color: black ;
}

.block-left {
	margin: 0px auto;
    width: 15%;
    float: left;
    min-height: 518px;
}

.block-right {
	margin: 0px auto;
    width: 85%;
    float: left;
    min-height: 518px;
    background: #40E0D0;
}
.fontupper {
	text-transform: uppercase;
}
.fontlower {
	text-transform: lowercase;
}
.fontcapitalize  {
	text-transform: capitalize;
}
.sbt {
	margin-bottom: 10px;
}
wrapper-menu {
	height: 60px;
}

.nestedsidemenu {
    font: bold 16px 'Bitter', sans-serif;
        position: relative;
    width: 220px;
}


/* Top Level Menu */
.nestedsidemenu ul {
    z-index: 100;
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
}

/* Top level list items */
.nestedsidemenu ul li {
    position: relative;
}

/* Top level menu items link style */
.nestedsidemenu ul li a, .nestedsidemenu ul li span {
    display: block;
    position: relative;
    /* background of menu items (default state) */
    background:    #008c9e;
    color: black;
    padding: 14px 10px;
    color: #2d2b2b;
    text-decoration: none;
}


.nestedsidemenu ul li a:link, .nestedsidemenu ul li a:visited {
    color: black;
}

/* Top level menu items link style on hover and when active */
.nestedsidemenu ul li:hover > a {
    background: #005f6b;
}

/* Sub ULs style */
.nestedsidemenu ul li ul {
    position: absolute;
    left: -5000px;
        top: 0;
    opacity: 0;
    width: 230px;
    visibility: hidden;
    box-shadow: 2px 2px 5px gray;
    -webkit-transition: opacity .3s, visibility 0s .3s, left 0s .3s;
    transition: opacity .3s, visibility 0s .3s, left 0s .3s;
}

/* First Sub Levels UL style on hover */
.nestedsidemenu ul li:hover > ul {
    visibility: visible;
    left: 100%;
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
}

/* Sub level Menu list items (alters style from Top level List Items) */
.nestedsidemenu ul li ul li {
    display: list-item;
    float: none;
}

/* 2nd and beyond Sub Levels vertical offset after 1st level sub menu */
.nestedsidemenu ul li ul li ul {
    top: 0;
    left: 100%;
}

/* Sub Levels link style on hover and when active */
.nestedsidemenu ul ul li:hover > a {
    background: #52616a;
}

/* Sub Levels UL style on hover */
.nestedsidemenu ul ul li:hover > ul {
    left: 100%;
}

/* Sub level menu links style */
.nestedsidemenu ul li ul li a {
    font: normal 14px 'Bitter', sans-serif;
    padding: 10px;
    margin: 0;
    background: #4ea1d3;
    border-right: none;
    border-top-width: 0;
}

/* LIs with a sub UL style */
.nestedsidemenu ul li > a {
    /* add padding to accomodate arrow inside LIs */
    padding-right: 25px;
}

/* LIs with NO sub UL style */
.nestedsidemenu ul li > a:only-child {
    /* undo padding for non submenu LIs */
    padding-right: 10px;
}

/* LIs with a sub UL pseudo class */
.nestedsidemenu ul li > a:after {
    /* add arrow inside LIs */
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-left-color: #FFFFFF;
    top: 40%;
    right: 8px;
}

/* LIs with NO sub UL pseudo class */
.nestedsidemenu ul li > a:only-child:after {
    /* undo arrow for non submenu LIs */
    display: none;
}


/* ####### responsive layout CSS ####### */

@media (max-width: 923px) {
    /* FIRST breaking point
            Last top menu items' sub ULs should drop to the left (instead of right)
            Change 1 to a different number to exclude/include more top menu items based on menu and max-width setting above
        */

        .nestedsidemenu ul li:nth-last-of-type(-n+1) ul li:hover > ul {
        left: -100%;
    }
}

@media (max-width: 500px) {
    /* SECOND breaking point
            For mobile and screen browser windows
            Get Sub ULs to expand entire width of document and drop down
            Changes menu reveal type from "visibility" to "display" to overcome bug. See comments below
        */
    .nestedsidemenu{
        width: 100%;
    }

    .nestedsidemenu ul li > a:after {
        /* add arrow inside LIs */
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border: 5px solid transparent;
        border-left-color: transparent;
        border-top-color: #fff;
        top: 40%;
        right: 8px;
    }

    .nestedsidemenu ul li {
        position: static;
    }

    .nestedsidemenu ul li ul {
        width: 100%;
        border-top: 2px solid rgba(0,0,0,.6);
        /* change menu reveal type from "visibility" to "display". Former seems to cause browser to jump to top of page sometimes when menu header is tapped on */
        display: none;
    }

    .nestedsidemenu ul li:hover > ul {
        display: block;
        left: 0 !important;
        top: auto;
        box-shadow: 0 0 12px gray;
    }


}

/*for multilevel menu*/
.droplinetabs{
    position: relative;
    text-align: left;
    font: bold 16px 'Bitter', sans-serif;
    margin-top: 0px;
    padding-top: opx;
    background: #00bfff;
}

.droplinetabs *{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.droplinetabs a{
    text-decoration: none;
    color: black;
    display: inline-block;
    font-weight: bold;
    padding: 8px;
    position: relative;
    margin-right: 0px;
}

.droplinetabs, .droplinetabs ul{
    list-style: none;
    /*margin: 0;
    padding: 0;*/
  -webkit-perspective: 1000px;
  perspective: 1000px;
    -webkit-perspective-origin: 50% 0%;
  perspective-origin: 50% 0%;
  background: #43CD80;
}
/* Top Level LI style */
.droplinetabs ui {
    background: black;
}
.droplinetabs > li:hover > a {
    background: blue;
}

/* Top Level link style */
.droplinetabs > li > a{
    text-transform: uppercase;
}

/* Top Level link style on hover and when active */
.droplinetabs li:hover > a {
    border-radius: 4px 4px 4px 4px;
    padding: 6px 2px;
    background: blue;
}

.droplinetabs li{
    display: inline;
    padding: 6px 2px;
    border-bottom: 1px solid white ;
}

.droplinetabs li a {
    background: blue;
}

/* drop line ULs style */
.droplinetabs ul{
    background: #00bfff ;
    position: absolute;
   /* left: -5000px;*/
    width: 100%;
    opacity: 0;
    /*padding: 10px 0;*/
    top: auto;
    border: 1px solid #ddd;
    box-shadow: 0 3px 5px #eee;
    -webkit-transform: rotateX(-70deg);
    transform: rotateX(-70deg);
    backface-visibility: hidden;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transition: opacity .3s, -webkit-transform .5s, visibility 0s .3s, left 0s .3s;
    transition: opacity .3s, transform .5s, visibility 0s .3s, left 0s .3s;
}

/* Reveal sub menu on hover */
.droplinetabs li:hover > ul{
    opacity: 1;
   /* left: 0;*/
    top: auto;
    z-index: 1000;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s;
}

.droplinetabs ul li{
    display: inline;
    padding: 6px 2px;
    border-bottom: 1px solid black ;
}

/* Sub Levels link style on hover and when active */

/* LIs with a sub UL style */

/* LIs with NO sub UL style */
.droplinetabs li > a:only-child {
    /* undo padding for non submenu LIs */
    padding-right: 5px;
}


/* Arrow for LIs with sub ULs */
.droplinetabs li > a:after {
    /* add arrow inside LIs */
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    border: 5px solid transparent;
    border-top-color: blue ;
    top: 45%;
    right: 8px;
    margin-right: -20px;
}


/* LIs with NO sub UL pseudo class */
.droplinetabs li > a:only-child:after {
    /* undo arrow for non submenu LIs */
    display: none;
}


/* ####### responsive layout CSS ####### */

@media (max-width: 720px) {
/* Top Level link style */
    .droplinetabs > li > a{
       border-radius: 0;
       margin-top: 5px;
    }

}




