
/*******************************************************************************
general
*******************************************************************************/


* {
	font-size: 100%; /* without this font sizes are not inherited correctly */
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	margin: 0px;
	color: #064377;
}

table, tr, td {
	border-width: 0px;
	border-spacing: 0px;
	border-collapse: collapse; /* border-spacing should be enough, but added for IE compatibility */
	padding: 0px;
	vertical-align: top; /*ETJ*/
}

td.padded-content-box {
	border-style: solid;
	border-width: 1px;
	padding: 4px;
}

th {
	text-align: left;
	border-width: 0px;
	border-spacing: 0px;
	border-collapse: collapse; /* border-spacing should be enough, but added for IE compatibility */
	font-size: 1.0em;
	font-weight: normal;
	font-style: normal;
}

img {
	border-width: 0px;
}

h1 {
	text-transform: uppercase;
	font: bold 10px Verdana, Arial, Geneva, Helvetica, sans-serif;
}

h2 {
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
}

a {
	
	color: #266397;
	color: blue;
	font-weight: normal; 
	text-decoration: none;
	
	/*color: #064377;*/
}

a:hover
{
	text-decoration: underline;
}

a.no-help:hover {
	text-decoration: none;
}

.arrow{
	background-image: url('images/arrow.gif');

	background-repeat:no-repeat;

	padding:0 0 3px 7px;

}

/*******************************************************************************
banner
*******************************************************************************/

tr.banner {
	/* moved to td, since IE does not accept it
	border-bottom: 1px solid #ffffff;
	*/
}

td.banner {
	font-size: 8pt;
	color: #ffffff;
/*	background-image: url('images/blue-background.gif');*/
	background: #113D63;
	border-bottom: 1px solid #ffffff; /* moved here from tr since IE accepts it only here */
}

.bottom_border {
	border-bottom: 1px dotted gray;
}

td.banner-menu {
	font-size: 8pt;
	color: #ffffff;
	background: #064377;
	padding-left: 8px;
	padding-right: 8px;
	border-bottom: 1px solid #ffffff; /* moved here from tr since IE accepts it only here */
	height: 16px;
}

td.banner-login {
	font-size: 8pt;
	color: #ffffff;
	/*
	background-image: url('images/blue-background.gif');
	*/
	background: #266397;
	padding-left: 8px;
	padding-right: 8px;
	border-bottom: 0px solid #ffffff; /* moved here from tr since IE accepts it only here */
	height: 16px;
	vertical-align: middle;
}

a.banner {
	color: #ffffff;
	text-decoration: none;
}

a.banner:hover
{
	text-decoration: underline;
}

font.banner-active {
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}

font.banner-passive {
	color: #a0a0a0;
	text-decoration: none;
}

