﻿.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 900px;
	height:187px;
		
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.items div {
	float:left;
	width:940px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin: 0px 0px 0px 21px;
	background-color:#fff;
	padding:2px;	
	width:265px;
	height:180px;
	border: solid 1px #CCC;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .template
{
	float:left;
	margin: 0px 0px 0px 23px;
	background-color:#284993;
	padding:2px;	
	width:265px;
	height:180px;
	border: solid 1px #CCC;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .blogposttemplate
{
	float:left;
	margin: 0px 0px 0px 23px;
	background-image:url('images/LatestBlogPost.jpg');
	background-repeat:no-repeat;
	padding:2px;	
	width:265px;
	height:180px;
	border: solid 1px #CCC;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable .twitterposttemplate
{
	float:left;
	margin: 0px 0px 0px 23px;	
	padding:2px;	
	width:265px;
	height:180px;
	border: solid 1px #CCC;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

.scrollable #twitter
{
	float:left;
	width:265px;
	height:180px;
}

.blogpost a
{
	color: #284993;
	position:absolute;
	width: 182px;
	height: 85px;	
	margin-top: 5px;
	margin-left: 80px;
	font-family:Segoe UI;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse 
{
		background:url(images/horiz_arrow.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin: 70px 0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -30px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-30px -30px; }
a.right:active 	{ background-position:-60px -30px; } 


/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-30px 0; }
a.left:active  	{ background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	


.latestpost
{
	position:absolute;
	margin-top:70px;
	margin-left:10px;
	color: #FFF;
	text-decoration:none;
	font-size: 15px;
	width:260px;
	height:180px;
}

.latestposttitle
{
	position:absolute;
	margin-top:0px;
	margin-left:10px;
	color: #FFF;
	font-family:Segoe UI;
	font-size: 27px;

}

.latestpost a
{
	text-decoration:none;
	color:#FFF;
}

.latestpostdate
{
	color:#0099FF;
	text-decoration:none;
	position:absolute;
	margin-top:150px;
	margin-left:10px;
}


.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.contentWrap
{
	
}


.smalltooltip
{
	display:none;
	background:transparent url(images/white_arrow.png);
	font-size:13px;
	height:70px;
	width:160px;
	padding:25px;
	color:#284993;	
}
