@charset "utf-8";
/* CSS Document */

/* Tips for Elastic layouts
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible
for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element
or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size),
this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

/* Genral Settings */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
	color: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}

img {max-width:100%;}
td {padding:0px; vertical-align:top;}
li {margin-top:5px;}

/* Set links not to underline */
a {text-decoration:none;}

/* Set link colours */
a {
  color: #2c87f0;
}
a:visited {
  color: #2c87f0;
}
a:hover, a:active, a:focus {
  color:#c33;
}

.main #container {
	width: 100%;  /* 60% will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background-color: #FFFFFF;
	font-size: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #333;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* Header Title and Menu Settings */
.main #headerTable {
	border: 0;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #headerLeft {background-color:#E0ECF8; color:#E0ECF8; width:2%;}
.main #header {background-color:#E0ECF8; float:top; height:auto; width:auto; margin-left:0px; margin-top:0px; padding:0px;}

.main #titleTable {
	border: 0;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
	padding-top: 0px;
	padding-bottom: 0px;
	text-align: center;
	font-size: 130%;
	font-weight: bold;
}

.main #menu {
	/* padding: 0 10px 5px; 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header
	instead of text, you may want to remove the padding. */
	width: auto;
	border-style: solid;
	border-width: thin;
	border-color: #000000;
	border-collapse: collapse;
	background-color: #5882FA;
	color: #FBFBEF;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	padding-right: 0px;
	text-align: center;
}

.admin_button {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	padding-right: 0px;
	background-color: #5882FA;
	color: #FBFBEF;
}
.admin_button:hover {
	background-color: #5882FA;
	color: #FA58F4;
}
.admin_button:visited {
	background-color: #5882FA;
	color: #FBFBEF;
}
/* Main Content general Settings */
.main #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #E0ECF8;
}

.main #mainContent p {
	padding-left: 15px;
	padding-right: 15px;
}

.main #mainContent ul {
	padding-left: 45px;
	padding-right: 15px;
}

.main #firstLine {margin-top: -10px;}

.main #columnBorder {background-color:#E0ECF8; color:#E0ECF8; width:2%;}

/* Home Page Settings */
.main #homeTable {
	border: 1;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #homeHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:96%; margin-left:0px; margin-top:0px; padding:0px;}
.main #homeColumn1 {background-color:#FFFFFF; width:96%; margin-left:0px; margin-top:0px; padding:0px;}

.main #stopPress {
	float: left;
	width: 150px;
	margin-right: 15px;
	margin-bottom: 30px
}

/* Service Page Settings */
.main #serviceTable {
	table-layout: fixed;
	border: 1;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #serviceTable td {
	word-wrap: break-word;
  overflow-wrap: break-word;
}

.main #serviceHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:23%; margin-left:0px; margin-top:0px; padding:0px;}
.main #serviceHeader2 {background-color:#E0ECF8; color:#E0ECF8; width:39%; margin-left:0px; margin-top:0px; padding:0px;}
.main #serviceHeader3 {background-color:#E0ECF8; color:#E0ECF8; width:15%; margin-left:0px; margin-top:0px; padding:0px;}
.main #serviceColumn1 {background-color:#FFFFFF; width:23%; margin-left:0px; margin-top:0px; padding:0px;}
.main #serviceColumn2 {background-color:#FFFFFF; width:39%; margin-left:0px; margin-top:0px; padding:0px;}
.main #serviceColumn3 {background-color:#FFFFFF; width:15%; margin-left:0px; margin-top:0px; padding:0px;}

/* Ticker Tape */
	/* OUTER CONTAINER */
	.tcontainer {
	  width: 100%;
	  overflow: hidden; /* Hide scroll bar */
	}

	/* MIDDLE CONTAINER */
	.ticker-wrap {
	  width: 100%;
	  padding-left: 100%; /* Push contents to right side of screen */
	  background-color: #E0ECF8;
	}

	/* INNER CONTAINER */
	@keyframes ticker {
	  0% { transform: translate3d(0, 0, 0); }
	  100% { transform: translate3d(-100%, 0, 0); }
	}
	.ticker-move {
	  /* Basically move items from right side of screen to left in infinite loop */
	  display: inline-block;
	  white-space: nowrap;
	  padding-right: 100%;
	  animation-iteration-count: infinite;
	  animation-timing-function: linear;
	  animation-name: ticker;
	  animation-duration: 10s;
	}
	.ticker-move:hover{
	  animation-play-state: paused; /* Pause scroll on mouse hover */
	}

	/* ITEMS */
	.ticker-item{
	  display: inline-block; /* Lay items in a horizontal line */
	  padding: 0 2rem;
	}

.admin_button:hover {
	background-color: #5882FA;
	color: #FA58F4;
}


/* Support Us Page Settings */
.main #supportTable {
	table-layout: fixed;
	border: 0;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #supportTable td {
	word-wrap: break-word;
  overflow-wrap: break-word;
}

.main #supportHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:28%; margin-left:0px; margin-top:0px; padding:0px;}
.main #supportHeader2 {background-color:#E0ECF8; color:#E0ECF8; width:32%; margin-left:0px; margin-top:0px; padding:0px;}
.main #supportHeader3 {background-color:#E0ECF8; color:#E0ECF8; width:32%; margin-left:0px; margin-top:0px; padding:0px;}
.main #supportColumn1 {background-color:#FFFFFF; width:28%; margin-left:0px; margin-top:0px; padding:0px;}
.main #supportColumn2 {background-color:#FFFFFF; width:32%; margin-left:0px; margin-top:0px; padding:0px;}
.main #supportColumn3 {background-color:#FFFFFF; width:32%; margin-left:0px; margin-top:0px; padding:0px;}

