﻿/* - - - - - - - - - - - - - - - - - - - - -

Title : galleryNET CSS
Last Modified: May 19, 2008
Author: Hong
URL: http://gallerynet.imagecomponent.net

- - - - - - - - - - - - - - - - - - - - - */

body
{
	font-family: Calibri Arial Verdana Tahoma;
	font-size: small;
	padding: 0;
	margin: 0;
	/*background-color: #CCE8CF;*/
}

.galleryContainer
{
	width:95%;
	text-align: center;
	padding-top: 5pt;
	padding-bottom: 5pt;
	margin: 1em;
}
/*gallery title style - see HeaderTemplate.ascx*/
.galleryTitle
{
	font-family:Verdana;
	font-size:large;
	font-weight:600;
	color:Black;
	border-top:solid 1pt black;
	border-bottom:solid 1pt black;
}

a, a:visited
{
	text-decoration :underline;
	color:Blue;
}

a:hover, a:active
{
	text-decoration:none;
	color:Red;
}

/********************************************
  subfolders styles - see Default.aspx
*********************************************/
.subfolder 
{
	width:100%;
}

.subfolder table
{
	margin-top : 10pt;
	margin-bottom : 10pt;
}

.subfolder td
{
	padding:3px;
	text-align:center;
}

.subfolder a, a:visited
{
	text-decoration:none;
	border-bottom: dotted 1pt #3333CC;
	color: #3333CC;
}

.subfolder a:hover, a:active
{
	text-decoration: none;
	border-bottom: 0pt;
	color: #FF6600;
}

.SimpleFooterGalleryDiv
{
	margin-top:5pt;
	margin-bottom:1em;
}

/********************************************
  thumbnail styles, see ItemTemplate, it is also used to display 
  subfolder thumbnail style
*********************************************/
#thumbnail
{
	text-align:center;
	padding:0pt;
	margin:0pt;
}

#thumbnail table
{
	font-size:small;
	font-family:Arial Verdana Tahoma;
	padding:0pt;
	margin:0pt;
}

#thumbnail td
{
	text-align:left;
}

#thumbnail td.title
{
	font-weight:bold;
	width:80pt;
}

#thumbnail td.image
{
	text-align:center;
	vertical-align:middle;
}

#introduction
{
	margin-top:5pt;
	padding:2pt;
}

/********************************************
  pager styles - see Default.aspx
*********************************************/
.pager
{
}

.pager table
{
	width:100%;
	padding:0pt;
	margin:0pt;
}

.pager td
{
	padding:5pt;
	font-family:Verdana Arial;
	text-align :center;
	vertical-align:middle;
}

/* the following two class are hard-coded, for numeric pager only */
.pager .Pager_Current_Number
{
	font-weight: bold;
	color: Red;
	font-size: 15pt;
	border-left-style: solid;
	border-left-width: thin;
	border-right-style: solid;
	border-right-width: thin;
	border-right-color: #000000;
	border-left-color: #000000;
	margin:3pt;
	padding:5pt;
}

.pager .Pager_Number
{
	font-weight:normal;
	font-size:12pt;
	margin:1pt;
}

/********************************************
  This is the class for error message in the GalleryGrid
*********************************************/
.errorMessage
{
	display:block;
	font-size:15pt;
	font-weight:600;
	color:Red;
	font-family:Calibri;
}

/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Modified for GalleryNET on May, 2008

be careful when you change this section, it might affect the GalleryNET functionality
- - - - - - - - - - - - - - - - - - - - - */
#lightbox{
	display:none;
	position:absolute;
	z-index:1001;
	/*margin:-220px 0 0 -250px;*/
	border:1px solid #fff;
	background:#FDFCE9;
	text-align:left;
	overflow:auto;
}
#lightbox[id]{
	position:absolute;
}
#overlay{
	display:none;
	position:absolute;
	overflow:auto;
	top:0;
	left:0;
	width:100%;
	height:130%;
	z-index:1000;
	background-color:#000;
	-moz-opacity: 0.8;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id]
{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}
#dragPanel /*this is draggable header style*/
{
	cursor:move;
	height: 30px;
	padding: 5pt;
	text-align: center;
	vertical-align:middle;
	background-color: #263F40;
	color:White;
	font-weight:600;
	font-size:16pt;
}