@charset "utf-8";
* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.normal {
font-weight : normal;
}
.bold {
font-weight : bold;
}



.inline{
  display: inline-block;
}
.black {
    color: black;
 }   
.purple {
    color: purple;
    text-decoration: underline ;
}
#hyperlink a:hover {
  color: hotpink;
}
body {
  font-family :  Arial, sans-serif, Helvetica;
  font-size : 16px;
  color : #000000;
  background : #ffbd82;
  margin : 0;
  padding : 0;

}
/* Style the content */
.content {
  margin : auto;
  width: 1000px;
  background-color: #ffbd82;
  padding: 10px;
  /*height: 200px;  Should be removed. Only for demonstration */
}

/* Style the footer */
.footer {
  margin : auto;
  width: 840px;
  background-color: #ffbd82;
 
}


.hidden {
display : none;
}
/* Style the header */
.header {
  text-align: center;
  padding: 10px;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}


.c3 {
text-align : center;
font-size : 12px;
font-style : italic;
}

.center3 {
text-align: center;
font-size : 18px;
font-style : italic;
}

.center1 {
 text-align: center;
 font-size : 15px;
 font-style : italic;
}
.center2 {
 font-size : 15px;
 font-style : italic;
}

/* image container */
.container-r {
  text-align: center;
  align-items: center; 
  float: right;
  padding: 10px;
}
.container-l {
  text-align: center;
  align-items: center; 
  float: left;
  padding: 10px;
 } 
.container {
  float: none;
  padding: 10px;
  margin: 0 2px;
  width: 100%;
}
.containerj {
	 display: flex;
   justify-content: center;
   }

.image{
    float: left;
  padding: 5px;
  margin: 0 2px;
}

.imagej{
    float: left;
  padding-top: 10px;
  padding-right: 5px;
  padding-bottom: 0px;
  padding-left: 5px;
  margin-left: 0;
}

/* image container end */

/* menu */

#caps { 
  background: #ffbd82;
  font-family: helvetica, arial, serif;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
}

.wrap {
  display: inline-block;
 
  box-shadow: 0 0 50px #fff;
  margin-top: 40px;
}



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 {
  position: relative;
  background: #2B2B2B;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #0E0E0E;
  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 20px;
  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) {
 
  
  .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;
  }

/* menu ends */
