﻿
/****************************************************************/
/***********************  Outline Styling  **********************/
/****************************************************************/

/* div tag that surrounds the albums */
.photo
{
	width: 400px;  /* 635px */
	text-align: left;
	position: relative;
	margin: 0 auto;
	height: inherit;
}

/* setup the tabs/albums/lists */
.photo ul.topic
{
	padding: 0;
	margin: 0;
	list-style: none;
	width: 400px;  /* 635px */
	height: auto;
	position: relative;
	z-index: 10;
}

/* setup the display of the tabs/albums/lists */
.photo ul.topic li
{
	display: block;
	width: 125px;
	height: 35px;
	float: left;
	
}

/* The inactive tabs */
.photo ul.topic li a.set
{
	visibility: hidden;
	display: block;
	
	font-size: 11px;
	width: 124px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	color: #000;
	text-decoration: none;
	border: 1px solid #fff;
	border-width: 1px 1px 0 0;
	background: #ccc;
	font-family: verdana, arial, sans-serif;
}

/* don't show background tabs */
.photo ul.topic li a ul, .photo ul.topic li ul
{
	display: none;
}

/* active tab */
.photo ul.topic li.active a
{
	color: #000;
	background: #bbb;
}

/* all tabs' hover heading */
.photo ul.topic li a:hover, .photo ul.topic li:hover a
{
	color: #000;
	background: #aaa;
}


/****************************************************************/
/************************  Image Styling  ***********************/
/****************************************************************/

/* inside box behind the images, inside the border */
.photo ul.topic li.active ul
{
	display: block;
	position: absolute;
	left: 0;
	top: 31px;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #222;
	width: 350px;
	padding: 20px 30px;
	border: 1px solid #aaa;
	z-index: 1;
}

/* inside box behind the images while hovering over that section */
.photo ul.topic li a:hover ul, .photo ul.topic li:hover ul
{
	display: block;
	position: absolute;
	left: 0;
	top: 31px;
	list-style: none;
	padding: 0;
	margin: 0;
	background: #222;
	width: 350px;
	padding: 20px 30px;
	border: 1px solid #aaa;
	z-index: 100;
}

/* outside border/section around each image */
.photo ul.topic li ul li
{
	display: inline;
	width: 112px;
	height: 87px;
	float: left;
	border: 1px solid #aaa;
	margin: 1px;
}

/* border/section just inside the above section also around each image */
.photo ul.topic li ul li a
{
	display: block;
	width: 110px;
	height: 85px;
	cursor: default;
	float: left;
	text-decoration: none;
	background: #222;
	border: 1px solid #444;
	
	text-align: center;
}

/* the image itself, the border has been marked as !important to allow for asp:image to be used properly */
.photo ul.topic li ul li a img
{
	display: block;
	width: 100px;
	height: 75px; 
	
	border: 5px solid #222 !important;
}

/* the border/section just outside of the image that is being hovered over */
.photo ul.topic li a:hover ul li a:hover, .photo ul.topic li:hover ul li a:hover
{
	white-space: normal;
	position: relative;
}

/* the image that is being hovered over */
.photo ul.topic li a:hover ul li a:hover img, .photo ul.topic li:hover ul li a:hover img
{
	position: absolute;
	left: -50px;
	top: -32px;
	height: 150px;
	width: 200px;
	border: groove 5px #aaa !important;
}

.largeImage
{
	margin: 0 auto; 
	text-align: center; 
	width: 350px; 
	height: 350px; 
	padding: 10px; 
	border: solid 1px #aaa; 
	background-color: #222;
}
