body {
  background: #001112 url(../images/background.png) repeat-x;
  text-align: center;
}

#bg_container {
  background: url(../images/bg_map.png) no-repeat;
  width: 750px;
  overflow: hidden; /* Just to make background get to bottom */
  margin: 0 auto;
  padding: 23px 105px;
  text-align: left;
}

#menu {
  width: 750px;
  height: 25px;
  padding-bottom: 4px;
  float: left;
  background: #033b39;
}

#menu #submenu_positioner { /* Makes menu container relative for absolute positioning */
  position: relative;
  z-index: 1;
}
#menu #main_menu {
  position: absolute;
}
#menu ul#nav {
  float: left;
}
#menu ul#nav li {
  float: left;
}

#menu ul#nav li a {
  float: left;
  display: block;
  height: 25px;
  text-indent: -9999px;
  background: url(../images/menu.png) no-repeat;
}

h1 {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 30px !important; 
  font-weight: bold !important; 
  letter-spacing: -2.5 !important; 
  color:#346f70 !important;
  display: block !important;
  visibility: visible !important;
}

/* NORMAL MENU */
#menu ul#nav li a.link01 { width: 73px; background-position: 0 0; }
#menu ul#nav li a.link02 { width: 75px; background-position: -73px 0; }
#menu ul#nav li a.link03 { width: 129px; background-position: -148px 0; }
#menu ul#nav li a.link04 { width: 219px; background-position: -277px 0; }
#menu ul#nav li a.link05 { width: 171px; background-position: -496px 0; }
#menu ul#nav li a.link06 { width: 83px; background-position: -667px 0; }

/* MOUSEOVER */
#menu ul#nav li a.link01:hover { background-position: 0 -25px; }
#menu ul#nav li a.link02:hover { background-position: -73px -25px; }
#menu ul#nav li a.link03:hover { background-position: -148px -25px; }
#menu ul#nav li a.link04:hover { background-position: -277px -25px; }
#menu ul#nav li a.link05:hover { background-position: -496px -25px; }
#menu ul#nav li a.link06:hover { background-position: -667px -25px; }

/* SELECTED */
#menu ul#nav li.selected a.link01 { background-position: 0 -25px; }
#menu ul#nav li.selected a.link02 { background-position: -73px -25px; }
#menu ul#nav li.selected a.link03 { background-position: -148px -25px; }
#menu ul#nav li.selected a.link04 { background-position: -277px -25px; }
#menu ul#nav li.selected a.link05 { background-position: -496px -25px; }
#menu ul#nav li.selected a.link06 { background-position: -667px -25px; }

#content {
  float: left;
  width: 720px;
  background: #140b02;
  padding: 16px 15px 19px;
}

.content_block {
  float: left;
  padding: 5px 8px 12px;
  background: #aee7e9 url(../images/content_block_bg.png) repeat-x;
}
.multiple .content_block {
  margin-bottom: 15px;
}


p {
  font: normal 11px Georgia, "Times New Roman", serif;
  color: #444444;
  line-height: 16px;
}
p.subtitle {
  margin-top: 6px;
  font: normal 11px Georgia, "Times New Roman", serif;
  font-size: 18px; 
  font-weight: normal; 
  letter-spacing: -1.4; 
  color:#346f70;
}

#content ul li {
  padding-left: 14px;
  background: url(../images/bullet_green.png) no-repeat;
  font: normal 11px Georgia, "Times New Roman", serif;
  color: #444444;
  line-height: 13px;
  min-height: 26px; /* Applies min-height en IE6 */
  height:auto !important; /**/
  height: 26px; /**/
}

#content_bottom {
  float: left;
  width: 750px;
  background: url(../images/content_bottom.png) no-repeat;
  height: 13px;
}

#footer {
  float: left;
}

#footer ul#foot_nav {
  float: left;
  width: 750px;
  padding: 15px 0 0 1px;
}
#footer ul#foot_nav li {
  float: left;
}
#footer ul#foot_nav li, #footer ul#foot_nav li a {
  text-transform: uppercase;
  line-height: 16px;
  font: normal 10px Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none;
}
#footer ul#foot_nav li a:hover {
  text-decoration: underline;
}

#footer p#author {
  float: right;
  line-height: 16px;
  font: normal 10px Arial, Helvetica, sans-serif;
  margin: 10px 0 0 0;
  color: #ffffff;
}
#footer p#author a {
  line-height: 16px;
  font: 11px Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-decoration: none
}
#footer p#author a:hover {
  text-decoration: underline;
}

/* ADMIN PANEL */
div#admin_panel {
  width: 97px;
  height: 110px;
  position: fixed;
  top: 385px; 
  left: 10px;
  text-align: left;
}

/* IE6 */
* html div#admin_panel {
  position: absolute;
  top: 385px; 
  left: 10px;
  text-align: left;
}

/* IE7 Only */
*:first-child+html div#admin_panel {
  width: 97px;
  height: 110px;
  position: absolute;
  top: 385px; 
  left: 10px;
  text-align: left;
}

.admin_option {
  margin-bottom: 3px;
}

.admin_option a {
  color: #fefefe;
  font-size: 12px;
  text-indent: -9999px;
  display: block;
  width: 100px;
  height: 23px;
}

.admin_option a#view {
	background-image: url(../images/view_off.png);
	background-repeat: no-repeat;
}

.admin_option a#view:hover {
	background-image: url(../images/view_on.png);
	background-repeat: no-repeat;
}

.admin_option a#edit {
	background-image: url(../images/edit_off.png);
	background-repeat: no-repeat;
}

.admin_option a#edit:hover {
	background-image: url(../images/edit_on.png);
	background-repeat: no-repeat;
}

.admin_option a#logout {
	background-image: url(../images/logout_off.png);
	background-repeat: no-repeat;
}

.admin_option a#logout:hover {
	background-image: url(../images/logout_on.png);
	background-repeat: no-repeat;
}

.fckDiv {
  float: left;
  border: 1px dotted;
  border-color: #346f70;
  cursor: pointer;
  position: relative;
}

.fckDiv_inner {
  width: 274px;
  height: 143px; 
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #000000;
  z-index: 2;
  filter: alpha(opacity=10); 
  opacity: .00001;
  -moz-opacity:0.001
}

.fckDiv_img {
  float: left;
  position: relative;
}

div.edit_thumb {
	width: 154px;
	height: 26px;
	background-image: url(../images/change_thumb.jpg);
	background-repeat: no-repeat;
	position: absolute;
	z-index: 10;
	cursor: pointer;
	bottom: 0px;
	right: 0px;
	margin-bottom: -26px;
}

iframe#Fragmenteditor_box {
  height: 270px !important;
}
