/* this sets the default margins and paddings to 0 
   for all elements on page  */
* {
  margin:0px;
  padding:0px;
}


/* body */
body {
  margin: 0px; 
  padding: 0px;
  text-align:left;
  background-color:#aacfff;
  background-image: url('./../images/bg_2014_hf.jpg');
  font-weight:normal;
  line-height:1.4;
  font-size:1em;
  font-family:sans-serif;
}

/* keeps linked images from having a hyperlink border */
body img {
  border: 0px;
  text-decoration: none;
}
  
/* wrapper outer */
#wrapper-outer {
  margin:0 auto;             /* centers wrapper on page */
  width:960px;               /* sets width of page for standard 1020 screen */
  border:5px solid silver;   /* puts a border around the wrapper */
  border-radius: 10px;       /* rounnds the corners of the wrapper border */
  background-color:#ffffff;
  background-image:url('');
  text-align:left;
  voice-family: inherit;
}

/* header */
header {
  background-color:white;
  text-align: left;
  width: 960px;
  border:0px solid navy;
}

/* nav used for horizonal drop down bar */
nav {
  background-color:blue;
  background-image: url('./../images/skyblue.jpg');
  width: auto;
  margin:0px;
  padding-bottom:0px;
  border:0px solid cyan;
}

/* nav2 used for single horizonal line bar */
#nav2 {
  background-color: #FFFFFF;
  text-align: center;
  font-size: .90em;
  border-top: 1px solid navy;
  border-bottom: 0px solid navy;
}

#nav2 ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#nav2 li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding-right: .6em;
  padding-left: .6em;
  border-left: 1px solid navy;
  border-right: 0px solid navy;
}

/* wrapper inside */
#wrapper-inside {
  height:inherit;            
  width:950px;
  margin:0 auto;             /* centers the inter wrapper inside the outer wrapper */ 
  border:0px solid red;     
  border-radius: 10px;       /* rounnds the corners of the wrapper border */
  background-color:#ffffff;
  background-image:url('');
  text-align:left;
}

/* col-main */
#col-main {
  border:0px solid green;   
  border-radius: 10px;       /* rounnds the corners of the wrapper border */
  background-color:#ffffff;
  margin:0px 5px 0px 5px;   /* top left bottom right */
  height:inherit;
  float:left; 
}

/* col-left */
#col-left {
  border:0px solid blue;   
  border-radius: 10px;       /* rounnds the corners of the wrapper border */
  background-color:transparent;
  float:left; 
}

/* col-right */
#col-right {
  border:0px solid blue;
  border-radius: 10px;       /* rounnds the corners of the wrapper border */
  background-color:transparent;
  float:right; 
}

/* clear-both **** used to clear the floats so DIVS will align side by side ***** */
#clear-both {
  clear:both;
}

/* footer */
footer {
  width: 960px;
  height:inherit;
  background-color:silver;
  border:0px solid navy;
}

/* HREF links */
a {
  color: blue;
  font-family:sans-serif, verdana, arial, helvetica;
  font-weight: 700;
  text-decoration: none;
}

a:link {
  color:blue;
}

a :visited {
  color:blue;
}

a:hover {
  text-decoration: none;
  color:red;
}

h1, h2, h3, h4, h5, h6 {
  display:inline;
}


/* classes */
.rounded-corners {
 -moz-border-radius: 10px;
 -webkit-border-radius: 10px;
 -khtml-border-radius: 10px;
/*    behavior: url('../styles/border-radius.htc'); */
 border-radius: 10px;
}

.strikeout {
  text-decoration: line-through;
}

.inline {
  display:inline;
}

.left {
  text-align:left;
}

.right {
  text-align:right;
}

.center {
  text-align:center;
}

.justify {
  text-align:justify;
}

.top {
  vertical-align:top;
}
   
.bold {
  font-weight:bold;
}

.small {
 font-size:small;
}

/* here are the standard 16 colors that the older 8-bit graphics cards supported */
.aqua {
  color:#00ffff;
}

.black {
  color:#000000;
}

.blue {
  color:#0000ff;
}

.fuchsia {
  color:#ff00ff;
}

.gray {
  color:#808080;
}

.green {
  color:#008000;
}

.lime {
  color:#00ff00;
}

.maroon {
  color:#800000;
}

.navy {
  color:#000080;
}

.olive {
  color:#808000;
}

.purple {
  color:#800080;
}

.red {
  color:#ff0000;
}

.silver {
  color:#c0c0c0;
}

.teal {
  color:#008080;
}

.white {
  color:#ffffff;
}

.yellow {
  color:#ffff00;
}

.highlightyel {
  background-color: #FFFF40;
  font-weight: bold;
  font-style: italic;
  text-decoration : none;
}

