body {
	margin: 0;
	padding: 0;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
	margin-left: 100px;
	margin-right: 100px;
}

a:link {
	text-decoration: none;
	font-weight: bold;
} 

h1, h2, h3 {
	font-weight: normal;
	color: #000000;
}

h1 {
	letter-spacing: -1px;
	font-size: 2.2em;
}

h2 {
	font-size: 1.4em;
}

h3 {
	font-size: 1.2em;
}

p, ul, ol {
}

p {
}

ul {
}

ol {
}

a {
	color: #9A0000;
}

a:hover {
	text-decoration: none;
}

embed {
        height: 100%;
        width: 30%;
        background-color: #DDDDDD;
}

small {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #000000;
}

hr {
	border: 0;
	width: 100%;
	color: #9A0000;
	background-color: #9A0000;
	height: 4px;
}

/* column container */
.colmask {
	position:relative;		/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
}
/* common column settings */
.colright,
.colmid,
.colleft {
	float:left;
	width:100%;			/* width of page */
	position:relative;
}
.col1,
.col2,
.col3 {
	text-align:left;
	float:left;
	position:relative;
	padding:0 0 1em 0;		/* no left and right padding on columns, we just make them narrower instead 
					   only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}
/* 3 Column blog style settings */
.blogstyle {
}
.blogstyle .colmid {
	right:33%;			/* width of the right column */
}
.blogstyle .colleft {
	right:33%;			/* width of the middle column */
}
.blogstyle .col1 {
	width:33%;			/* width of center column content (column width minus padding on either side) */
	left:67%;			/* 100% plus left padding of center column */
}
.blogstyle .col2 {
	width:33%;			/* Width of left column content (column width minus padding on either side) */
	left:67%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.blogstyle .col3 {
	width:33%;			/* Width of right column content (column width minus padding on either side) */
	left:67%;			/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}

.title {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 25px;
  background-color: #000000;
  color: #dedede;
  font-size: 18px;
}


.fixed-nav-bar {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
  background-color: #9A0000;
}

/* The element at the top of the page right after the fixed navigation bar
   MUST have sufficient top margin or else it will be covered by the bar */
.content {
  margin-top: 100px;
}

/* Example responsive navigation menu  */
.fixed-nav-bar li, .fixed-nav-bar a { 
  height: 50px;
  line-height: 50px;
}
.menu {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}
.menu a, .menu a:visited {
  color: #dedede;
}
.menu a:hover, .menu a:target {
  color: #ffffff;
}
.menu-items {
  display: inline-block;
}
.sitename {
  display: inline-block;
  margin-right: 20px;
  margin-left: 10px;
}
a.sitename, a:visited.sitename {
  color: #e0e0e0;
}
.menu-items li {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
}
.menu-items a {
  text-decoration: none;
    font-size: 13px;
}
.show, .hide {
  display: none;
  padding-left: 15px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center left;
  color: #dde1e2;
}
.show {
  background-image: url(assets/down-arrow-icon.png);
}
.hide {
  background-image: url(assets/up-arrow-icon.png);
}

@media only screen and (max-width: 800px) {
  .menu { 
    position: relative;
    width: 100%;
  }
  .sitename {
    position: absolute;
    top: 0;
    left: 15px;
    margin-left: 0px;
  }
  .menu-items {
    display: none; 
    width: 200%;
    margin-top: 50px;
    background-color: #008378;
  }
  .menu-items li {
    display: block;
    text-align: center;
  }
  .show, .hide {  
    position: absolute;
    top: 0;
    right: 15px;
  }
  .show {
    display: inline-block;
  }
  .hide {
    display: none;
  }
  #menu:target .show {
    display: none;
  }
  #menu:target .hide, #menu:target .menu-items {
    display: inline-block;
  }
}

@media only screen and (max-width: 220px) {
  .sitename, .show, .hide {
    font-size: 25px;
  }
}

footer {
  bottom:0;
  left:0;
  background-color: #000000;
  color: #DEDEDE;
}