input.banner {
	margin-right: 4px;
	margin-left: 4px;
	font: 7pt Verdana;
	color: #064377;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

button.banner {
	font-family: Verdana;
	font-size: 7pt;
	color: #064377;
	cursor: pointer;
	cursor: hand;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

a.palette {
	color: #ffffff;
	text-decoration: none;
}

a.palette:hover
{
	background: #064377;
}

/* added since the browser adds some margin for the form */
form {
	margin: 0px;
}

/*******************************************************************************
content
*******************************************************************************/

td.content {
/*	background: #e7edf5; */
	background: #ffffff;
}

.padded-content {
/*	background: #e7edf5; */
	background: #ffffff;
	padding: 10px;
}

.hit {
	border-top: 1px solid silver;
	padding-top: 5px;
}

td.green-content {
	color: #ffffff;
	background: #beb800;
	font-weight: bold;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 4px;
	padding-right: 4px;
}

td.blue-content {
	color: #ffffff;
	background: #266397;
/*	background-color: #e7edf5; */
	/*
	background-image: url('images/blue-background.gif');
	*/
	height: 0px;
}

input.content, select.content, textarea.content {
	font-family: Verdana;
	font-size: 9pt;
	color: #064377;
	max-width: 400px;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

button.content {
	font-family: Verdana;
	font-size: 9pt;
	color: #064377;
	max-width: 400px;
	cursor: pointer;
	cursor: hand;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
	background-color: #e7e7e7;
	text-shadow: gray 2px 2px 3px;
}

input.content-small, button.content-small {
	font-family: Verdana;
	font-size: 7pt;
	color: #064377;
	min-width: 150px;
	cursor: pointer;
	cursor: hand;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

legend.block-legend {
	font-weight: bold;
}

/*******************************************************************************
footer
*******************************************************************************/

td.footer {
	font-size: 8pt;
	background: #beb800;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	padding-right: 8px;
}

a.footer {
	color: #064377;
}

a.footer:hover
{
	text-decoration: underline;
}

/*******************************************************************************
metadata
*******************************************************************************/

table.md {
	font-size: 8pt;
}

th.md {
	text-align: left;
	text-transform: capitalize;
}

input.md, select.md, textarea.md {
	font-family: Verdana;
	font-size: 8pt;
	color: #064377;
	/* max-width: 400; */
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

button.md {
	font-family: Verdana;
	font-size: 8pt;
	color: #064377;
	/* max-width: 400; */
	cursor: pointer;
	cursor: hand;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
}

/*******************************************************************************
utilities
*******************************************************************************/

font.error, font.warning {
	color: #ff4040;
}

td.box {
	border: 2px solid #266397;
	background: #4683b7;
}

td.separator {
	background: #ffffff;
	height: 4px;
	width: 4px;
}

td.dots {
	width: 0;
	height: 0;
	border-top: 1px inset #266397;
}

th.padded, td.padded {
	padding: 2px;
}

th.padded-center {
	text-align:  center;
	padding: 2px;
}

a.image:hover
{
	background: transparent;
}

td.spacer {
	height: 16px;
}

div.track  {
	background: #064377;
	margin-top:2px;
}

div.handle {
	background: #beb800;
	cursor:move;
}

.dots 
{
	height: 1px;
	width: 1px;
	border-left: 1px solid #266397;
}

/*******************************************************************************
Ajax styles
*******************************************************************************/

.tooltip
{
	position: absolute;
	background-color: #f0f0ff;
	border:  solid black 1px;
	padding: 4px;
}

.tipRow
{
	margin: 10px;
	padding: 15px;
}

.tipHeader
{
	text-align:    left;
	font-weight:   bold;
	padding-left:  2px;
	padding-right: 2px;
}

.tipCell
{
	text-align: left;
}

.policyGroup 
{
	margin: 5px;
	border-style:dashed;
	border-width:0px 0px 1px 0px;
}

/*******************************************************************************
Ajax Keyword list
*******************************************************************************/
div.keywordSelectorFrame {
        background: #fff;
		position: absolute;
		margin: 2px;
		padding: 2px;
		left: 300px;
		top: 225px;
}

div.keywordSelector {
        background: #fff;
        border: 4px solid #064377;
		margin: 2px;
		padding: 5px;
        cursor: pointer;
        overflow: auto;
		max-height: 200px;
		max-width: 300px;
		width: 300px;
}

div.keywordList {
        background: #fff;
        cursor: pointer;
        overflow: auto;
		max-height: 200px;
}


div.keywordList ul {
        border: 1px solid #888;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style-type: circle;
        cursor: pointer;
        overflow: hidden;
}

div.keywordList ul li {
        margin: 0;
        padding: 1px;
        cursor: pointer;
	 	list-style-type:none;
}

div.keywordList ul li.selected {
        background-color: #beb800;
        cursor: pointer;
}

div.keywordList ul strong.highlight {
        color: #800;
        margin: 0;
        padding: 0;
        cursor: pointer;
}

div.keywordList ul li span {
	display :none;
}

div.keywordResults ul {
        margin: 3px;
        padding: 0;
		border-style:dashed;
		border-width:1px 0px 0px 1px;
		list-style-type:none;
}

div.keywordResults ul li {
        margin: 4px;
		list-style-type:none;
}

div.legend {
        margin: 3px;
        padding: 3px;
		border-style:dashed;
		border-width:1px 1px 1px 1px;
		font-style: italic;
}
div.broader {
        background-color: #8ba4c5;
}
div.related {
        background-color: #d5dfec;
}
div.narrower {
        background-color: #f7faff;
}

div.important {
	width: 70%;
	border-style: inset;
	border-width: 1px;
	text-align: justify;
	margin: 15px;
	padding: 10px;
}

div.keywordResults ul li.selected {
        background-color: #beb800;
        cursor: pointer;
}


/* GEOGRAPHIC SEARCH */


.geosearchmain{
    border-bottom: 2px;
    margin-bottom: 1px;

    vertical-align: top;
	
	background-color: #ffffff;
    
}

.geosearch{
    border-bottom: 2px;
    margin-bottom: 1px;
}

.geosearchfields{
    padding-bottom: 10px;
    border-bottom: 1px solid;
    margin-bottom: 10px;
}

.geosearchfields a{
/*    text-decoration: none; */
    margin-top: 5px;
}

td.advsearchfields {
    padding-bottom: 10px;
    border-bottom: 1px solid;
/*    margin-bottom: 10px;*/

    border-left: 1px solid;
    padding-left: 5px;
    padding-right: 5px;
}

/*.advsearchfields > tbody > tr > td {
    padding-bottom: 10px;
    border-left: 1px solid;
    padding-left: 5px;

}
*/

#coords{
    text-align:center;
    margin-top: 5px;
}

.IMBtn{
	font-family: Verdana;
	font-size: 12px;
	font-weight: bold;
	color: #064377;
	cursor: pointer;
	padding: 2px 8px 2px 2px;
}



#openIMBtn{
	background: url(images/arrow.gif) no-repeat right;
}

#closeIMBtn{
	background: url(images/arrow_inv.gif) no-repeat right;
}

#closeIMBtn:hover {
	text-decoration: underline;
}

#openIMBtn:hover {
	text-decoration: underline;
}

