/*@import url(https://fonts.googleapis.com/css?family=Roboto);*/

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: verdana;
}

#windowMain, #containerMain {
  width: 100%;
  height: 100%;
}

#containerMiddle {
  width: 100%;
  height: 100%;
  float: left;
}

#content {
  height: 100%;
}

#oylloCanvas {
  border: 1px solid black;
}

#canvasWrapper {
  background-color: white;  
}

.ocWindow {
  border-radius: 5px;
/*  box-shadow: 0px 0px 5px black;*/
  z-index: 500;
  position: fixed;
}

.ocWindow > * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ocWindowHeader {
  cursor: all-scroll;
  color: white;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  /*background-color: rgba(149, 165, 166, 0.9);*/
  background-color: #34495e;
  box-shadow: inset 0px 0px 5px #95a5a6;
  width: 100%;
  height: 20px;
  padding: 3px;  
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
}

.ocWindowHeader .ocWindowHeaderIcon {
  float: left;
  width: 16px;
  height: 16px;
}

.ocWindowHeader .ocWindowHeaderText {
  display: inline-block;
  text-align: center;
}

.ocWindowHeader .ocWindowShowHide {
  cursor: pointer;
  float: right;
  width: 16px;
  height: 16px;
}

.ocWindowHeader .ocWindowClose {
  cursor: pointer;
  float: right;
  width: 16px;
  height: 16px;
}

.ocWindowContent {
  width: 100%;
  /*min-height: 100px;*/
  max-height: 300px;
  padding: 4px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0px 0px 5px #95a5a6;
  font-size: 10px;
  overflow: auto;
}

#ocWindowUploader .ocUpload {
  width: 100%;
  height: 24px;
  /*background: url(https://lh6.googleusercontent.com/-dqTIJRTqEAQ/UJaofTQm3hI/AAAAAAAABHo/w7ruR1SOIsA/s157/upload.png);*/
  background-color: #34495e;
  color: white;
  text-align: center;
  font-size: 16px;
  border-radius: 5px;
  overflow: hidden;
}

#ocWindowUploader .ocUpload input {
  display: block !important;
  width: 100% !important;
  height: 24px !important;
  margin-top: -22px;
  opacity: 0 !important;
  overflow: hidden !important;
}
 