/* About Us Page Settings */
.main #aboutTable {
	table-layout: fixed;
	border: 1;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #aboutTable td {
	word-wrap: break-word;
  overflow-wrap: break-word;
}

.main #aboutHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:47%; margin-left:0px; margin-top:0px; padding:0px;}
.main #aboutHeader2 {background-color:#E0ECF8; color:#E0ECF8; width:47%; margin-left:0px; margin-top:0px; padding:0px;}
.main #aboutColumn1 {background-color:#FFFFFF; width:47%; margin-left:0px; margin-top:0px; padding:0px;}
.main #aboutColumn2 {background-color:#FFFFFF; width:47%; margin-left:0px; margin-top:0px; padding:0px;}


.main #Testimonials {
	font-family: Times New Roman;
}

.main #aboutPic1 {
	height: auto;
	width: auto;
	margin-left: -10px;
}

.main #aboutPic2 {
	height: auto;
	width: auto;
	margin-left: -10px;
}

.main #caption {
	font-size: 83%;
	margin-left: -10px;
}

/* Contact Page Settings */
.main #contactTable {
	table-layout: fixed;
	border: 0;
	cellpadding: 0;
	cellspacing: 0;
	width: 100%;
	border-collapse: collapse;
}

.main #contactTable td {
	word-wrap: break-word;
  overflow-wrap: break-word;
}

.main #write {
	float: right;
	height: 50px;
	width: 50px
}

.main #email {
	float: right;
	height: 50px;
	width: 50px
}

.main #call {
	float: right;
	height: 50px;
	width: 50px
}

.main #contactColumnBorder {background-color:#FFFFFF; color:#FFFFFF; width:2%;}
.main #contactHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:15%; margin-left:0px; margin-top:0px; padding:0px;}
.main #contactHeader2 {background-color:#E0ECF8; color:#E0ECF8; width:30%; margin-left:0px; margin-top:0px; padding:0px;}
.main #contactHeader3 {background-color:#E0ECF8; color:#E0ECF8; width:47%; margin-left:0px; margin-top:0px; padding:0px;}
.main #contactColumn1Heading {background-color:#FFFFFF; margin-left:0px; margin-top:0px; padding: 0px;}
.main #contactColumn1 {background-color:#FFFFFF; width:15%; margin-left:0px; margin-top:0px; padding-left:0%; padding-top:10px;}
.main #contactColumn2 {background-color:#FFFFFF; width:30%; margin-left:0px; margin-top:0px; padding:0px;}
.main #contactColumn3 {background-color:#FFFFFF; width:47%; margin-left:0px; margin-top:0px; padding-right:20px;}

/* Footer Settings */
.main #mainFooter {background-color:#E0ECF8; color:#3A01DF; height:45px; text-align:center; font-size:75%; width:96%; margin:0px; padding-top:3px;}


/* The following applies if the screen is narrower than 450px
   instead of the normal settings above*/
@media screen and (max-width: 450px) {
/*
	li {
			margin-top: 0px;
			margin-left: -20px;
			margin-right: -10px;
	}
*/
	.main #container {
		width: 100%;  /* 60% will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
		background-color: #FFFFFF;
		font-size: 80%;
		margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		border: 0px solid #333;
		text-align: left; /* this overrides the text-align: center on the body element. */
	}

		.main #titleTable {
		border: 0;
		cellpadding: 0;
		cellspacing: 0;
		width: 100%;
		border-collapse: collapse;
		padding-top: 0px;
		padding-bottom: 0px;
		text-align: center;
		font-size: 100%;
		font-weight: bold;
	}

	.main #menu {
		/* padding: 0 10px 5px; 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header
		instead of text, you may want to remove the padding. */
		width: auto;
		border-style: solid;
		border-width: thin;
		border-color: #000000;
		border-collapse: collapse;
		background-color: #5882FA;
		color: #FBFBEF;
		font-size: 60%
		font-weight: bold;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 0px;
		padding-right: 0px;
		text-align: center;
	}

	.main #mainContent p {
		Font-size: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.main #firstLine {
		margin-top: -10px;
/*		margin-left: -20px;   */
	}

/* Home Page Settings */
	.main #stopPress {
		float: left;
		height: 40px;
		margin-right: 15px;
		margin-bottom: 30px
	}

/* Service Page Settings */
	.main #serviceHeader1 {background-color:#E0ECF8; color:#E0ECF8; width:23%; margin-left:0px; margin-top:0px; padding:0px;}
	.main #serviceHeader2 {background-color:#E0ECF8; color:#E0ECF8; width:34%; margin-left:0px; margin-top:0px; padding:0px;}
	.main #serviceHeader3 {background-color:#E0ECF8; color:#E0ECF8; width:20%; margin-left:0px; margin-top:0px; padding:0px;}
	.main #serviceColumn1 {background-color:#FFFFFF; width:23%; margin-left:0px; margin-top:0px; padding:0px;}
	.main #serviceColumn2 {background-color:#FFFFFF; width:34%; margin-left:0px; margin-top:0px; padding:0px;}
	.main #serviceColumn3 {background-color:#FFFFFF; width:20%; margin-left:0px; margin-top:0px; padding:0px;}

/* About Us Page Settings */
	.main #aboutPic1 {
		height: auto;
		width: auto;
		margin-left: -20px;
		margin-right: -20px
	}

	.main #aboutPic2 {
		height: auto;
		width: auto;
		margin-left: -20px;
		margin-right: -20px
	}

	.main #caption {
		font-size: 83%;
		margin-left: -20px;
		margin-right: -20px
	}

/* Contact Page Settings */
	.main #write {
		float: right;
		height: 40px;
		width: 40px
	}

	.main #email {
		float: right;
		height: 40px;
		width: 40px
	}

	.main #call {
		float: right;
		height: 40px;
		width: 40px
	}