imenabled {
	color: #064377;
	cursor: pointer;
}

imdisabled {
	color: #434343;
    cursor: progress;
}

div.metadata_current {
    padding: 3px;
    position: relative;
}

div.metadata_current table,
div.metadata_current td
{
}

/* This will fix some redraw problems with gn setting */
.calendar table ,
.calendar tr ,
.calendar td  {
	border-collapse: separate;
}

.ilwhiteboard {
    position:relative;
	border: 1px solid #266397;
	margin: 4px;
}

/* Rating popup */

button.rating 
{
	font-family: Verdana;
	font-size: 9pt;
	color: #064377;
	max-width: 400px;
	width: 100px;
	cursor: pointer;
	cursor: hand;
	border: 1px solid #266397; /* moved here from tr since IE accepts it only here */
	margin-bottom: 4px;
}

.ratingBox
{
	position: absolute;
	background-color: #E0E0FF;
	border:  solid black 1px;
	padding: 0px;
	margin: 0px;
}

.ratingCloser 
{
    position: absolute;
    top:     1px;
    right:   3px;
    width:  16px;
    height: 16px;
    cursor: pointer;
    
    z-index: 20;    
}

div#error {
	margin: 2em;
}

#stacktrace {
	font-size: 0.75em;
}

#featured {
	/*background-color: #f6fcff;*/
	background-color: #ffffcd;
	
	width: 340px;
	margin: 5px;
	padding: 10px;
	border-width: 1px;
	border-style: inset;
	border-color: #8c4b07;
	border-left-width: 8px;
	border-bottom-width: 8px;
	border-left-color: #999999;
	border-bottom-color: #999999;
	border-right-width: 2px;
}

#advancedsearch {
	margin: 20px;
}

#resultList {
	border-top: 1px solid #2a628f;
	padding-top: 10px;
}

