
/* Initialization starts here */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline:0;
	font-weight:inherit;
	font-style:inherit;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	color:black;
	background:white;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Initialization ends here */


/* Clearfix starts here */
.clearfix {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0px;
    height: 0px;
}

.clearfix:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0px;
    line-height: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
}

.clearBoth {
    clear: both;
}

.clear {
	clear:both;
}

/* Clearfix ends here */


/* Main css starts here */


html { 
	/* To cover entire screen, do not place this in body section */
	/*
	background: url(../img/background.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	*/
}


body{
	/* font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Helvetica, Arial, sans-serif; */
	font-family: Arial, Helvetica, sans-serif;
	/*background: url(../img/bg.jpg); */
	/*background-color: #8FC344; */
	/*background-color: #93cf38; */
	/*background-color: #DFDFD0; */
	background-color: #ebebeb;
}

h1{

}

h2{
	color: #245A65; /* Bluish */
	font-size: 1.5em;
	margin: 20px 0px 10px;
}

h3{
	/*color: #006600; /* Greenish */
	color: #4b5286; /* Bluish */
	font-size: 1.5em;
	font-weight: bold;
	margin: 20px 0px 15px;
}

h4{
	/*color: #008C00; /* Greenish */
	color: #e38e00;
	font-size: 1.1em;
	/* font-weight: bold; */
	font-style: italic;
	letter-spacing: -1px;
	line-height: 120%;
	margin: 20px 0px 20px;
}

strong{
	font-weight:bold;
}

i{
	font-style:italic;
}

sup {
  vertical-align: super;
  font-size: 50%;
}

.maxWide  {
    max-width: 960px;
	/* background-color: orange; */
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

#topHeader {
    /* background-color: blue; */
    text-align: center; /*Positions Logo Image to Center, by Notiz*/
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 12px;
    font-style: normal;
    padding-top: 30px;
	/* padding-bottom: 5px; /* Offset before menuHeader (Menu), by Notiz*/
    color: green;
    /* border-bottom: 1px dotted #FFF; */
}

#topHeaderLogo img{
    /*width: 200px; /*Added by Notiz*/
	width: 100%;
	/* padding: 10px; */
}



#topHeaderLanguage  {
    display: none; /*Hide Language Options, by Notiz*/
	float: left;
    font-size: 14px;
	padding: 10px 0 0 3px;
	color: #245A65; /* Bluish, same as h2 */
}

#topHeaderLanguage a {
	color: #ff6d00; /* Orange */
	text-decoration: none;	
}

#topHeaderLanguage a:hover {
	color: #f00; /* Red */
}


#menuHeader {
    /*height: 65px; /*Height Offset before bannerSection, by Notiz*/
	padding-bottom: 25px; /* Offset before bannerSection, by Notiz*/
    /* background-color: green; */
}
	
@supports(position:sticky){  /* checks if browser supports sticky positioning, by Notiz*/
	#menuHeader {
		position: -webkit-sticky;
		position: sticky;
		z-index: 1000; /*set it on top of everything (Nivo slider e.t.c.), by Notiz*/
		top: 0px;
	}

}

#menuHeader  h2{
    display: none; /*Hide Page Description, by Notiz*/
	padding: 0px 0px 5px 3px; /* Added by Notiz*/
}

#bannerSection {
    /* background-color: yellow; */
    /* height: 350px; */
    /* border-bottom: thin solid #FFF; */
}

#innerBanner  img{
    width: 100%; /*Added for responsive image size by Notiz*/
	/* display: none; /*Temporarily hide by Notiz*/
}

#contactMap {
    width: 100%; /*Added for responsive image size by Notiz*/
    height: 320px;
	border: 1px dashed #C0C0C0;
	/* display: none; /*Temporarily hide by Notiz*/
}

#contactMap iframe{
	width:100%;
	height:100%;
}

#contentSection {
    /* background-color: gray; */
	background: rgba(255,255,255,0.5); /* Sets transparency level of main content background, by Notiz */
    /* height: 350px; */
    margin-top: 10px; /* Use this to set content distance (space) from Banner, by Notiz */
	padding: 20px 20px 0px; /* Left-Right padding shows when < 960 px, by Notiz */
    border-bottom: 0px solid #FFF;
	max-width:920px;
	margin-right: auto;
    margin-left: auto;
}

#contentSection  h2{
	display: none; /*Hide Page Description, by Notiz*/
	padding: 0px 0px 15px 3px; /* Added by Notiz*/
}


#contentSection ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

#contentSection ul li {
    background-image: url(../img/listIcon.png);
    background-repeat: no-repeat;
    background-position: 0px 5px;
	line-height: 120%;
    padding-left: 18px;
	padding-bottom: 10px; /* Space between items, by Notiz */
}

#contentMain {
	float: left;
	width: 65%;
	padding-left: 25px;	
	padding-right: 45px; /* Space between contentMain and contentAside, by Notiz */
}

#contentAside {
	float: left;
	width: 25%;
	/* margin: 0px 10px 80px; */
	/* display: none; /*Temporarily hide by Notiz*/
}

#contentAside  img{
    width: 100%; /*Added for responsive image size by Notiz*/
	padding: 10px 0px 25px;
	/* display: none; /*Temporarily hide by Notiz*/
}

#contentWide {
	float: left;
	padding-left: 25px;
	padding-right: 25px;
	/* display: none; /*Temporarily hide by Notiz*/
}

#contentMain p, #contentAside p, #contentWide p{
	line-height: 120%;
	padding-bottom: 15px; /* Space between paragraphs, by Notiz */
}

