/*

Implementing a theme for GOOP Gallery is easy. Just place a division tag around the inserted php code.

Like so:

<div id="gallery">

<?php //some code ?>

</div>

Then add something like the following to your page's css.

This is a sample theme to get you started. This theme is complements ritterfamily.org.

*/

body{

}
#gallery{
	margin: auto;
	padding: 10px;
	border: 0;
	font: 12px arial,helvetica, sans-serif;
	width: 550px;
	background: #1C2124;
    color: #FFFFFF;	
}

/*single image */
#gg_descrip{
    float: left:
	font: 12px arial,helvetica, sans-serif;
}

#gg_image{
	margin: 0px 10px 0px auto;
	padding: 0;
	float: left;
}

#gg_image img{
	border: 0;
	padding: 10px;
	margin: 10px;
}

#gg_forms{
	clear: both;
	padding: 10px;
}

#gg_forms form{
	display: inline;
}

#gallery td{
	background-color: #1C2124;	
	border: 0;	
	padding: 10px;
}

#gallery a{
  color: #FFFFFF;	
  text-decoration: none;
}

#gallery a:hover{
	color: #FFCC66;
	text-decoration: underline;	
}

#gallery img{
	border: 0px;
	padding: 10px;	
}

#gallery img:hover{
	border: 0px;	
}
#gallery h2, #gallery h1{
	color: #FFFFFF;
}
#gallery input{
	background-color:#1C2124;
	color: #FFFFFF;
	border-bottom: 1;
	border-right: 1;
	border-top: 1;
	border-left: 1;
	padding: 10px;
}
#gallery select{
	background: #1C2124;
	font: 12px arial,helvetica,sans-serif;
	color: #F3A12D;
}
