/* -------------------- General settings -------------------- */

body
{
    width: 800px;
    margin-left: auto;
    margin-right: auto;
	background: rgb(128,128,128); /* Grey - CAUTION: if this color is changed, #header, #page_top & #footer must be updated */
    font: 12px "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
    color: rgb(0,0,0); /* Black */
}

#sub_body
{
	background: url("images/page_body.png") repeat-y; /* image size == 800 x 1 px */
}

a
{
	outline: none; /* To avoid the dotted border when clicking a link */
}

img
{
	border: none;
}

.screenshotpicture
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border: rgb(224,224,224) solid 2px; /* Light Light Grey */
}

.iconpicture
{
	display: block;
	float: left;
	
	padding-left: 20px;
    padding-right: 20px;
}

/* -------------------- Header block -------------------- */

#header
{
    width: 800px;
    height: 90px;
	background: rgb(128,128,128) url("images/header.png") no-repeat; /* color must be the same as in body - image size == 800 x 80 px */
}

#header h1
{
    font-size: 18px;
	font-weight: bold;
    color: rgb(255,255,255); /* White */
	
    margin: 0;
    padding-left: 30px;
    padding-top: 10px;
}

#header h2
{
    font-size: 14px;
	font-weight: bold;
    color: rgb(224,224,224); /* Light Light Grey */
    
    margin: 0;
    padding-left: 60px;
    padding-top: 20px;
}

#header p
{
    font-size: 12px;
	color: rgb(255,255,255); /* White */
    
    margin: 0;
    padding-right: 35px;
    padding-top: 38px;
    
    float: right;
}

/* -------------------- Page Top block -------------------- */

#page_top
{
    width: 800px;
    height: 30px;
	background: rgb(128,128,128) url("images/page_top.png") no-repeat; /* color must be the same as in body - image size == 800 x 30 px */
}

/* -------------------- Sidebar block -------------------- */
#sidebar
{
    width: 190px;
    margin-left: 25px;
	
	float: left;
}

/* Sidebar block (Menu) */
#sidebar_menu ul
{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#sidebar_menu a
{
    display: block;
    width: 190px;
    height: 30px;
	margin-bottom: 8px; /* Space between buttons */
    background: url("images/button.png") no-repeat; /* image size == 190 x 30 px (Blue button) */
    line-height: 30px; /* Must be equal to the height of the block to center the text vertically */
    text-indent: 20px;
    color: rgb(255,255,255); /* White */
    text-decoration: none;
    font-size: 13px;
	font-weight: bold;
}

#sidebar_menu #current_menu_item a
{
    background: url("images/button_hover.png") no-repeat; /* image size == 190 x 30 px  (Grey button) */
}

#sidebar_menu a:hover
{
   background: url("images/button_hover.png") no-repeat; /* image size == 190 x 30 px  (Grey button) */
}

/* Sidebar block (Extra) */
#sidebar_extra
{
    margin-top: 30px;
    margin-bottom: 20px;
}

#sidebar_extra h3
{
	background: rgb(224,224,224); /* Light Light Grey */
	font-size: 12px;
	color: rgb(32,32,32); /* Dark Dark Grey */
	text-align: center;
}

#sidebar_extra p /* To center images */
{
	margin: 0; padding: 0;
	text-align: center;
}

/* -------------------- Content Block -------------------- */

#content
{
    width: 525px;
	margin-left: 250px;
}

#content h1
{
	margin-top: 20px;
	margin-bottom: 20px;
	background: rgb(224,224,224); /* Light Light Grey */
	font-size: 14px;
	font-weight: bold;
	color: rgb(32,32,32); /* Dark Dark Grey */
	text-align: center;
}

#content h2
{
	font-size: 12px;
	font-weight: bold;
	color: rgb(32,32,32); /* Dark Dark Grey */
	margin-top: 20px;
	padding-left: 20px;
}

#content ul h2
{
	padding-left: 0;
}

#content p
{
	padding-left: 20px;
    padding-right: 20px;
    
	text-align: justify;
}

#content .screenshotcaption  /* used for a paragraph embedding a screenshot caption i.e. "Click on the image to enlarge it" */
{
	text-align: center;
}

#content .decoratedlink
{
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 40px;
	font-size: 14px;
}

#content .decoratedlink img
{
	display: block;
	float: left;
}

#content .decoratedlink p
{
	margin-left: 30px;
	padding-top: 10px;
}

#content ul
{
    list-style-type: none;
	
	padding-left: 20px;
    padding-right: 20px;
}

#content li
{
    text-align: justify;
}

#content a
{
    color: rgb(10,75,150); /* Blue */
	font-weight: bold;
    text-decoration: none;
}

#content .importantnote
{
	color:red;
}

#content .switch
{
	font-size: 16px;
	text-align: center;
	border: rgb(224,224,224) solid 2px; /* Light Light Grey */
}
/* -------------------- Footer -------------------- */

#footer
{
    width: 800px;
	height: 60px;
	background: rgb(128,128,128) url("images/footer.png") no-repeat; /* color must be the same as in body - image size == 800 x 60 px */

	clear: left;
}

#footer p
{
	margin: 0;
	padding-top: 30px;
	
	font-size: 11px;
	text-align: center;
}

/* -------------------- Lightbox -------------------- */

#lightbox{
	background-color: rgb(255,255,255); /* White */
	padding: 10px;
	border: rgb(224,224,224) solid 2px; /* Light Light Grey */
	}
#lightboxDetails{
	font-size: 0.8em;
	padding-top: 0.4em;
	}	
#lightboxCaption{ float: left; }
#keyboardMsg{ float: right; }
#closeButton{ top: 5px; right: 5px; }

#lightbox img{ border: none; clear: both; } 
#overlay img{ border: none; }

#overlay{ background-image: url(../images_lightbox/overlay.png); }

/* -------------------- Review -------------------- */

.for_review
{
background-color: rgb(0,255,0);
}

