/* CSS Document */
@-ms-viewport
{
  width: auto;
  initial-scale: 1;
}
@viewport
{
  width: device-width;
  initial-scale: 1;
}

html,body
{
  height:100%;
  overflow: no-display;
}

#head
{
  height: 60px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #c6cacd;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: none;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  z-index: 100;
  box-shadow: 0px 1px 4px rgba(49, 49, 64, 0.1);
  position: fixed;
  top: 1px;
  left: 1px;
  right: 1px;
}

#content_wrapper
{
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 60px;
}

#map
{
  background-color: #FFFFFF;
  background-image: none;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  height: 100%;
  width: 70%;
  float: left;
}

#map div
{
  box-sizing: content-box;
}

#side_panel
{
  position: relative;
  background-color: #ffffff;
  background-image: none;
  background-repeat: repeat;
  background-attachment: scroll;
  background-position: 0% 0%;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  height: 100%;
  width: 30%;
  float: left;
  display: flex;
  flex-direction: column;
}

#docolist
{
  position: relative;
  background-color: #ffffff;
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: auto;
  overflow-y: auto;
}

#viewer_notice
{
  flex: 0 0 auto;
  padding: 12px;
  text-align: center;
  background-color: #ffffff;
}

#viewer_notice img
{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.docolistitem
{
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #D3D3D3;
  padding: 3px;
  overflow: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.withmarker{
  cursor: pointer;
}

.nomarker{
  background-color: #F5F5F5;
}

.docolistitem .displayname
{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #F0F0F0;
	font-size: large;
	text-shadow: 1px 1px 2px #d1d1d1;
}

.docolistitem .update
{
	color: dodgerblue;
	font-size: small;
	padding-left: 6px;
}

.docolistitem .control
{
	float: right;
}

.docolistitem table tr td
{
  width: 1%;
}

.docolistitem1
{
  background-color: #FFBFBF;
}
.docolistitem2
{
  background-color: #C6F0FF;
}
.docolistitem3
{
  background-color: #F2FFF4;
}

.gpath-selected
{
  border-width: 3px;
  border-style: solid;
  border-color: #FF6600;
}

.docohead
{
	background-color: #FFBFBF;
	padding: 10px;
}

#reload #pushme{
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00FF21;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#autoreload{
	position: absolute;
	top: 10px;
	right: 0px;
	border-radius: 50%;
	background: #1988ff;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.iloon_title{
	font-style: italic;
	margin-top: 0px;
	margin-bottom: 0px;
}

@media screen and (max-device-width: 480px){
	.spinv
	{
	  display:none;
	}
	#content_wrapper
	{
	  padding-top: 0px;
	}
}
@media screen and (max-width: 480px){
  html,
  body {
    height: auto;
    min-height: 100%;
    overflow-y: auto;
  }
 
  #content_wrapper {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }
 
  #map {
    float: none;
    width: 100%;
    height: 55vh;
    min-height: 360px;
  }
 
  #side_panel {
    float: none;
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
  }
 
  #docolist {
    height: auto;
    max-height: none;
    overflow: visible;
  }
 
  #viewer_notice {
    width: 100%;
    padding: 10px 12px 20px;
    box-sizing: border-box;
    background-color: #ffffff;
  }
 
  #viewer_notice img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1070px){
	#map{
		width: calc(100% - 321px);
	}
	#side_panel{
		width: calc(321px);
	}
}
