/*******************************************************************************
* threeColumn.css
* Michael Greenup
*
* This is the "main" CSS file used by the Shire of Cum an Iolair website. 
* Individual sections are imported for easier maintainability.
*******************************************************************************/

@import url(topSection.css);
@import url(leftNavSection.css);
@import url(centerSection.css);
@import url(rightSection.css);
@import url(calendar.css);
@import url(bottomSection.css);

/***************** HTML tag styles *************/ 

body{
  font-family: Arial,sans-serif;
  background-color: #FFFF99;
  color: black;
  line-height: 1.166;	
  margin: 0px;
  padding: 0px 0px 0px 0px;
}

a{
  color: #006699;
  text-decoration: none;
}

a:link{
  color: #006699;
  text-decoration: none;
}

a:visited{
  color: #006699;
  text-decoration: none;
}

a:hover{
  color: #006699;
  text-decoration: underline;
}

h1{
  font-family: Verdana,Arial,sans-serif;
  font-size: 120%;
  color: #006699;
  margin: 0px;
  padding: 0px;
}

h2{
  font-family: Arial,sans-serif;
  font-size: 114%;
  color: #006699;
  margin: 0px;
  padding: 0px;
}

h3{
  font-family: Arial,sans-serif;
  font-size: 100%;
  color: black;
  margin: 0px;
  padding: 0px;
}

h4{
  font-family: Arial,sans-serif;
  font-size: 100%;
  font-weight: normal;
  color: #333333;
  margin: 0px;
  padding: 0px;
}

h5{
  font-family: Verdana,Arial,sans-serif;
  font-size: 100%;
  color: #334d55;
  margin: 0px;
  padding: 0px;
}

img{
  border: none;
}

ul{
  list-style-type: square;
}

ul ul{
  list-style-type: disc;
}

ul ul ul{
  list-style-type: none;
}

label{
  font-family: Arial,sans-serif;
  font-size: 100%;
  font-weight: bold;
  color: #334d55;
}

.bold{
	font-weight: bold;
}

.warning{
	font-weight: bold;
	color: red;
}

.underlined{
	text-decoration: underline;
}

.centered{
  text-align: center;
}