/*

  I do this in every stylesheet, it removes padding and margins for everything
  so i can be more specific later on with paragraphs and headings

*/

* {
  padding: 0;
  margin : 0;
}


/*

  Will center align #container in IE only
  However, anything inside container will also be centered.
  Also, i set a default font for the entire document here

*/

body {
  background: #ffffff url(background.jpg);
  text-align: center;
  font-family: Arial;
  font-size: 10pt;
  color: #442700;
}

/*

  margin: 0 auto;     does the job in FF.
  text-align: left;   should fix IE issue mentioned above

*/

#container {
  width: 800px;
  margin: 0 auto;
  text-align: left;

}

#text {
  padding: 20px;
}

#text2 {
  padding: 5px;
}

td { font-size: 12px; }

/*
  Links
  a - all links
*/

 a.menuLink {
   font-weight : bold;
   font-family: arial;
   font-size: 8pt;
   color : #ffffff;
   text-decoration: none;
   padding : 10px;
 }

 a.menuLink:hover {
   font-weight : bold;
   font-family: arial;
   font-size: 8pt;
   color : #dddddd;
   padding : 10px;
 }

a.text:link { COLOR: #E28A24; TEXT-DECORATION: none; font-weight: bold }
a.text:visited { COLOR: #E28A24; TEXT-DECORATION: none; font-weight: bold }
a.text:active { COLOR: #E28A24; TEXT-DECORATION: none }
a.text:hover { COLOR: #7D5B2E; TEXT-DECORATION: none; font-weight: bold }

a.textbig:link { COLOR: #E28A24; TEXT-DECORATION: none; font-weight: bold; font-size: 12pt }
a.textbig:visited { COLOR: #E28A24; TEXT-DECORATION: none; font-weight: bold; font-size: 12pt }
a.textbig:active { COLOR: #E28A24; TEXT-DECORATION: none; font-size: 12pt }
a.textbig:hover { COLOR: #7D5B2E; TEXT-DECORATION: none; font-weight: bold; font-size: 12pt }

a.text2:link { COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold }
a.text2:visited { COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold }
a.text2:active { COLOR: #ffffff; TEXT-DECORATION: none }
a.text2:hover { COLOR: #E60122; TEXT-DECORATION: none; font-weight: bold }

/*
  Headings
*/

h1 { 
  font-size: 20pt; color:#7D5B2E;
  
}
h2 { 
  font-size: 16pt; color:#7D5B2E;

}
h3 { 
  font-size: 14pt; color:#7D5B2E;

}
h4 { 
  font-size: 7pt; color:#002B51;

}
h5 { 
  font-size: 24pt; color:#E28A24;
  
}


}

/*
  Highlights to text
*/


p.hilite{ 
  font-size: 10pt; color:#7D5B2E; 
  font-weight: bold;
  font-style:italic
}