html *{
	/* Use this css to get "traditional" border-box model to work with mozilla, and IE for mac.
	   Make sure the <!doctype is set for "quirks" mode to use the border-box model IE for win.
	   http://www.quirksmode.org/css/box.html */
 	box-sizing:border-box;
 	-moz-box-sizing:border-box;
}
body{
	margin:0px;
	overflow:hidden;
}
body.report{
	margin-right:10px;
	margin-left:10px;
	margin-bottom:15px;
	overflow:auto;
}

/* when positioning divs with a negative top position, the browser shows scroll bars
because in the normal flow of the document the positioned divs would fall below the 
crease(if they were not positioned}, so this div encapsulates everything and hides 
anything that falls below the crease (assuming you adjust the height to fill the screen */
/*#bodydiv{overflow:hidden;}*/

#veMap{
	position:relative;/* absolute positioning changes the width of the div element to display 
	just around it's content so if you want it to display:block you have to set the width to 100%..see below  */

}
#menuContainer{
	position:relative;/* absolute positioning changes the width of the div element to display */
}
select, input{
	width:200px;
	margin-left: 15px;
}

/* Hides the popup that automatically appears if the
results of a address search return more than on address.
I'm showing the results separately*/
.VE_PlaceList{
	display:none;
	visibility:hidden;
}
a{
	color:darkblue;
}
a.linkButton{
	border: #CBCBCB 1px solid;
	background-color: #F1F7F7;
	text-decoration: none;
	display:block;
	text-align:center;
	color:darkblue;
	font-weight:bold;
	padding:3px;
}

a.linkButton:hover{
	border: #F2935D 1px solid;
	text-decoration:none;
	background-color:white;
}	

a.projectLink{
	color:darkblue;
	font-weight:bold;
	text-decoration:none;
}
a.projectLink:hover{
	color:#F2935D;
	font-weight:bold;
}
.disclaimer{
	font-size:9px;
	display:block;
	text-align:left;
	margin-left:10px;
}

.pinStyle{
    position:relative; 
    background:url('/images/pin3.gif') no-repeat 0 0; 
    height:30px; 
    width:25px; 
    top:-15px; 
    color:#fff; 
    text-align:center; 
    font: bold 12px Arial; 
    cursor: pointer;
}
.pinStyle .text{
    position: relative; top: 2px; 
}

