@charset "utf-8";
/* CSS Document */
s
body {
	background-color: #A987D0;
	color: #222;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 15px;
}

nav {
	background-color: #A987D0;
	border: 1px solid #dedede;
	border-radius: 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	color: #9FC0E9;
	display: block;
	overflow: hidden;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #A987D0;
	font-size: medium;
	margin-top: 8px;
	margin-right: 5px;
	margin-bottom: 8px;
	margin-left: 5px;
	padding: 0px;
	float: none;
	width: 100%; /*Slightly less than 1/4th of the width*/
	display: inline-block;
	padding: 0;
	margin: 0;
	text-align: center;
}

  nav ul {
	margin: 0;
	padding: 0;
  }

    nav ul li {
      display: inline-block;
      list-style-type: none;
      
      -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s; 
    }
      
      nav > ul > li > a > .caret {
        border-top: 4px solid #FFFFFF;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        content: "";
        display: inline-block;
        height: 0;
        width: 0;
        vertical-align: middle;
  
        -webkit-transition: color 0.1s linear;
     	  -moz-transition: color 0.1s linear;
       	-o-transition: color 0.1s linear;
          transition: color 0.1s linear; 
      }

      nav > ul > li > a {
	color: #ffffff;
	display: block;
	line-height: 56px;
	text-decoration: none;
	background-color: #A987D0;
	word-spacing: normal;
	text-align: center;
	width: auto;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
	font-size: 16px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-right-style: none;
	border-left-style: none;
	border-top-style: none;
	border-bottom-style: none;
      }

        nav > ul > li:hover {
	background-color: rgb(204,204,204);
        }

        nav > ul > li:hover > a {
	color: rgb(231,234,242);
	background-color: #A987D0;
	padding-right: 40px;
	padding-left: 40px;
	font-size: 16px;
        }

        nav > ul > li:hover > a > .caret {
	border-top-color: rgb(231,234,242);
        }
      
      nav > ul > li > div {
	background-color: #BBACCD;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 165px;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-transition: opacity 0.2s;
      }

        nav > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
	width: auto;
        }

          nav > ul > li > div ul > li {
            display: block;
          }

            nav > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
	font-size: 16px;
	background-color: #A987D0;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
            }

              nav > ul > li > div ul > li:hover > a {
                background-color: rgba( 255, 255, 255, 0.1);
              }
  
 /**additional code**/
 
 #green{
       background-color: #33CC66;
	  }
     
a.green:hover {
  color: black ;
  background-color: #ffffff ;
} 

 
