/* ----------------
		window
------------------*/
.dhtmlwindow{
	position: absolute;
	border: 2px solid black;
	visibility: hidden;
	background-color: white;
}

.dhtmlwindow img {
	border: none;
	margin: 0;
	float: none;
}

.drag-handle{ /*CSS for Drag Handle*/
	padding: 1px;
	text-indent: 3px;
	font: bold 14px Arial;
	background-color:  #88a9c1;
	color: white;
	cursor: move;
	overflow: hidden;
	width: auto;
}

.drag-handle .drag-controls{ /*CSS for controls (min, close etc) within Drag Handle*/
	position: absolute;
	right: 1px;
	top: 2px;
	cursor: hand;
	cursor: pointer;
}


.drag-contentarea{ /*CSS for Content Display Area div*/
	border-top: 1px solid #A8D1EF;
	background-color: white;
	color: black;
	height: 150px;
	padding: 2px;
	overflow: auto;
}

.drag-statusarea{ /*CSS for Status Bar div (includes resizearea)*/
	border-top: 1px solid gray;
	background-color: #F8F8F8;
	height: 13px; /*height of resize image*/
}


.drag-resizearea{ /*CSS for Resize Area itself*/
	float: right;
	width: 13px; /*width of resize image*/
	height: 13px; /*height of resize image*/
	cursor: nw-resize;
	font-size: 0;
}

/* ----------------
		content
------------------*/
div.left {
	float: left;
	margin: 5px;
	height: 350px;
	vertical-align: middle;
	text-align: center;
	background: #FFF;
}

div.left img {
	width: 300px;
	border: 1px solid #34414a;
	}

div.right {
	background: #FFF;
	
	}
div.website {
	background: #34414a;
	padding: 4px;
	text-align: center;
	margin-bottom: 20px;
	width: 294px;
	color: #FFF;
}
div.website a {
	color: #FFF;
}
div.website a:hover {
	color: #A8D1EF;
}
.dhtmlwindow a.link {
	margin-right: 10px;
}

/* numbers */
span.number {
	display: inline-block;
	padding: 15px;
	background: url(../images/circle.gif) center;	
	color: #34414a;
}
span.number a,
span.number a:link,
span.number a:visited {
	text-decoration: none;
}
span.this,
a:hover span.number {
	color: #FFF;
	background: url(../images/circle2.gif) center;
}
div.pages {
	display:block;
	position: absolute;
	bottom: 10px;
	right: 5px;
}
/* ----------------
		toggle divs
------------------*/
div#p1, div#p2, div#p3 {
	background: #FFF;
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 100;
}
div#p2, div#p3
{
  	display: none;
  }
  
