/*

Darko Bunic
http://www.redips.net/
Feb, 2010.

*/


/* styles needed for dialog box */

/* dialog box */
#dialog{
	display: none;
	z-index: 999;
	position: absolute;
	background-color: #eee;
	padding: 10px;
	border-width: 4px 12px;
	border-color: #354058;
	border-style: solid;
	text-align: center;
	overflow: hidden;
}

		/* image container will display only horizontal scrollbar */
		#dialog .image{
			overflow-y: hidden;
			overflow-x: auto;
		}
			/* center images table (if more then one image is shown) */
			#dialog .image table{
				margin: auto;
			}

		/* text beneath image */
		#dialog .text{
			padding-top: 5px;
		}

		/* dialog buttons */
		#dialog input{
			color: white;
			background-color: #D4D4D4;
			border: 1px #ccc solid;
			width: 65px;
			height: 20px;
			margin: 18px 5px 0px 0px;
			font-size: 10px;
		}


/* shaded div */
#shade{
	z-index: 998;
	display: none;
	position: absolute;
	background-color: black;
	width: 100%;
	height: 100%;
}



/* other styles */


/* ordered list demo */
#ol_demo li{
	margin-bottom: 10px;
}

/*
body{
	font-family: arial;
}
*/
