/*

Darko Bunic
http://www.redips.net/
Aug, 2009.

*/


/* styles needed for dialog box */

/* dialog box */
#dialog{
	display: none;
	z-index: 999;
	position: absolute;
	background-color: #437ec7;
	padding: 10px;
	border-width: 5px;
	border-color: #ff5454;
	border-style: solid;
	text-align: center;
	overflow: hidden;
	color: #FFF;
	font-weight: bold;
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px;
}

		/* dialog buttons */
		#dialog input{
			color: #FFF;
			font-weight: bold;
			background-color: #266092;
			border: 2px #fcc900 solid;
			width: 110px;
			height: 30px;
			margin: 18px 5px 0px 0px;
			font-size: 16px;
			cursor: pointer;
			-moz-border-radius: 10px; 
			-webkit-border-radius: 10px;
		}

		/* top margin on buttons in dialog and text beneath image */
		#dialog p{
			margin: 10px 0px 0px 0px;
			text-align: center;
		}


/* 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;
}
