﻿/*
CSS for a2b site
*/
body {
  font-family: Verdana, Helvetica, Arial, sans-serif;
  background-color: #EBF1FA;
  line-height: 125%;
  padding: 0;
  margin: 0;
}

h1, h2, h3 {
  font-family: "Comic Sans MS", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 275%;
  font-weight: bold;
  color: black;
  padding-top: 80px;
  padding-bottom: 55px;
  padding-left: 0;
  margin: 0;
  background-color: white;
}

.logo {
  float: left;
  margin: -70px 0px 0px 0px;
}

.mitel {
  float: right;
  margin: -120px 10px 15px 25px;
}

h2 {
  color: #003C69;
  font-size: 130%;
  font-weight: bold;
  padding-top: 20px;
}

h3 {
  color: #003C69;
  font-weight: normal;
}

li {
  color: #003C69;
  font-size: small;
  list-style-type: none;
}

p {
  font-size: small;
  color: #003C69;
}

#tagline p {
  font-style: italic;
  font-weight: bold;
  font-family: Georgia, Times, serif;
  color: white;
  background-color: #003C69;
  border-top: 3px solid #FF6600;
  border-bottom: 3px solid #FF6600;
  padding-top: .3em;
  padding-bottom: .3em;
  padding-left: 1.5em;
  margin: 0;
 }

#bodycontent {
  
  padding-right: 10px;
}

.cabinet {
  float: right;
  margin: 0px 10px 15px 30px;
}

.maint1 {
  float: left;
  margin: 0px 15px 0px 0px;
}

.maint2 {
  float: right;
  margin: 0px 10px 10px 10px;
}

.training {
  float: right;
  margin: 20px 10px 10px 10px;
}

a {
  font-weight: bold;
}

a:link {
  color: #003C69;
}

a:visited {
  color: purple;
  }

a:hover {
  text-decoration: none;
  color: #003C69;
  background-color: white;
}

a:active {
  color: white;
  background-color: #003C69;
}

#navigation {
  width: 180px;
  height: 500px;
  background: #9CBAE3;
}

.nav {
  padding-top: 15px;
}

.mitellogo {
  margin-top: 30px;
}


h2, ul {
  margin-top: 15px;
}

#header {
  border-top: 1px solid #FF6600;
}






 
/*
This section deals with the position of items on the screen.
It uses absolute positioning - fixed x and y coordinates measured from the
top-left corner of the browser's content display.
*/

#navigation, #bodycontent, #header, #tagline {
  position: absolute;
}

#tagline {
  top: 133px;
  width: 100%;
}

#navigation, #bodycontent {
  top: 168px;
}

#bodycontent {
  left: 200px;
}

#header {
  width: 100%;
}
 
