@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/



/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgba(204,204,204,0.2);
    margin: 1em 0;
    padding: 0; 
}
/* image hover modifier
img {
	-webkit-filter: grayscale(85%);
	filter: grayscale(85%);
}
img:hover {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}
*/
::-webkit-scrollbar {
    height: 12px;
	width: 12px;
	background: rgba(102,102,102,0.1);
    }
::-webkit-scrollbar-thumb {
    background: rgba(204,204,204,0.1);
    -webkit-border-radius: 1ex;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-corner {
    background: rgba(153,153,153,0.1);
}


.fluid {
	clear: both;
	width: 900px;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 925px;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
	background-image: url("images/bgimage2025.jpg");
	background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: top, center; 
}
#div1 {
	background-color: rgba(204,204,204,0.2);
}
#div2 { height: 26px;
		overflow-y: visible;
		overflow-x: visible;
}
#div3 { height: calc(100vh - 125px); 
		overflow-y: auto;
		overflow-x: visible;
}
#div4 {
	background-color: rgba(204,204,204,0.2);
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 925px;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
	background-color: rgba(204,204,204,0.2);
}
#div2 { height: 26px;
		overflow-y: visible;
		overflow-x: visible;
}
#div3 {
	height: calc(100vh - 125px);
	overflow-y: auto;
	overflow-x: visible;
}
#div4 {
	background-color: rgba(204,204,204,0.2);
}
.zeroMargin_tablet {
margin-left: 0;
}
.hide_tablet {
display: none;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
	width: 925px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 { background-color: rgba(204,204,204,0.2)
		
}
#div2 { height: 26px;
		overflow-y: visible;
		overflow-x: visible;
}
#div3 {
	height: calc(100vh - 125px);
	text-align: left;
	font-size: small;

}
#div4 {
background-color: rgba(204,204,204,0.2);
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
