﻿/**************************************
*  General
***************************************/


html, body
{
	
	height: 100%;
}

body
{
	font-family: Verdana, Arial;
	font-size: 11px;
	margin: 0px;
	padding: 0px;
	background: #fff;
	
}

/*The base area*/
#container
{
	width: 1080px;
	border-right: solid 1px #000;
	border-left: solid 1px #000;
	margin: 0 auto;
	height: auto;
	background-color: #FFF4BF;
	
}

/*The area, on top of the base area, into which pages are loaded*/
#content
{
	float: left;
	padding: 0px 0px 35px 10px;
	margin: 0px;
	vertical-align: top;
	width: 780px;
}


/* the panel on the right side*/
#contentright
{
	visibility:hidden; /*HAS TO BE CHANGED TO DISPLAY THE PANEL*/
	float: left;
	margin-top:20px;
	margin-left:15px;
	vertical-align: auto;
	width: 150px;	/*HAS TO BE ADAPTED TO THE WIDTH IN THE ABOVE #CONTENT SECTION*/
	height:150px;
	border: outset 1px;
	background-color: #FFF4BF; 
	font-weight: normal;
	padding: 1px;
	color: #004261;
}



/*The area, on top of the base area, into which pages are loaded*/
div.content
{
	float:left;
	padding: 0px;
	vertical-align: top;
	width: 100%;
	margin-bottom: 20px;
}


/* The buttons area*/
div.command
{
	width: 770px;
	padding: 5px;
	margin-top: 20px;
	text-align: left;
	border: inset 1px;
}


* html #container
{
	/*IE hack*/
	height: 100%;
}


/**************************************
*  Lists
***************************************/
/*the top list*/
.list
{
	color: white;
	height: 22px;
	margin: 0px;
	padding: 0px;
}


/*the bottom list*/
#footer
{
	text-align: center;
	font-size: 10px;
	width: 1080px;
	height: 17px;
	clear: both;
	margin: 0 auto;
	border-right: solid 1px #000;
	border-left: solid 1px #000;
	border-bottom: solid 1px #000;
	background-image: url(../images/bottom_list.gif);
	color: white;
	padding-top: 5px;
}

#footer a
{
	text-decoration: none;
	color: #fff;
}


/**************************************
*  Links
***************************************/
a
{
	color: #369;
	text-decoration: none;
}

a:visited
{
	color: #69c;
	text-decoration: none;
}

a:hover
{
	color: #69c;
}

/**************************************
*  Banner
***************************************/

#banner
{
	background-color: #004261;
	color: #003399;
	padding: 0;
	text-align: left;
	border-bottom: 1px solid #000;
}
#banner .logo
{
	float: left;
	margin: 0px;
	padding: 10px 0px 0px 0px;
}

#banner .viewinfo
{
	float: left;
	margin: 0px 0px 0px 50px;
	padding: 10px 0px 0px 0px;
	font-weight: bold;
	font-size: 13px;
}

#banner .language
{
	vertical-align: bottom;
	float: right;
	margin: 0px 10px;
	padding: 5px;
}

#banner .logininfo
{
	vertical-align: bottom;
	float: right;
	margin: 0px;
	padding: 5px;
	border: solid 1px #000;
	border-right: 0px;
	color: #003399;
	background-color: #f2f2f2;
}




/**************************************
*  Headers
***************************************/

h3
{
	font-size: 12px;
	color: #003399; /*font-weight: normal;*/
}
h4
{
	font-size: 11px;
	color: #003399; /*font-weight: normal;*/
}
h5
{
	font-size: 10px;
	color: #003399; 
	font-weight: normal;
}



/**************************************
*  Input fields
***************************************/

/* Search fields, My settings */
input.field
{
	width: 300px;
}

/* Login field */
input.shortfield
{
	width: 150px;
}

/* The contact messagebox */
textarea.field
{
	width: 300px;
	height: 100px;
}

/**************************************
*  Messages
***************************************/

/* the messagebox in search history, bookmarks etc "No selected rows"  */
.message
{
	font-size: 11px;
	color: #ff0000;
}

/* For instance "illegal search" */
div.msg_error
{
	background-color: #fff;
	font-weight: normal;
	margin: 0px 3px 15px 3px;
	padding: 3px;
	color: #ff0000;
	border: outset 2px;
}

/* For instance "loan registered" */
div.msg_info
{
	background-color: #fff;
	font-weight: normal;
	margin: 0px 3px 15px 3px;
	padding: 3px;
	color: #003399;
	border: outset 2px;
}


/**************************************
*  Buttons
***************************************/

/* All buttons*/
input.button
{
	font-family: Verdana, Arial;
	font-size: 11px;
	color: #003399;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	margin-top: 5px;
	border: outset 1px #ccc;
	background: #999;
	padding: 1px;
	background: url(../images/bg_button.gif) repeat-x left top;
	height: 22px;
	width: 100px;
	min-width: 100px;
	overflow: visible;
}

/* flag buttons*/
input.culture
{
	border: 1px solid #003399;
	padding: 0px;
	margin: 1px;
}



/**************************************
*  Labels
***************************************/

.label
{
	float: left;
	text-align: left;
	overflow: hidden;
	padding: 0 10px 0 5px;
}


/**************************************
*  Result navigation (next, previous, result list)
***************************************/

div.resultnavigation
{
	float: right;
	padding: 2px;
}

div.resultnavigation a
{
	text-decoration: none;
	font-weight: bold;
	color: #003399;
}

div.resultnavigation a:visited
{
	color: #003399;
	
}

div.resultnavigation a:hover
{
	color: #69c;
}


/*The navigation background panel*/
div.result
{
	float:left;
	width: 100%;
	height: 22px;
	margin: 0px;
	padding: 0px;
}

/* the text "record 3 of 33"*/
div.resultinfo
{
	float:left;
    font-weight: bold;
	padding: 2px;
    color: #003399;
}



/**************************************
*  The reference window
***************************************/


div.content .table
{
	vertical-align: top;
    background-color: #fff;
	padding: 0px;
	width: 100%;
}
div.content .header
{
	background-image: url(../images/bg_list.gif);
	background-repeat: repeat-x;
    font-size: 11px;
    color: #003399;
    font-weight: bold;
    height: 22px;  
}
div.content th
{
    padding: 0px 0px 5px 0px;
}
div.content td
{
    padding: 3px;
}
div.content .row
{
    vertical-align: top;    
}

div.content .alternaterow
{
    background-color: #f2f2f2;
    vertical-align: top;    
}

/**************************************
*  Extra
***************************************/

form
{
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}


div.clear
{
	clear: both;
	height: 0px;
	overflow: hidden;
	width: 100px;
	margin: 0px;
	padding: 0px;
}


#navbar
{
	margin: 0px;
	padding: 0px;
}


