@font-face {
font-family: 'century-gothic';
src: local('century-gothic'), url(century-gothic.woff) format('woff');
}
@font-face {
  font-family: 'ARIAL';
  src: local('ARIAL'), url(ARIAL.woff) format('woff');
}
/************************************************************************************
GENERAL
*************************************************************************************/
body {
font-family: 'ARIAL';
color: #ffffff;
background : url(bg.jpg) no-repeat;
background-attachment: fixed;
background-size:cover;
}
a {
text-decoration: none;
color: #39c;
}
a:hover {
text-decoration: underline;
color: #39c;
}
h4 {
font-family: 'ARIAL';
color: #ffffff;
}
h1 {
font-size : 32px;
font-family : 'century-gothic';
font-weight: normal;
margin: 0 0 10px;
color: #ffffff;
}
h2 {
font-size : 24px;
font-family : 'century-gothic';
font-weight: normal;
margin: 0 0 0;
color: #ffffff;
}
h3 {
font-size : 24px;
font-family : 'century-gothic';
font-weight: normal;
margin: 40px 0 0;
color: #ffffff;
}
header {
content: " "; 
display: table; 
}
/************************************************************************************
STRUCTURE
*************************************************************************************/
#pagewrap {
width: 880px;
max-width: 94%;
margin: 30px auto 0;
}
#content {
clear: both;
padding-top: 10px;
margin: 10px 0;
}
img.c1 {
 width: 100%;
 }
p.c1 {
text-align: justify;
 width: 100%;
 }
/************************************************************************************
NAV
*************************************************************************************/
.home {
text-decoration: underline;
}
#nav-wrap {
margin-top: 20px;
}
/* menu icon */
#menu-icon {
display: none; /* hide menu icon initially */
}
#nav, 
#nav li {
margin: 0;
padding: 0;
}
#nav li {
list-style: none;
float: left;
margin-right: 5px;
}
/* nav link */
#nav a {
padding: 4px 15px;
display: block;
color: #ffffff;
background: #24222d;
opacity : 0.60000002384185791015625;
filter : alpha(opacity=60); /* For IE8 and earlier */
border: 2px solid transparent;
}
#nav a:hover {
background: #24222d;
opacity : 0.60000002384185791015625;
filter : alpha(opacity=60); /* For IE8 and earlier */
border: 2px solid #999999;
}
/* nav dropdown */
#nav ul {
background: transparent;
padding: 2px;
position: absolute;
border: solid 1px #ccc;
display: none; /* hide dropdown */
width: 200px;
}
#nav ul li {
float: none;
margin: 0;
padding: 0;
}
#nav li:hover > ul {
display: block; /* show dropdown on hover */
}
/************************************************************************************
MOBILE
*************************************************************************************/
@media screen and (max-width: 920px) {
/* nav-wrap */
#nav-wrap {
position: relative;
}
/* menu icon */
#menu-icon {
color: #000000;
width: 42px;
height: 30px;
background: #ffffff url(images/menu-icon.png) no-repeat 10px center;
padding: 8px 10px 0 42px;
cursor: pointer;
border: solid 2px #666666;
display: block; /* show menu icon */
}
#menu-icon:hover {
background-color: #f8f8f8;
}
#menu-icon.active {
background-color: #bbbbbb;
}
/* main nav */
#nav {
clear: both;
position: absolute;
top: 38px;
width: 160px;
z-index: 10000;
padding: 5px;
background: #ffffff;
border: solid 2px #999999;
display: none; /* visibility will be toggled with jquery */
}
#nav li {
clear: both;
float: none;
margin: 5px 0 5px 10px;
}
#nav a, 
#nav ul a {
font: inherit;
background: none;
display: inline;
padding: 0;
color: #666;
border: none;
}
#nav a:hover, 
#nav ul a:hover {
background: none;
color: #000;
}
/* dropdown */
#nav ul {
width: auto;
position: static;
display: block;
border: none;
background: inherit;
}
#nav ul li {
margin: 3px 0 3px 15px;
}
}
@media screen and (min-width: 920px) {
/* ensure #nav is visible on desktop version */
#nav {
display: block !important;
}
}