/**
 * Example custom CSS file for MicroAlbum
 * Copyright Gaby Vanhegan 2006-onwards
 * gaby@vanhegan.net
 * http://vanhegan.net/software/microalbum/
 *
 * These are all the classes that are defined by the script along
 * with comments to identify what they do and how they influence 
 * the look and feel of the site.  It should help you in developing
 * your own custom CSS if you need one.
 */

/**
 * Lots of standard elements are overridden by the script
 */
body { margin: 0px; padding: 0px; }
p, h1, h2, h3 { }
td { }
li, ul { }
img { }
a img { }
a { color: black; }
a:hover { }

/**
 * The entire album code is enclosed in this div, so it can be directly
 * addressed if needed, without interfereing with other styles
 */
div#microalbum { 
	font-family: Trebuchet MS, Tahoma, sans-serif; 
	background: white; 
	margin: 0px;
	padding: 0px;
	border: 0px;
}

/**
 * The header, contains the title, album name, etc
 */
div.header { 
	background: white; border: 0px; 
}

/**
 * Contains the footer text, version number
 */
div.footer { 
	background: white; border: 0px; 
}

/**
 * The main content block, holding images, previews, listings, whatever
 */
div.content { }

/**
 * In the event of any error, this div is shown
 */
div.error { }

/**
 * A message box, when things happen, unsure if it's still used
 */
div.message { }

/**
 * Class used for non-image tables, in the admin areas and such
 */
#microalbum .normal td { }

/**
 * A thumbnailnail image, each one is enclosed in a div
 */
#microalbum div.thumb { 
	padding: 8px;
	background: #bbb;
	border: 3px outset;
}

/**
 * Preview images are contained in their own divs too
 */
#microalbum div.preview { }

/**
 * The caption underneath each image
 */
#microalbum p.caption { }

/**
 * Optional sub-caption, if one has been set for each image
 */
#microalbum .subcaption { }

/**
 * A class for positive events happening on the site
 */
#microalbum .good { }

/**
 * A containing span for admin links (edit, sort, rotate, etc)
 */
#microalbum span.admin { }