/* Gallery styles */

#galleryPortfolio {
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #AAAAAA;
	box-shadow:0 0 3px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-topleft:4px;
	-webkit-border-top-left-radius:4px;
	border-top-left-radius:4px;
	
	-moz-border-radius-topright:4px;
	-webkit-border-top-right-radius:4px;
	border-top-right-radius:4px;
	
	border:1px solid white;
	
	background: url(http://www.warrendiggles.com/images/white50.png);
	
	/* The width of the gallery */
	width:800px;
	overflow:hidden;
}

#slidesPortfolio {
	/* This is the slide area */
	height:560px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:800px;
	overflow:hidden;
	margin:0;
	padding:0;
}

.slidePortfolio{
	float:left;
}

.slideText {
	 position:inherit;
	
	 overflow:hide;
	 padding:4px 0 8px 0;
	 background:url(/portfolio/images/panel.png) bottom no-repeat;
	 height:34px;
}

.slideText h3 {
	 font-size: 18px;
	 color:black;
	 font-weight: normal;
	 margin: 0;
	 padding: 1px 20px 5px 20px;
}

.slideText h3.photo {
	 font-size: 18px;
	 color:black;
	 font-weight: normal;
	 margin: 0;
	 padding: 1px 20px 5px 20px;
	 background:url(images/getty-images-contributing-photographer.png) 97% 10px no-repeat;
}

.slideText h3.web {
	 font-size: 18px;
	 color:black;
	 font-weight: normal;
	 margin: 0;
	 padding: 1px 20px 5px 20px;
	 background:url(images/joomla-photoshelter-wordpress.png) 97% 10px no-repeat;
}

.slideText h3.logo {
	 font-size: 18px;
	 color:black;
	 font-weight: normal;
	 margin: 0;
	 padding: 1px 20px 5px 20px;
	 background:url(images/logolounge.png) 97% 10px no-repeat;
}


.slideText h3.marketing {
	 font-size: 18px;
	 color:black;
	 font-weight: normal;
	 margin: 0;
	 padding: 1px 20px 5px 20px;
	 background:url(images/vertical-response.png) 97% 10px no-repeat;
}

.slideText p {
	 font-size:11px;
	 color:slategray;
	 font-weight: normal;
	 margin: 0;
	 margin-top:-5px;
	 padding: 1px 20px;
}

.slideText .downArrow {
	font-size:7px;
	color:#aaa;
}

#menuPortfolio{
	/* This is the container for the thumbnails */

}

ul.Portfolio{
	margin:0;
	padding:0;
}

ul.Portfolio li.menuItemPortfolio {
	/* Every thumbnail is a li element */
	list-style:none;
	text-align:right;
}

ul.Portfolio li.inact:hover {
	/* The inactive state, highlighted on mouse over */
	padding-top:0;
	margin-top:0;
	outline:none;
	background-color:transparent;
}

ul.Portfolio li.act,li.act:hover {
	/* The active state of the thumb */
	background:url(images/active_bg.png) right no-repeat;
	padding-top:0;
	margin-top:0;
	margin-right:-42px;
	outline:none;
	background-color:transparent;
}

ul.Portfolio li.act .portfolioLink, li.act:hover .portfolioLink {margin-right:42px;}

ul.Portfolio li.act a {
	cursor:default;
	outline:none;
	background-color:transparent;
}

ul.Portfolio li.menuItemPortfolio a {
	font-size:36px;
	color:slategray;
	font-weight:normal;
	padding:0;
	margin:0;	
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

#mainPortfolio{
	/* The main container */
	margin:0 auto;
	width:800px;
	position:relative;
}