#leftcolumn {
	border-right: 1px solid #2a628f;
/*	background-color: #e7edf5;*/
	background-image: url('images/tangrid-lt2.gif');
}

#sortBy.live {
	font-weight: normal;
	font-style: normal;
	font-size: 0.9em;
}


#rightmain {
	margin: 20px;
	/*border-right: 1px solid #2a628f;*/
	background-color: #ffffff;
}

#pagetitle {
	/*border-right: 1px solid #2a628f;*/
	/*background-color: #000000;*/
	/*background-color: #854D28;
	border-top: 3px solid #50361A;
	border-bottom: 3px solid #50361A;*/
	color: #ffffff;
	height: 17px;
	font-size: 8pt;
	background-image: url('images/brownbar1a.jpg');
	margin-bottom: 0px;
	padding-top: 5px;
	padding-left: 10px;
	
}

#footertable {
font-size: 8pt;
color: #ffffff;
/*background-color: #000000;*/
	background-color: #854D28;
	border-top: 3px solid #50361A;
	border-bottom: 3px solid #50361A;
}

#footertd, #footertd a {
font-size: 8pt;
color: #ffffff;
/*background-color: #000000;*/
	background-color: #854D28;
	border-top: 0px solid #50361A;
	border-bottom: 0px solid #50361A;
text-decoration: none;
}

#footertd a:hover {
/*font-weight: bold;*/
color: #103b61;
background-color: #ffffff;
text-decoration: underline;
}

#footertext {
padding: 12px;
margin-bottom: 3px;
}

#formtitletdi, #formtitletdd, #formtitletd {
font-size: 8pt;
color: #ffffff;

/*background-color: #000000;*/
/*background-color: #854D28;
border-top: 3px solid #50361A;
border-bottom: 3px solid #50361A;*/
background-image: url('images/brownbar1a.jpg');
/*border-bottom: 1px solid #ffffff;  */
text-decoration: none;
vertical-align: bottom;
}

#formtitletd  h1{
 font-size: 8pt;
 margin-top: 2px;
 margin-bottom: 2px;
 }
 
#formfillertdi, #formcontenttdi {
font-size: 8pt;
color: #ffffff;
/*background-color: #e7edf5;*/
background-image: url('images/tangrid-lt2.gif');
background-repeat: repeat-y;
text-decoration: none;
}

#formtitletdi, #formfillertdi, #formcontenttdi {
width: 100px;
margin-left: 0px;
}
#formcontenttd {
text-align:left;
padding-left: 20px;
}

.padded-content2 {
/*	background: #e7edf5; */
	background: #ffffff;
	padding: 1px;
}

#leftcolumn.padded-content {
/*	background: #e7edf5; */
	background: #ffffff;
	background-image: url('images/tangrid-lt2.gif');
	background-repeat: repeat-y;
	padding-right: 0px;
	color: #5b370b !important;
}

#im_map { 
border: 2px solid #8c4b07  !important;
/*margin: -2px solid #50361A  !important;*/
}

#im_layersHeader h3{
background: #8c4b07 !important;
}

#im_layers {
background-color: #ffffff !important;
margin-top: 20px !important;
}

div#im_layers li.im_activeLayer{
	background-color: #ffffcd !important;
}

div#im_layers li.im_newLayer{
	background-color: #8ae38a;
}

div#im_layers li td {
	border-color: #8c4b07 !important;
	color: #8c4b07 !important;
}


.geosearchfields h1 {
	background-image: url('images/brownbar1a.jpg');
	height: 18px;
	margin-left: -10px;
	margin-right: 0px;
	padding-left: 15px;
	padding-right: 0px;
	padding-top: 3px;
	color: #ffffff;
	font-size: 8pt;
}


.geosearchfields td {
color: #5b370b;
}

.geosearchfields a{
color: #5b370b;
text-decoration: none;
}

/*
#loginbox , .banner-login {
min-width: 300px;
}
*/

