/* CSS Document */
/* Body style with fixed background image repeated horizontally. This is the background gradient */
body {
    background-image: url("images/background.png");
    background-attachment: fixed;
    background-repeat: repeat-x;
	padding-top: 52px;	
    }

/* header styles */	
/* The page header containing site map */
#header {
	background-color: #484848;
	display: block;
	position: fixed;
	top: 0px;
	right: 0px;
	left: 0px;
	border-style: solid;
	border-color: black;
	border-width: 0px 0px 1px 0px;
	
}
/* Menu system hyperlink style */
#links {
	padding: 2px;
	display: block;
    width: 68%;
	margin: auto;
	overflow: hidden;
    
}
#links ul li {
	background-color: #383838;
	margin: 0px;
    display: inline;
    padding: 5px 5px 5px 5px;
	-moz-border-radius:2px; 
	-webkit-border-radius:2px; 
	border-radius:2px;
	
}
#links ul li:hover {
	background-color: black;
}
#links ul li a {
    font-family: arial, Helvetica,sans-serif;
    font-size: 0.7em;
	font-weight: lighter;
    color: #FFFFFF;
}

/* page content style */
/* Page container ID, page content goes in here */
#container {
	display: block;
    background-color: white;
    width: 68%;
    -moz-box-shadow: 0 0 5px #8C8D8D;
    -webkit-box-shadow: 0 0 5px #8C8D8D;
    box-shadow: 0 0 20px #8C8D8D;
    margin: auto;
    

}
/* Page banner ID */
#banner {
	display: block;
    background-image: url("images/banner_c.png");
	background-repeat: no-repeat;
    width: 100%;
    height: 205px;
	overflow: hidden;
}
/* banner img for the logo */
#banner img{
	display: block;
	margin-left: 2%;
	border-width: 0px;
	overflow: hidden;
}

/* Sub banner class used for page title/sub titles */
.sub_banner {
	display: block;
    background-image: url("images/banners.png");
	width: 98%;
    height: 35px;
	padding: 1% 1% 0% 1%;
	
}
.sub_banner span{
    color: #12ABE4; 
    font-size: 1em;
    font-family: arial, Helvetica,sans-serif; 
    font-weight: bold;
}
.right {
	float: right;
	width: 50%;
}
.left {
	float: left;
}
/* Home page content classes */
/* Content class to hold the some page content*/
.content {
	display: block;
    width: 100%;
	padding: 5% 0% 5% 0%;

}
/* Left content of the content class */
.content-left {
    float: left;
    width: 45%;
    border-style: solid;
    border-width: 0px 1px 0px 0px;
    border-color: 	#585858;
	padding: 0% 3% 0% 2%;
	overflow: hidden;
    


}
/* Right content of the content class */
.content-right {
    float: right;
    width: 46%;
	padding: 0% 2% 0% 1%;
    overflow: hidden;
}
.home_image {
	border: 1px solid black;
	display: block;
    margin: auto;
	padding: 15px;
    -moz-border-radius: 7px; 
	-webkit-border-radius: 7px; 
	border-radius: 7px;
}


/* Other Page style for subject pages e.g training, covert, etc */
/* Top section of the content */
#page_content_top {
	display: block;
    width: 92%;
    padding: 4%;
    overflow: hidden;
}
/* Photo position in the top content section */
#page_content_top_photo {
    float: right;
    width: 50%;
}
#page_content_top_photo img {
    border: 1px solid black;
	display: block;
    margin: auto;
}
/* Left position for content in the top content section */
#page_content_top_left {
    float: left;
    width: 50%;
	overflow: hidden;
    
}
/* Bottom content for the page */
#page_content_bottom {
	display: block;
    width: 92%;
	padding-left: 4%;
	padding-right: 4%;
	margin: 0px 0px 60px 0px;
}


/* Page text style classes and tags */
/* Sub title for each page */
.title {
    font-family: arial, Helvetica,sans-serif;
    font-size: 1em;
    text-decoration: underline; 
}
/* Content paragraph class */
.content_par {
    font-family: arial, Helvetica,sans-serif;
    font-size: 0.9em;
}
a.link{
    font-family: arial, Helvetica,sans-serif;
    font-size: 0.9em;
	
}
/* Bullet point style class */
.point li {
    font-family: arial, Helvetica,sans-serif;
    font-size: 15px;
}
.form input, textarea {
	border: 1px solid #B0B0B0;
}
/* Page footer */
#footer {
	display: block;
    background-image: url("images/footer.png");
    width: 98%;
	padding: 2% 1% 2% 1%;
}
/* Footer text class */
.footer_par {
    font-family: arial, Helvetica,sans-serif;
    font-size: 15px;
    color: #B8B8B8;
}
.footer_par a {
    color: #FFFFFF;
    font-size: 15px;
}
.footer_par a:hover {
    color: #CCCC00;
    font-size: 15px;
}