/* A simple, CSS only, (some-what) responsive menu */
body 
{ 
  background: lavender;
  color: #574c3f;
  font-family: Corbel, Arial, Helvetica, Verdana, sans-serif;
  font-size: 16px;
  /* text-transform: uppercase;  **/
  text-align: center;
  font-weight: 700;
}


.wrap 
{
  width: 1380px;
  min-width: 1600px;
  margin: auto;
  padding-bottom: 20px;
  background-color: white;

  -moz-border-radius: 25px;
  -webkit-border-radius: 35px;
  border-radius: 25px;
  overflow: hidden;
  height: inherit;  
 
  
   display: inline-block;
   -webkit-box-shadow: 0 0 70px #fff;
   -moz-box-shadow: 0 0 70px #fff;
   box-shadow: 0 0 70px #fff;
   margin-top: 20px;
  
}



/* a little "umph" */
.decor {
	
   /**
   background: #6EAF8D;
   background: -webkit-linear-gradient(left, #CDEBDB 50%, #6EAF8D 50%);
   background: -moz-linear-gradient(left, #CDEBDB 50%, #6EAF8D 50%);
   background: -o-linear-gradient(left, #CDEBDB 50%, #6EAF8D 50%);
   background: linear-gradient(left, white 50%, #6EAF8D 50%);
   
   **/
   
   background-size: 50px 25%;
   padding: 2px;
   display: block;
}

a 
{
   text-decoration: none;
   color: #fff;
   display: block;
}


ul 
{
   list-style: none;
   position: relative;
   text-align: left;
}

li 
{
  float: left;
}

/* clear'n floats */
ul:after 
{
  clear: both;
}


ul:before,
ul:after 
{
    content: " ";
    display: table;
}

nav 
{

   display: block;
   position: relative;
   background: linear-gradient(to top, blue, #ffffff);
   
   /**
   background: #2B2B2B;
   background-image: -webkit-linear-gradient(bottom, #2B2B2B 7%, #333333 100%);
    background-image: -moz-linear-gradient(bottom, #2B2B2B 7%, #333333 100%);
    background-image: -o-linear-gradient(bottom, #2B2B2B 7%, #333333 100%);
    background-image: linear-gradient(bottom, #2B2B2B 7%, #333333 100%);
   **/
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #0E0E0E;
    -webkit-box-shadow: 2px 2px 3px #888;
    -moz-box-shadow: 2px 2px 3px #888;
    box-shadow: 2px 2px 3px #888;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
   
}


/* prime */
ul.primary li a 
{
  display: block;
  padding: 20px 30px;
  /** background: linear-gradient(to top, #c2bcb5, #ffffff); ***/
  border-right: 1px solid #3D3D3D;
}

ul.primary li:last-child a 
{
  border-right: none;
}

ul.primary li a:hover 
{
  
  color: #000;
}

/* subs */
ul.sub 
{
  position: absolute;
  z-index: 200;
  box-shadow: 2px 2px 0 #BEBEBE;
  width: 35%;
   display:none;
}

ul.sub li 
{
  float: none;
  margin: 0;
}

ul.sub li a 
{
  border-bottom: 1px dotted #ccc;
  border-right: none;
  color: #000;
  padding: 15px 30px;
}

ul.sub li:last-child a 
{
  border-bottom: none;
}

ul.sub li a:hover 
{
  color: #000;
  background: #eeeeee;
}

/* sub display*/
ul.primary li:hover ul 
{
  display: block;
  background: #fff;
}

/* keeps the tab background white */
ul.primary li:hover a 
{
  background: #fff;
  color: #666;
  text-shadow: none;
}

ul.primary li:hover > a
{
  color: #000;
} 


@media only screen and (max-width: 600px) 
{
  .decor 
  {
     padding: 3px;
  }
  
  .wrap {
    width: 100%;
    margin-top: 0px;
  }
  
  li 
  {
     float: none;
  }
  
  ul.primary li:hover a 
  {
     background: none;
     color: #8B8B8B;
     text-shadow: 1px 1px #000;
  }

  ul.primary li:hover ul 
  {
    display: block;
    background: #272727;
    color: #fff;
  }
  
  ul.sub 
  {
    display: block;  
    position: static;
    box-shadow: none;
    width: 100%;
  }
  
  ul.sub li a {
    background: #272727;
    border: none;
    color: #8B8B8B;
  }
  

  ul.sub li a:hover 
  {
    color: #ccc;
    background: none;
  }

}


#content
{
   padding: 30px;
   min-height: 1500px;
   min-width: 1500px;
}
