
/*
html {
    height: 100%;
}
*/

body {
	margin: 0px;
	padding: 0px;
	height: 100%;

	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	font-size: 15px;

	color: #d0d0d0;
	background-color: #404040;
	overflow: hidden;
}

a {
	color: #d0d0d0;
}

p {
	text-align: justify;
}

div#bg {
	background-image: url(/img/hdr_bg.png);
	height: 90px;
}

div#hdr {
	margin: 10px;
	top: 0px;
	left: 0px;
	position: absolute;
	display: inline-block;
	font-size: 32px;
	font-weight: bold;
	text-align: left;
	width: 40%;
}

div#loc {
	margin: 10px;
	top: 15px;
	right: 0px;
	position: absolute;
	display: inline-block;
	font-size: 32px;
	font-weight: bold;
	width: 40%;
	text-align: right;
}

div#menu {
	background-color: #303030;
	position: relative;
	width: 100%;
	text-align: right;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
	height: 40px;
}

div.menuItem,
div.menuGroup {
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: #a0a0a0;
	font-size: 17px;
	border-radius: 20px 20px 0px 0px;
}
div.menuItemSel,
div.menuGroupSel {
	background-color: #3a3a3a;
}
div.menuItem:hover,
div.menuGroup:hover,
span.subMenuItem:hover {
	background-color: #404040;
	cursor: pointer;
}
div.menuGroupList {
	display: inline-block;
	/*display: none;*/
	position: absolute;
	top: 130px;
	background-color: #303030;
	z-index: 100;
	overflow: hidden;
	border-radius: 0px 0px 20px 20px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);

	transform: scaleY(1);
	transform-origin: top;
	transition: transform 0.25s ease;

}
div.menuGroupListHide {
	transform: scaleY(0);
}
span.subMenuItem {
	display: table;
	/*padding: 5px;*/
	padding: 5px 15px;
	text-decoration: none;
	color: #a0a0a0;
	font-size: 17px;
	width: 100%;
}

div#login {
	width: 300px;
	margin: 50px auto 0px auto;
	padding: 10px 0px;
	/* box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
	border: 1px solid #202020; */
}

div#login h3 {
	margin: 0px 0px 10px 0px;
	text-align: center;
}

div#login span.field {
	width: 100px;
	display: inline-block;
	margin-bottom: 10px;
	text-align: right;
	padding-right: 10px;
}

div#login input {
	letter-spacing: 1px;
	font-size: 12px;
	border: 1px solid #202020;
	padding: 3px;
	background-color: #a0a0a0;
	color: #404040;
}

div#login input[type=submit] {
	background-color: #606060;
	color: #a0a0a0;
	margin: 0px auto;
	padding: 4px 10px 6px 10px;
	display: block;
	position: relative;
}

div#login input[type=text], div#login input[type=password] {
	width: 150px;
}

div.center {
	text-align: center;
}

div.contentContainer {
	padding: 20px 20px 40px 20px;
	background-color: #303030;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);

	position: absolute;
	top: 150px;
	right: 50px;
	bottom: 50px;
	left: 50px;
}

/* Dialog and Notifiers */

div#notifier_container,
div#notifier_container_right {
	position: absolute;
	height: 40px;
	bottom: 0px;
	background-color: #000000;
	font-color: #ffffff;
	font-size: 22px;
	font-weight: bold;
	padding: 10px 20px 0px 20px;

	border-radius: 20px 20px 0px 0px;
	transition: all 0.5s;
}
div#notifier_container {
	left: 0px;
}
div#notifier_container_right {
	right: 0px;
}
div#notifier_container.hide,
div#notifier_container_right.hide {
	transition: all 0.5s;
	bottom: -60px
}

div#alert_box_container,
div#confirm_box_container {
	display: none;
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 2;
}

div#alert_box,
div#confirm_box,
div#calendar_box {
	position: relative;
	margin: 0px auto 0px auto;
	width: 500px;
	/*height: 300px;*/
}

div#alert_box span.title,
div#confirm_box span.title {
	display: block;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
}
div#alert_box span.content,
div#confirm_box span.content {
	display: block;
	margin-top: 20px;
	margin-bottom: 50px;
}

div#alert_box div#alert_ok {
	/*display: block;*/
	position: absolute;
	bottom: 20px;
	left: 165px;
	width: 200px;
	height: 35px;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	background-color: #707070;
	padding-top: 5px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.25);
}

div#confirm_ok, div#confirm_cancel {
	position: absolute;
	bottom: 20px;
	height: 35px;
	width: 150px;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	cursor: pointer;
	background-color: #707070;
	padding-top: 5px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.25);
}

div#confirm_ok {
	right: 20px;
}

div#confirm_cancel {
	left: 20px;
}


#map {
    /*height: 500px;*/
    /*width: 100%; */
	position: absolute;
	top: 150px;
	bottom: 0px;
	right: 0px;
	left: 0px;
}

#floating-panel {
  position: absolute;
  top: 10px;
  left: 25%;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: "Roboto", "sans-serif";
  line-height: 30px;
  padding-left: 10px;
}

#floating-panel {
  background-color: #fff;
  border: 1px solid #999;
  left: 25%;
  padding: 5px;
  position: absolute;
  top: 10px;
  z-index: 5;
}