.fRight{
	float: right;
	width: 45%;
	padding: 0px 0px 25px 50px;
}

.fRight  img{
    width: 100%; /*Added for responsive image size by Notiz*/
	padding: 10px 0px 25px;
	/* display: none; /*Temporarily hide by Notiz*/
}

.hiddenText{ /* Use for large dummy text trick to push fRight to the right by Notiz */

	color: white;
	height:0;
	
	opacity: 0;
	filter: alpha(opacity=0); /* For IE8 and earlier */
	
	cursor: default; /*Added for disabling select cursor icon by Notiz*/
	
    -webkit-touch-callout: none; /*Added for disabling select option by Notiz*/
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
	-o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.galleryThumbs img{
	float: left;
	width: 27%;
	padding-top: 15px;
	padding-left: 37px; /* Space between columns, by Notiz */
	padding-bottom: 22px; /* Space between columns, by Notiz */
	
    -webkit-transition: all 0.8s ease; /* Safari and Chrome */
    -moz-transition: all 0.8s ease; /* Firefox */
    -ms-transition: all 0.8s ease; /* IE 9 */
    -o-transition: all 0.8s ease; /* Opera */
    transition: all 0.8s ease;
}

.galleryThumbs:hover img{
    -webkit-transform:scale(1.25); /* Safari and Chrome */
    -moz-transform:scale(1.25); /* Firefox */
    -ms-transform:scale(1.25); /* IE 9 */
    -o-transform:scale(1.25); /* Opera */
     transform:scale(1.25);
}

 #noListIcon ul li {
    background-image: none;
	line-height: 120%;
    padding-left: 0px;
	padding-bottom: 10px; /* Space between items, by Notiz */
}

#preFooterImg {

	padding: 40px 0px 0px;
	border-bottom: 2px solid #4b5286;
	overflow: hidden;
	
	
	
}

div#footer {
	/*
	clear: both;
	*/
	
	/* background-color: #BEDAE8; */
	background-position: center top;
	min-height: 60px;
	padding: 40px 20px 15px;  /* Left-Right padding shows when < 960 px, by Notiz */
	/* border-top: 1px solid #398A9D;
	border-bottom: 1px solid #398A9D;
	color: #245A65; */
	color: #4b5286;
	text-align: center;
	text-shadow: 1px 1px 1px #fff;
}


.footerBlock {
	float: left;
	width: 33.33%;
	text-align: left;
}

a, a:visited {
	/*color: #27D; */
	/*color: #ff6d00; /* Orange */
	color: #000;
	text-decoration: none;
}

a:hover, a:active {
	/*color: #f00; /* Red */
	color: #000;
	text-decoration: none;
}

/*
Back to top button 
*/
#backToTop {
	display: block;
	top: 80%;  /*Defines vertical position of button, by Notiz*/	
	background: none repeat scroll 0% 0% #F7F7F7;
    border: 1px solid #CCC;
    border-radius: 5px;
    bottom: 10px;
    color: #333;
    cursor: pointer;
    display: none;
    height: 30px;
    line-height: 25px; /*Defines vertical position of text, by Notiz*/
    padding: 5px;
    position: fixed;
    right: 10px; /*Defines button offset from Right, by Notiz*/
    text-align: center;
    width: 100px; /*Defines button width, by Notiz*/
    z-index: 100;
	letter-spacing: 1px;
	margin-bottom: 5px;

}
#backToTop a {
	/*
	width: 108px;
	display: block;
	text-align: center;
	 */
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #003300; /*Text Color*/
	/* background color transition */
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	transition: 0.5s;
}

#backToTop a:hover {
	color: #333; /*Hover Text Color*/
	opacity: 0.5;
}





@media screen and (max-width: 960px) {

  
}

@media screen and (max-width: 640px) {


#topHeader {
    padding-top: 15px;
	/* padding-bottom: 5px; /* Offset before menuHeader (Menu), by Notiz*/
}

#menuHeader {
	padding-bottom: 15px; /* Offset before bannerSection, by Notiz*/
}

#contentMain, #contentAside, #contentWide, .fLeft{
	float: none;
	width: auto;
	padding: 0px;
    text-align: justify; /*Added for justifying text both sides when max-width is 640px*/
}

ul {
	text-align: left; /*Added for exclusion of justifying list text both sides when max-width is 640px*/
}

#contentAside  img{
	display: block; /*Added for centering image by Notiz (1 of 2)*/
	margin: 0 auto; /*Added for centering image by Notiz (2 of 2)*/
	/* text-align: center; /*Added as an alternative to position Image to Center, by Notiz*/
	float: none;
    width: 80%; /*Added for responsive image size by Notiz*/
	padding: 10px 0px 25px;
	/* display: none; /*Temporarily hide by Notiz*/


}

.fRight, .fRight  img{
	display: none;
}

.hiddenText{ 
	display: none;
}

.galleryThumbs img{
	width: 38%;
	padding-left: 30px;
}

.footerBlock{
	float: none;
	width: 100%;
	padding-bottom: 25px;
}

#contactMap {
    height: 180px;
	/*display: none; /*Temporarily hide by Notiz*/
}

}

@media screen and (max-width: 440px) {

#topHeader {
    padding-top: 10px;
	/* padding-bottom: 5px; /* Offset before menuHeader (Menu), by Notiz*/
}

#menuHeader {
	padding-bottom: 10px; /* Offset before bannerSection, by Notiz*/
}

ul {
	text-align: left; /*Added for exclusion of justifying list text both sides when max-width is 440px*/
}

}
