/*------------------------------------------------------------------------------------------------------*/
/*							DO NOT TOUCH THE SETTING BETWEEN THESE FRAMES! 								*/
/*------------------------------------------------------------------------------------------------------*/

/* This makes sure all pages use the same font-family, padding and margin */
* {
	margin: 0px;
	padding: 0px;
	font-family:  arial, verdana, georgia, times, "times new roman", serif;
}

html {
	height: 100%;
}

/* This renders the nice background, backgroundcolor, plus defines the font-size and font-color of the complete site */
body {
	background: #292B2C url("/images/common/bgtexturecenter.gif") repeat-y top center;
	text-align: center;
	font-size: 12px;
	color: #121415;
}

/* Defines the width and placement of the actual page setup */
#container {
	margin: 0 auto;
	text-align: left;
	width: 740px;
	background-color: #fff;
}

/* Defines the actual text area of the page */
#content {
	width: 100%;
	float: left;
	padding-top: 14px;	/* created space between navigation and content area - has to be done this way since FF will not accept margin/padding in #space, #navigation or #picture!  */
	background-color: #fff;
}

/*------------------------------------------------------------------------------------------------------*/

/* Defines how paragraph <p></p> are displayed */
#content p {
	padding: 0 0 .7em 0;						
}

/* Defines how <strong></strong> fonts are rendered */
#content strong { 						
	font-size: 12px;
	color: #000;
}	

/* Defines how h3 fonts are rendered */
#content h3 {
	font-size: 24px;
	padding: 0 0 .5em 0;
	color: #292B2C;
}	

/* Float elements to the right */
#content .floatright {
	float: right;
	margin: 0 0 2px 10px;
}

/* Float elements to the left */
#content .floatleft {
	float: left;
	margin: 0 10px 2px 0;
}

/* Image border: Makes sure all images have a nice border - no border wanted? use class="noborder" (see below)  */
#content img {
	border: 1px solid #291B59;
}

/* If no image border is wanted, use this class - etc.: <img src="" class="noborder"> */
#content img.noborder {
	border: 0px;
}

/* Creates space above navigation since FireFox will not accept padding/margin on #navigation */
.space { 
	height: 14px;
}


/* Create a horizontal ruler */
#content hr {
	border: 0px;
	height: 1px;
	border: 1px solid #cdcdcd;
	margin-top: 1em;
	margin-bottom: 1em;
}

/* class for hiding/expanding text - used inside NyServer.html */
.contentwrap {
	display: none; 
	margin: 20px 20px 20px 20px; 
	padding: 10px; 
	border: 1px solid #efefef; 
	background-color: #f7f7f7;
}
