/* standardized element styling */

/*
TYPOGRAPHY
*/

@font-face {
  font-family:  'Fugue Regular';
  src:          url('/media/fnt/fugue/fugue_regular.eot');
  src:          url('/media/fnt/fugue/fugue_regular.eot?#iefix') format('embedded-opentype'),
                url('/media/fnt/fugue/fugue_regular.woff') format('woff');
  font-weight:  normal;
  font-style:   normal;
  font-stretch: normal;
}

html, body, #map-canvas {
        margin: 0;
        padding: 0;
        /*height: 100%;*/
      }


/*
DEFAULT ELEMENT STYLE
*/


body{
	font-family: 'Fugue Regular', Arial, Helvetica, sans-serif;
	/*font-weight:600;*/
	font-style:normal;
	background: #FFF;
}


/*
STANDARD WEB ELEMENTS
*/
a {
	/*color: rgb(178, 176, 172);*/
	color: #000;
	text-decoration: none;
}
	a:link {
		/*color: rgb(178, 176, 172);*/
		color: #000;
	}    
	a:visited {
		/*color: rgb(178, 176, 172);*/
		color: #000;
	}  
	a:hover,
    a:focus,
	a:link:hover {
		/*color: rgb(178, 176, 172);*/
		/*text-decoration: underline;*/
		color: rgb(0, 255, 0) !important;
	}
	a:active {
		/*color: rgb(178, 176, 172);*/
		color: #000;
	}  

img {
	border: 0px;
}
input,
textarea,
select,
option {
	font-size: 12px;
	font-family:Arial, Helvetica, sans-serif;
}

/* standardized classes */

.nodisp { display: none; } /* compatibility reasons - used by 301 register */

.d-none { display: none !important; }
.d_none { display: none !important; }
.d_block { display: block; }
.d_inline { display: inline; }

.fl_left { float: left; }
.fl_right { float: right; }
.fl_clear,
.fl_clear_l,
.fl_clear_r {
  display: block !important;
  height: 1px; font-size: 1px;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}
.fl_clear_l {
  clear: left;
}
.fl_clear_r {
  clear: right;
}

.ta_left { text-align: left !important; }
.ta_right { text-align: right !important; }
.ta_justify { text-align: justify !important; }
.ta_center { text-align: center !important; }

.fw_bold {	font-weight: bold !important; }
.fs_italic { font-style: italic !important; }

/* misc */
.nowrap { white-space: nowrap; }

.cur_help { cursor: help; }

.last { margin-right: 0!important}