/**
* @file
* @brief    sigplus Image Gallery Plus image gallery stylesheet
* @author   Levente Hunyadi
* @version  1.4.3
* @remarks  Copyright (C) 2009-2010 Levente Hunyadi
* @remarks  Licensed under GNU/GPLv3, see http://www.gnu.org/licenses/gpl-3.0.html
* @see      http://hunyadi.info.hu/projects/sigplus
*/

/*
* User-definable image gallery stylesheet rules.
* Rules in this section should be changed as needed.
*/

/* items */


/* An example with margin, border and padding, and special instructions
 * for mouse over.

div.example div.sigplus-gallery ul > li {
margin:4px !important;
border:1px solid blue !important;
padding:2px !important;
}

div.example div.sigplus-gallery ul > li > img,
div.example div.sigplus-gallery ul > li > a > img {
margin:4px !important;
border:thin solid gray !important;
padding:2px !important;
}

div.example div.sigplus-gallery ul > li > a:hover > img {
margin:4px !important;
border:thin solid red !important;
padding:2px !important;
}
*/

/*
* Generic image gallery stylesheet rules.
* Rules in this section should normally be left as they are.
*/



/* flow layout */
div.sigplus-gallery > ul {
	padding: 0 !important;
	margin: 0 !important;
	

}
div.sigplus-gallery > ul > li {

	padding: 5px !important;
	list-style-type: none !important;
	list-style-image: none !important;

}

/* A more complex example: solid background color around images covering
 * the gallery fixed layout slot size even if cropping is disabled and
 * the image width or height does not span the entire slot area.
 * The example features a trick to get around margin collapse rules in CSS.

div.sigplus-gallery ul > li > a {
margin:2px !important;
border:1px solid hsl(0, 0%, 20%) !important;
background-color:hsl(0, 0%, 13%) !important;
padding:0 !important;
}

div.sigplus-gallery ul > li {
margin:0 !important;
border:4px solid transparent !important;
padding:0 !important;
}
*/