#rightmenu {
min-width: 200px;
}

#fillMeWithIntermap2 {
border: 5px solid #ff0000;
}

#thumbnailmeta {
border-width: 1px;
border-color: #999999;
}

.identify, #im_tool_identify  {
display: none !important;
}
#im_subtoolbar img {
    display: none !important;
}
#im_scale {
    display: none !important;
}

#username, #password {
color: #666666;
font-size: 7pt;
font-style: italic;
}

#mapframe {
width: 900px;
height: 1100px;
text-align: left;
align: left;
border-width: 0px;
float: left;
padding: 0px;
margin:0px;

}

#hometitle {
font-weight: bold;

font-family: Geneva,Tahoma,"Nimbus Sans L",sans-serif;
font-size: 20pt;
/*color: #8c4b07;*/
color: #BFA377;
width: 95%;
padding: 7px;
}

#hometitle .secondary {
font-weight: normal;
font-family: Geneva,Tahoma,"Nimbus Sans L",sans-serif;
font-size: 16pt;
/*color: #8c4b07;*/
color: #BFA377;
width: 95%;
padding: 7px;
}

#hometext {
padding: 7px;
width: 90%;
}

.homelinks {
color: #003366;
font-weight: bold;
}

#maplabfront {
	background-image: url('/images/images/newmaplab_small.gif');
	background-repeat:no-repeat;
	padding:5px;
	height: 130px;
	cursor: pointer;
	cursor: hand;
}

#maplabfrontright{
float: right;
}

#maplabfrontdsdf{
float: right;
font-weight: bold;
margin-top: 20px;
}

.homebox_container {
padding: 10px;
}

.homebox {
width: 150px;
margin: 0px;
padding: 0px;
border: 1px solid #6d4410;
}

.homebox_title {
background-image: url('/geonetwork/images/brwnbar1.jpg');
background-repeat:repeat-x;
/*height: 33px;*/
height: 26px;
margin: 0px;
padding: 0px;
padding-top: 7px;
color: #ffffff;
text-align: center;
font-weight: bold;
font-size: 12pt;
}

#orange{
background-image: url('/geonetwork/images/orangebar2.jpg');
}
#green{
background-image: url('/geonetwork/images/greenbar2.png');
}
#silver{
background-image: url('/geonetwork/images/silverbar2.png');
}
#blue{
background-image: url('/geonetwork/images/bluebar.jpg');
}

.homebox_content {
height:200px;
background-color: #F7F1E7;
padding: 5px;
padding-top: 30px;
text-align: center;
font-weight: bold;
}

.homebox_content a:hover {
text-decoration: none;
color: #990000;
}

.homebox_content a {
text-decoration: none;
}

#homebox_fullsearch {
cursor: pointer;
background-color: #f06663;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 4px;
padding-right: 4px;
text-decoration:none;
color: #ffffff;
}

a#homebox_fullsearch:hover{
color: #990000;
background-color: #ffffff;
}

.notebox-container {
width: 800px;
}

.notebox {
display: inline;
background-color: #F7F1E7;
padding: 3px 6px;
margin: 2px 6px;
text-align: center;
border: 1px solid #6d4410;
}

.notebox a{
text-decoration: none;
}

.notebox a:hover {
color: #990000;
text-decoration: none;
}

#announce {
background-color: #F7F1E7;
padding: 3px 6px;
text-align: center;
border: 0px solid #6d4410;
margin-right: 30px;
margin-left: 10px;
}


#announce a{
text-decoration: none;
color: #660000;
font-size: 11pt;
font-weight: bold;
}

#announce a:hover {
color: #990000;
text-decoration: none;
}


#topolist {
	float:left;
}

.sectionheading {
margin-top: 15px;
font-weight: bold;
}

.videotutorial {
width: 100%;
float: center;
}

.sepdiv {
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
height: 2px;
background-color: #fffff;
}

.sephr {
width: 100%;
height: 2px;
background-color: #064377;
}


