/* CSS Symptom software */

html,body {
  background: #fff;
  width: 100%;
  height: 100%;  
  margin: 0 0 -11px 0;
  padding: 0;
  font-family: tahoma;
  font-size: 11px;
  color: #555;
  cursor: default;
}

a {
  text-decoration: none;
  color: #275fba;
}

a:hover {
  text-decoration: underline;
}

.blue {
  color: #275fba;
}

.red {
  color: darkred;
}

.boldStatus {
  font-weight: bold;
}

.hide {
  display: none;
}

div.page {
  margin: 0 auto 42px auto;
  width: 990px;       
}

div.headline {
  height: 26px;
  background: #f5f5f5;
  border-bottom: 1px solid #bbb; 
  overflow: visible;
  padding: 12px;
}

div.headline img.logo_symptom {
  float: left;
  margin: 0;
}

div.top {
  float: left;
  margin: 5px 0 0 30px;
}

div.top input[type=text] { width: 400px; } 

div.top input[type=submit] { margin: 0; } 

div.r_m {
  margin: 6px 0 0 0;
  float: right;
}

/* Full search */

div.buttonOpen {
  position: absolute;
  width: 15px;
  height: 7px;
  background: url("../images/sub.png") no-repeat;
  margin: 11px 0 0 392px;      
  transform:rotate(90deg); 
  -webkit-transform:rotate(90deg); 
  -moz-transform:rotate(90deg); 
  -o-transform:rotate(90deg);
}

div.buttonClose {
  position: absolute;
  width: 15px;
  height: 7px;
  background: url("../images/sub.png") no-repeat;
  margin: 2px 0 0 392px;      
  transform:rotate(270deg); 
  -webkit-transform:rotate(270deg); 
  -moz-transform:rotate(270deg); 
  -o-transform:rotate(270deg);
}

div.fullSearch {
  display: none;
  position: absolute;
  z-index: 99;
  overflow: visible;
  width: 392px;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: -1px;
  padding: 7px
  
}

div.fullSearch input[type=text] {
  width: 98%;
  margin: 4px 0 8px 0;
}

div.fullSearch select {
  margin: 4px 0 8px 0;
}

/* menu */

div.menu {
  overflow: hidden; 
  padding-bottom: 6px;
}

ul.menu {
	display: block;
	list-style: none;
	overflow: visible;
	font-family: arial;
  margin: 6px 0 0 0; 	
	padding: 0;
}

ul.menu li {
	float: left;
}

ul.menu a {
	text-decoration: none;
	display: block;
	
	color: #444;
	margin-right: 15px;
	padding: 7px 10px;
	cursor: default;
}

ul.menu a:hover {
  background: #f2f2f2;
}

ul.menu li.active a, ul.menu li.active a:hover {
  background: #ddd;
  color: #000;
}

ul.menu li a.on, ul.menu li a.on:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 3px #777;
  padding: 7px 10px;
}

div.menu_more {
  display: none;
  position: absolute;
  z-index: 100;
  width: 200px;
  background: #fff;
  box-shadow: 0 0 3px #777;
  margin-top: 36px;
  padding: 3px 0;
}

div.menu_more div.clear {
  position: absolute;
  z-index: 101;
  width: 0px;
  height: 3px;
  background: #fff;
  margin-top: -6px;
}

div.menu_more ul {
	display: block;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 0;
	cursor: default;
	width: 200px;
}

div.menu_more ul li.bar {
	width: 200px;
	height: 1px;
	background: #ddd;
}

div.menu_more ul a {
	display: block;
	width: 185px;
	text-decoration: none;
	background: #fff;
	font-family: arial;
	color: #000;
	padding: 6px 0 6px 15px;
	margin: 5px 0;
	cursor: default;
}

div.menu_more ul a:hover {
	background: #e9e9e9;
}

div.menu_more ul li a.sub {
  background: url("../images/sub.png") no-repeat center right;
}

div.menu_more ul li:hover a.sub {
  background: #e9e9e9 url("../images/sub.png") no-repeat center right;
}

div.menu_more ul li div.submenu {
  display: none;
  position: absolute;
  z-index: 100;
  margin-left: 200px;
}

div.menu_more ul li div.submenu div.menu {
  margin-left: 1px;
  width: 200px;
  background: #fff;
  box-shadow: 0 0 3px #777;
  padding: 3px 0;
}

/* forms */

form {
  margin: 20px 0 0 0;
}

form strong {
  display: block;
  margin: 8px 0;
  color: #222;
}

form span.alert {
  display: block;
  margin: 6px 0 12px 0;
  font-size: 11px;
  color: red;
}

input {
  font-size: 11px;
}

input[type=text], input[type=password], textarea, select {
  width: 100%;
}

input[type=text]:hover, input[type=password]:hover, textarea:hover, select:hover {
  border-top: 1px solid #888;
  border-bottom: 1px solid #b4b4b4;
  border-left: 1px solid #b4b4b4;
  border-right: 1px solid #b4b4b4;
}

input[type=text], input[type=password] {
  margin: 0px;
  padding: 2px 3px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  outline: none;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
  border-color: #3079ED;
  box-shadow: inset 2px 2px 4px #ccc;
}

textarea {
  margin: 0px;
  min-height: 20px;
  height: 10px;
  width: 99%;
  resize: vertical;
  padding: 5px 4px 0px 4px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  outline: none;
  font-family: tahoma;
  font-size: 11px;
}

input[type=submit], input[type=button] { 
  margin-top: 16px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 0 #3079ED; 
  background: #4D90FE;
  border: 1px solid #3079ED;
  border-radius: 2px;
  padding: 2px 9px;
  cursor: pointer;
}

input[type=submit]:active, input[type=button]:active {
  box-shadow: inset 0px 2px 4px #3079ED;
  border-color: #275fba;
}

input[type=submit].red, input[type=button].red { 
  margin-top: 16px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 1px 0 #d92727; 
  background: #ed3d3d;
  border: 1px solid #d92727;
  border-radius: 2px;
  padding: 2px 9px;
  cursor: pointer;
}

input[type=submit].red:active, input[type=button].red:active {
  box-shadow: inset 0px 2px 4px #d92727;
  border-color: #d11e1e;
}

select {
  margin: 3px 0;
  padding: 2px 3px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  outline: none;
  font-size: 11px;
}

div.app h1 input[type=text] {
  margin: 0;
  display: inline;
  height: 20px;
  width: 260px;
  font-size: 14px;
  line-height: 21px;
  color: #444;                    
  font-weight: bold;
  border: none;
  box-shadow: none;
  padding: 3px 7px 4px 7px;
}

div.app h1 input[type=text]:hover {
  background: #f7f7f7;
}

div.app h1 input[type=text]:focus {
  background: #f1f1f1;
}

input.disabled, input.disabled:hover, input.disabled:active, input.disabled:focus {
  background: #fff;
  color: #555;
  border: none;
}

textarea[name^=description] {
  height: 40px;
} 

/* front */

div.front {
  margin: 120px auto;
  width: 250px;
  background: #f5f5f5;
  border: 1px solid #bbb;
  box-shadow: 0 2px 6px #bbb;
  padding: 20px;
}

div.front h1 {
  float: left;
  margin: 8px 0;
  color: #444;
  font-size: 14px;
  font-weight: bold;
}

div.center {
  text-align: center;
}

/* app */

div.close {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 99;
}

div.app {
  overflow: hidden;
  margin: 0;
}

div.app h1 {
  margin: 0;
  font-size: 14px;
  color: #444;                    
  font-weight: bold;
  border-bottom: 1px solid #bbb;
  box-shadow: 0 2px 5px #ccc;
  padding: 8px 0;
}

div.app h1.center {
  margin: 0;
  font-size: 14px;
  color: #444;                    
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #bbb;
  box-shadow: 0 2px 5px #ccc;
  padding: 16px 0;
}

div.app h2 {
  margin: 8px 0 0 0;
  font-size: 12px;
  color: #000;
  border-bottom: 1px solid #bbb;
  padding: 8px 0;
}

div.app div#note h2 {
  margin: 5px 0 20px -60px;
}

div.app h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #000;
  border-bottom: 1px solid #bbb;
  padding: 8px 0;
}

span.gp {
  font-size: 15px;
}

div.app h3 span.right {
  float: right;
  font-size: 11px;
  font-weight: normal;
}

/* options */

div.options {
  padding: 8px 8px 0 8px;
  background: #f5f5f5;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  padding-bottom: 8px;
  overflow: hidden;   
}

div.options ul, div.options ul li {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;         
}

div.options ul li.color {
	border-color: #a64200;
	background: #dd4b39;
   background-image: linear-gradient(bottom, rgb(197,54,39) 11%, rgb(221,76,57) 56%);
   background-image: -o-linear-gradient(bottom, rgb(197,54,39) 11%, rgb(221,76,57) 56%);
   background-image: -moz-linear-gradient(bottom, rgb(197,54,39) 11%, rgb(221,76,57) 56%);
   background-image: -webkit-linear-gradient(bottom, rgb(197,54,39) 11%, rgb(221,76,57) 56%);
   background-image: -ms-linear-gradient(bottom, rgb(197,54,39) 11%, rgb(221,76,57) 56%);
	color: #fff;        
}

div.options ul li.color:active {
  border-color: #a64200;
	background: #c53727;          
	color: #fff;
	box-shadow: inset 0px 2px 4px #ac372a;
}

div.options ul li {
	float: left;
}

div.options ul li.r {
	float: right;
	margin: 0 0 0 8px;
}

div.options ul li.rs {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0;
}

div.options ul li.ls {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
  margin-left: 0;
}

div.options ul li.cs {
  border-radius: 0;
  border-left: none;
  margin: 0;
}

div.options ul li.text, div.options ul li.text:active {
	float: right;
	margin: 0 0 0 8px;
	background: none;
	border: none;
	font-weight: normal;
	padding: 9px 9px 0px 9px;
	box-shadow: none;
	cursor: default;
}

div.options ul li.ltext, div.options ul li.ltext:active {
	float: left;
	background: none;
	border: none;
	font-weight: normal;
	padding: 9px 9px 0px 9px;
	box-shadow: none;
	cursor: default;
}

div.options ul li.input, div.options ul li.input:active {
	float: right;
	margin: 0 0 0 8px;
	background: none;
	border: none;
	font-weight: normal;
	padding: 0;
	box-shadow: none;
	cursor: default;
}

div.options ul li.input input[type=text], div.options ul li.input:active input[type=text] {
	padding: 4px 2px;      
}

div.options ul li.hold, div.options ul li.hold:active {
  background: #f4f4f4;
	box-shadow: none;
	border-color: #ddd;
	color: #aaa;
	cursor: default;   
}	

div.options ul li {
	text-decoration: none;
	display: block;
  float: left;
  height: 21px;
  background: #f2f2f2;
   background-image: linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -o-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -moz-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -webkit-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -ms-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
  border: 1px solid #c4c4c4;
  border-radius: 2px;  
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  color: #444;
  margin: 0 8px 0 0;
  padding: 7px 12px 0px 12px;
  cursor: default;
}

div.options ul li:active {
  background: #e4e4e4;
  box-shadow: inset 0px 2px 4px #bbb;
  border-color: #aaa;
}

div.options ul li.active {
  background: #e4e4e4;
  box-shadow: inset 0px 2px 4px #bbb;
  border-color: #aaa;
}

/* tables */

table.list {
  background: #fff;
  width: 100%;
  border-collapse: collapse;    
}

table.list tr {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #d3d3d3;
  cursor: default;
  line-height: 20px;      
}  
      
table.erg tr {
  line-height: 11px;  
}

table.list tr.title {
  font-weight: bold;
  border-bottom: 1px solid #aaa; 
}

table.list td.title {
  font-weight: bold;
}

table.list tr.tab {       
  font-weight: bold;
  background: #ccc;
   background-image: linear-gradient(bottom, #ccc 0%,  #eee 100%);
   background-image: -o-linear-gradient(bottom, #ccc 0%,  #eee 100%);
   background-image: -moz-linear-gradient(bottom, #ccc 0%, #eee 100%);
   background-image: -webkit-linear-gradient(bottom, #ccc 0%,  #eee 100%);
   background-image: -ms-linear-gradient(bottom, #ccc 0%,  #eee 100%);     
  border-bottom: 1px solid #aaa;   
}

table.list tr.tab:hover input[type=text] {       
  box-shadow: none;
  background: rgba(0,0,0,0.05);
}

table.list tr.tab input[type=text] {
  width: 260px;
  height: 19px;
  background: none;
  box-shadow: none;
  border: none;
  font-size: 12px;
  font-weight: bold;
  color: #555; 
}

table.list td.sThumb {
  box-shadow: inset 0 0 10px 5px rgba(0,0,0,0.3);
}

table.list td.sThumb div {
  display: in-line;
  background: rgba(255,255,255,0.4);
  padding: 5px;
  font-weight: bold;
  color: #000;
}

div.new_tab {
  display: inline;
  background: #ddd;
  border-radius: 2px;
  box-shadow: 4px 4px 0 #f1f1f1;
  font-size: 10px;
  color: #666;
  padding: 7px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

div.new_tab:hover {
  opacity: 1;
}

table.list tr.tab input[type=text]:focus {
  box-shadow: none;
  background: rgba(0,0,0,0.1);
}

table.list tr.tab span.remove_tab {
  display: none;   
}

table.list tr.tab:hover span.remove_tab {
  position: absolute;
  display: inline;
  margin: 0px 0 0 10px;
  padding: 1px 8px 2px 8px;
  font-size: 10px;
  font-weight: normal;
  color: #f06c6c;      
}

table.list tr.tab:hover span.remove_tab:hover {
  background: rgba(255,0,0,0.1); 
}
                                   
table.list tr.roz {
  background: #eff4fb;  
}

table.list tr.roz td.odd {
  background: #e7eef9;
}

table.list tr.checked td {
  background: #ffefd4;
}

table.list tr.checked td.odd {
  background: #f5e7d0;
}

table.list tr.click {
  cursor: pointer;
}

table.list tr.h:hover, table.list tr.h2:hover {
  background: #ffffcc;
}
  
table.list tr.h:hover td.odd, table.list tr.h:hover td.sorted, table.list tr.h:hover td.odd_viewer {
  background: #f6f5c6;
}

table.list td {
  padding: 8px;
}

table.list td.odd {
  background: #f8f8f8;
}

table.list td.sort:hover {
  background: #ecffec;
  cursor: pointer;
}

table.list tr.title td.sorted {
  background: #e3e3e3;
  cursor: pointer;
}

table.list td.sorted {
  background: #f1f1f1;
}

table.list td.odd_viewer {
  width: 80px;
}

table.list td.center {
  text-align: center;
}

table.list td.center input[type=text] {
  text-align: center;
}

table.list td.right {
  text-align: right;
}

td.right {
  text-align: right;
  padding-right: 10px;
}

table.list td.right input[type=text] {
  text-align: right;
}

table.list td span.go_up {
  display: block;
  font-size: 11px;
  color: #275fba;
  cursor: pointer;
}

table.list td span.go_up img {
  float: left;
  margin: 2px 5px 0 0;
  border: none;
}

table.list td.remove {
  text-align: center;
  font-size: 11px;
  color: #777;
  cursor: pointer;
}

table.list td.remove b {
  display: block;
  font-size: 20px;
}

table.list td.remove:hover {
  color: #851000;
  background: #CF6C6C;
   background-image: linear-gradient(bottom, #CF6C6C 0%, #FFB8B8 100%);
   background-image: -o-linear-gradient(bottom, #CF6C6C 0%, #FFB8B8 100%);
   background-image: -moz-linear-gradient(bottom, #CF6C6C 0%, #FFB8B8 100%);
   background-image: -webkit-linear-gradient(bottom, #CF6C6C 0%, #FFB8B8 100%);
   background-image: -ms-linear-gradient(bottom, #CF6C6C 0%, #FFB8B8 100%);
}

tr.removed {
  background: #FFE5E5;
  font-weight: bold;
  color: #851000;
}

td.brd {
  padding: 4px;
  border: 1px solid #777;
  box-shadow: 1px 1px 0 #bbb;
}

/* cells */

table.cells {
  margin: 0;
  width: 100%;
  border: 1px solid #d1d1d1;
  border-collapse: collapse;
}

table.cells td {      
  border: 1px solid #d1d1d1;  
}

table.cells td.use { 
  background: #ffffcc;
}

table.cells td.text { 
  padding: 4px 8px;
}

table.cells td.text_pm { 
  padding: 4px 2px;
}

table.cells td b { 
  color: #111;
}     

table.cells td.bb { 
  -webkit-transform: rotate(90deg);	
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  padding: 0;
}

table.cells td.center, table.cells td.center input { 
  text-align: center;
}      

table.cells td.right { 
  text-align: right;
}

table.cells tr {
  height: 31px;
}

table.cells select {
  margin: 0;
  border: none;
  height: 28px;
  font-size: 11px;    
  padding: 2px;        
  resize: none;
  outline: none;
}

table.cells input[type=text] {
  margin: 0;
  border: none;
  height: 24px;
  font-size: 11px;    
  padding: 2px;        
  resize: none;
}

table.cells input[type=text]:focus {
  margin: -2px -3px -3px -3px;    
  border: 2px solid #888; 
  padding: 2px 3px;  
}

table.cells td.check {
  font-size: 10px;
  color: #777;
}

table.cells td.checked {
  background: #f3f3f3;
  box-shadow: inset 0px 2px 4px #ccc;
  font-size: 10px;
  color: #777;
}

div.scroll_cells {
  height: 309px;
  min-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  resize: vertical;
}

div.scroll_cells table {
  margin-top: -1px;
}

/* info */

table.info h3 {
  margin: 2px 0;
  color: #000;
  font-size: 11px;
  border: none;
}

table.info small {
  line-height: 20px;
  font-size: 11px;
  color: #555;
}

/* view_more */

div.details {
  position: absolute;
  margin-left: 96px;
  width: 872px;
  background: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 11px;
  line-height: 16px;
  padding: 3px 10px;
}

div.mDetails {
  display: none;
  position: absolute;
  margin: -8px 0 0 48px;
  text-align: left;
}

div.mDetails div {
  position: absolute;
  width: 550px;        
  background: #777;
  border: 1px solid #555;
  box-shadow: 0 5px 6px #aaa;
  line-height: 21px;
  margin-left: 10px;
  text-align: left;
  padding: 3px;        
}

div.mDetails span.narrow {
  position: absolute;
  z-index: 22;
  width: 10px;
  height: 16px;
  background: url('../images/narrow4.png');
  margin: 7px 0 0 1px;
}      

/* settings */

div.settings_area {
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px 0 0 0;
}

div.settings_area div.left {
  float: left;
  padding-right: 80px;
}

div.settings_area div.right {
  float: right;
  padding-left: 80px;
  border-left: 1px solid #bbb;
}

/* Sections */

div.fleft {
  float: left;
  margin: 10px 0;
}

div.fright {
  float: right;
  margin: 10px 0;
}

/* pop_up */

div.pop_up {
  display: none;
  position: absolute;
  width: 700px;
  background: #fff;
  border: 1px solid #a1a1a1;
  border-radius: 2px;
  box-shadow: 0 0 10px #999;
  font-size: 11px;
  padding: 4px;
  margin: 100px 143px;
}

div.pop_up div.title {
  background: #f2f2f2;
   background-image: linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -o-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -moz-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -webkit-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
   background-image: -ms-linear-gradient(bottom, rgb(222,222,222) 0%, rgb(242,242,242) 60%);
  border: 1px solid #bbb;
  border-radius: 2px;
  margin-bottom: 16px;
}

div.pop_up div.title span {
  display: block;
  font-weight: bold;
  color: #000;
  margin: 6px 8px;
}

div.pop_up div.confirm {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #bbb;
  padding: 8px 0 4px 0;
  margin-top: 16px;
  text-align: center;
}

div.pop_up div.confirm input[type=button] {
  margin: 0 0 0 0;
}

/* select */

div.select_scroll {
  height: 300px;
  width: 207px;
	overflow-y: scroll;
	overflow-x: hidden;
}


ul.select {
	display: block;
	width: 175px;
	list-style: none;
	margin: 8px 0 0 0;
	padding: 0;
}

ul.select li {
	display: block;
	width: 173px;
	padding: 6px 5px;
	cursor: pointer;
}

ul.select li:hover {
	background: #ffde9d;
}

ul.select li.selected {
	background: #ffa800;
	color: #fff;
	cursor: default;
}

/* calendar_line */

div.calendar_line {
  overflow: hidden;
  height: 145px;
  background: #f2f2f2;
  cursor: default;
}

div.calendar_line div.back {  
  float: left;
  height: 103px;
  width: 28px;
   background-image: linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -o-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -moz-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -webkit-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -ms-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
  border-right: 1px solid #bbb;
  text-align: center;
  font-size: 45px;
  text-shadow: 0 1px 0 #fff;
  color: #888;
  padding-top: 42px;
  cursor: pointer;
}

div.calendar_line div.forward {  
  float: right;
  height: 103px;
  width: 28px;
   background-image: linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -o-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -moz-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -webkit-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
   background-image: -ms-linear-gradient(bottom, rgb(217,217,217) 0%, rgb(245,245,245) 100%);
  border-left: 1px solid #bbb;
  text-align: center;
  font-size: 45px;
  text-shadow: 0 1px 0 #fff;
  color: #888;
  padding-top: 42px;
  cursor: pointer;
}

div.calendar_line div.back:hover, div.calendar_line div.forward:hover {  
   background-image: linear-gradient(bottom, rgb(224,224,255) 0%, rgb(247,245,255) 100%);
   background-image: -o-linear-gradient(bottom, rgb(224,224,255) 0%, rgb(247,245,255) 100%);
   background-image: -moz-linear-gradient(bottom, rgb(224,224,255) 0%, rgb(247,245,255) 100%);
   background-image: -webkit-linear-gradient(bottom, rgb(224,224,255) 0%, rgb(247,245,255) 100%);
   background-image: -ms-linear-gradient(bottom, rgb(224,224,255) 0%, rgb(247,245,255) 100%);
  color: #333;
}

div.calendar_line div.dates_area {
  float: left;
}

div.calendar_line div.bar {
  float: left;
  height: 145px;
  width: 2px;
  background: #777;
}

div.calendar_line div.date {
  float: left;
  width: 161px;
}

div.calendar_line div.date h5 {
  margin: 0;
  height: 13px;
  width: 160px;
  background: #d1d1d1;
   background-image: linear-gradient(bottom, rgb(209,209,209) 0%, rgb(194,194,194) 100%);
   background-image: -o-linear-gradient(bottom, rgb(209,209,209) 0%, rgb(194,194,194) 100%);
   background-image: -moz-linear-gradient(bottom, rgb(209,209,209) 0%, rgb(194,194,194) 100%);
   background-image: -webkit-linear-gradient(bottom, rgb(209,209,209) 0%, rgb(194,194,194) 100%);
   background-image: -ms-linear-gradient(bottom, rgb(209,209,209) 0%, rgb(194,194,194) 100%);  
  border-right: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  font-size: 11px;
  text-align: center;
  color: #333;
  padding: 3px 0;
}

div.calendar_line div.date span.title, div.calendar_line div.date span.title:hover {
  background: #f2f2f2;
  border-bottom: 1px solid #bbb;
  height: 13px;
  cursor: default;
}

div.calendar_line div.date span.empty, div.calendar_line div.date span.empty:hover {
  background: #fff;
  height: 13px;
  cursor: default;
}

div.calendar_line div.date span {
  float: left;
  width: 22px;
  background: #fff;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 11px;
  color: #555;
  padding: 2px 0;
  cursor: pointer;
}

div.calendar_line div.date span:hover  {
background-image: linear-gradient(bottom, rgb(212,255,222) 0%, rgb(250,255,251) 100%);
background-image: -o-linear-gradient(bottom, rgb(212,255,222) 0%, rgb(250,255,251) 100%);
background-image: -moz-linear-gradient(bottom, rgb(212,255,222) 0%, rgb(250,255,251) 100%);
background-image: -webkit-linear-gradient(bottom, rgb(212,255,222) 0%, rgb(250,255,251) 100%);
background-image: -ms-linear-gradient(bottom, rgb(212,255,222) 0%, rgb(250,255,251) 100%);
}

/* Clipboard */

div.clipboard-list {
  display: none;
  float: right;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 8px;
  margin-right: 20px;
  cursor: pointer;
  opacity: 0.15;
}

div.clipboard {
  position: absolute;
  width: 326px;
  background: #f9f9f9;
  border: 1px solid #aaa;
  box-shadow: 0 3px 5px #aaa;
  z-index: 100;
  margin-left: -70px;
}

div.clipboard table {
  width: 95%;
  margin: 5px auto;
}

div.clipboard table tr {
}

div.clipboard td.right {
  float: right;
  padding-right: 10px;
}

/* Hints */

div.hints {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #aaa;
  margin-top: 2px;
  overflow: hidden;
}

div.hints ul {
	display: block;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	cursor: default;
}

div.hints ul a {
	display: block;
	width: 100%;
	text-decoration: none;
	background: #fff;
	font-family: arial;
	text-align: left;
	color: #000;
	padding: 6px 0 6px 6px;
	margin: 0;
	cursor: default;
}

div.hints ul a:hover {
	background: #e9e9e9;
}

div.hints ul a.on {
	background: #e9e9e9;
}

/* Ul's */

ul.classic {
  list-style-type: circle;
}

/* Descriptions */

span.thisLp, span.thisLpm  {
  display: block;
  padding: 4px;
  border-radius: 14px;
}

div.description {
  margin: -11px 0 0 -300px;
  position: absolute;
  z-index: 1111;
  width: 280px;
}

div.description textarea.content, div.description textarea.content:hover, div.description textarea.content:focus {
  width: 254px;      
  height: 38px;       
  background: #e4eff2;
  border: 1px solid #c9dce0;
  box-shadow: 0 5px 6px #e3e3e3;
  line-height: 17px;
  text-align: left;
  padding: 6px 8px 3px 8px;
  resize: none;
}

div.description span {
  position: absolute;
  width: 10px;
  height: 16px;
  background: url('../images/narrow.png');
  margin: 18px 0 0 271px;
}

div.description div.content {
  width: 254px;      
  height: 38px;       
  background: #e4eff2;
  border: 1px solid #c9dce0;
  box-shadow: 0 5px 6px #e3e3e3;
  line-height: 17px;
  text-align: left;
  padding: 6px 8px 3px 8px;
}

/* fileArea */    

div.fileArea {
  position: absolute;
  margin: 0 0 0 990px;
  text-align: left;
}

div.fileArea div.area {
  width: 240px;            
  background: #ffffdb;
  border: 1px solid #e0e08f;
  box-shadow: 0 5px 6px #e3e3e3;
  line-height: 21px;
  margin-left: 10px;
  text-align: center;
  display:-moz-box;
  -moz-box-orient:horizontal;
  -moz-box-pack:center;
  -moz-box-align:center;
  display:-webkit-box;
  -webkit-box-orient:horizontal;
  -webkit-box-pack:center;
  -webkit-box-align:center;
  padding: 0 14px 0 14px;         
}

div.fileArea span.narrow {
  position: absolute;
  width: 10px;
  height: 16px;
  background: url('../images/narrow2.png');
  margin: 21px 0 0 1px;
}      

div.fileArea.remind div.area {          
  background: #fff5f5;
  border: 1px solid red;       
}

div.fileArea.remind span.narrow {
  position: absolute;
  width: 10px;
  height: 16px;
  background: url('../images/narrow3.png');
  margin: 21px 0 0 1px;
} 

div.fileArea span.status {
  float: right;
  color: #777;
}  

div.fileArea div.double span.file {
  margin: -24px 0 0 0;  
}         

div.fileArea div.double span.eps {
  margin: 24px 0 0 -240px;       
}         

/* DataUser */

div.dataUser {
  margin: -125px 0 0 -288px;
  position: absolute;
  width: 250px;
  background: #fff5f5;
  border: 1px solid #f0d8d8;
  box-shadow: 0 5px 6px #e3e3e3;
  padding: 0px 10px 8px 10px;  
}

div.dataUser h2 {
  margin: 0;
  border: none;  
}

div.dataUser input {
  width: 190px;
}

div.dataUser textarea {
  width: 188px;
}

div.dataUser select {
  width: 198px;
}

.alertUp {
  background: #fff5f5;
  border: 1px solid #f0d8d8;
}

/* progressBar */

span.Upload {          
  clear: both;
  display: block;
  width: 240px;
  text-align: left;   
  margin-bottom: 0;  
  padding: 0px;        
}

/* thumb */

div.thumb {
  position: absolute;
  z-index: 1111;
  margin: 0 0 0 990px;
  text-align: left;
}

div.thumb.hidden {
  display: none;
  position: absolute;
  z-index: 1111;
  margin: 0 0 0 179px;
  text-align: left;
}

td.sThumb:hover div.thumb.hidden {
  display: block;
}

div.thumb img {
  position: absolute;
  width: auto;  
  max-height: 50px;          
  background: #777;
  border: 1px solid #555;
  box-shadow: 0 5px 6px #e3e3e3;
  line-height: 21px;
  margin-left: 10px;
  text-align: center;
  display:-moz-box;
  -moz-box-orient:horizontal;
  -moz-box-pack:center;
  -moz-box-align:center;
  display:-webkit-box;
  -webkit-box-orient:horizontal;
  -webkit-box-pack:center;
  -webkit-box-align:center;
  padding: 2px;        
}

div.thumb span.narrow {
  position: absolute;
  z-index: 22;
  width: 10px;
  height: 16px;
  background: url('../images/narrow4.png');
  margin: 21px 0 0 1px;
}      


div.thumbMontage {
  display: none;
  position: absolute;
  margin: -170px 0 0 -420px;
  text-align: left;
}

div.thumbMontage img {
  position: absolute;
  width: 500px;           
  background: #777;
  border: 1px solid #555;
  box-shadow: 0 5px 6px #e3e3e3;
  line-height: 21px;
  text-align: center;
  display:-moz-box;
  -moz-box-orient:horizontal;
  -moz-box-pack:center;
  -moz-box-align:center;
  display:-webkit-box;
  -webkit-box-orient:horizontal;
  -webkit-box-pack:center;
  -webkit-box-align:center;
  padding: 2px;        
}

div.thumbMontage span.narrow {
  position: absolute;
  z-index: 22;
  width: 10px;
  height: 16px;
  background: url('../images/narrow4.png');
  margin: 152px 0 0 505px;
  transform:rotate(180deg); 
  -webkit-transform:rotate(180deg); 
  -moz-transform:rotate(180deg); 
  -o-transform:rotate(180deg);  
}      

/* workTabs */

div.workTab {
  clear: both;
  border: 1px solid #ccc;
  margin: 0 0 10px 0;
}

div.l50 {     
  width: 49%;
  float: left;
}

div.r50 {
  clear: right;
  width: 49%;
  float: right;
}

div.workTab h2 {
  background: #ddd;
  border-bottom: 1px solid #ccc;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  overflow: hidden;
  padding: 9px 7px 7px 7px;  
}

div.workTab h2 span {
  margin-top: -2px;
  float: right;
  color: #666;
}

div.l50t {
  width: 49%;
  float: left;
}

div.r50t {
  clear: right;
  width: 49%;
  float: right;
}

/* List job */

div.listJob {
  position: fixed; 
  overflow: hidden;
  width: 180px;  
  bottom: 26px; 
  right: 10px;
  z-index: 101;      
  background: #ffffdb;
  border: 1px solid #e0e08f;
  box-shadow: 0 5px 6px #e3e3e3;
  padding: 4px;
}

div.listJob h4 {
  margin: 0;
  border-bottom: 1px solid #e0e08f;
  padding-bottom: 4px;
}

div.listJob div.a {
  padding: 2px 0;
  border-bottom: 1px solid #e0e08f;
}

div.listJob div.a input[type=checkbox] {
  display: none;
  position: absolute;
  margin-top: 4px;
}    

div.listJob div.a:hover input[type=checkbox] {
  display: block;
}                                            

div.listJob div.a input[type=text], div.listJob div.a input[type=text]:hover, div.listJob div.a input[type=text]:focus {
  width: 96.5%;
  background: none;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 4px 3px 3px 22px;
}

div.listJob div.a input[type=text].done {
  text-decoration: line-through;
}

/* Bottom tube Chat */

div.bottom_tube {
  position: fixed; 
  width: 100%;
  height: 14px;     
  bottom: 0; 
  z-index: 3;      
  background: rgba(0,0,0,0.1);
  border-top: 1px solid #ccc;  
}

div.bottom_tube div.center {
  width: 990px;
  margin: -14px auto 0 auto;
}

div.bottom_tube div.box {
  width: 186px;
}

div.bottom_tube div.tag {
  width: 170px;
  height: 20px; 
  background: #f4f4f4; 
  border-top: 1px solid #aaa; 
  border-left: 1px solid #aaa; 
  border-right: 1px solid #aaa; 
  text-align: left;
  font-family: tahoma;
  font-size: 11px;
  font-weight: bold;
  padding: 7px 7px 0 7px;
  cursor: pointer;
}

div.bottom_tube div.tag:hover {
  background: #e1e1e1;
}

div.bottom_tube div.alert, div.bottom_tube div.alert:hover {
  background: orange;
  border-color: darkorange;
  color: #222;
}

div.bottom_tube div.r {
  margin-left: 10px;
  float: right;
}

div.bottom_tube div.chat {
  width: 178px;
  height: 160px;
  background: #fff;
  border-top: 1px solid #aaa; 
  border-left: 1px solid #aaa; 
  border-right: 1px solid #aaa;
  text-align: left;
  font-size: 11px;
  font-family: tahoma;
  color: #444;
  overflow-y: scroll;
  padding: 0 3px;
}

div.bottom_tube div.chat_users {
  width: 184px;
  height: 187px;
  background: #fff;
  border-top: 1px solid #aaa; 
  border-left: 1px solid #aaa; 
  border-right: 1px solid #aaa;
  text-align: left;
  font-size: 11px;
  font-family: tahoma;
  color: #444;
  overflow-y: scroll;
  padding: 0;
}

div.bottom_tube div.chat_users ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
	cursor: default;
	width: 167px;
}

div.bottom_tube div.chat_users li {
	display: block;
	width: 151px;
	text-decoration: none;
	background: #fff;
	font-family: arial;
	color: #000;
	padding: 8px 8px 9px 8px;
	margin: 0;
	cursor: default;
}

div.bottom_tube div.chat_users li span {
  display: block;
  float: left;
	font-size: 18px;
  margin: -4px 6px 0 0;
}

div.bottom_tube div.chat_users li:hover {
	background: #f4f4f4;
}

div.bottom_tube div.chat span.first {
  border-top: none;
}

div.bottom_tube div.chat span {
  clear: both;
  display: block;
  border-top: 1px solid #ddd;
  padding-bottom: 6px;
  line-height: 15px;
}

div.bottom_tube div.chat small {
  clear: both;
  display: block;
  font-size: 10px;
  color: #bbb;
  margin-bottom: 2px;
}

div.bottom_tube div.chat small b {
  color: #aaa;
}

div.bottom_tube form {
  margin: 0;
}

div.bottom_tube input[type=text] {
  width: 182px;
  height: 24px;
  padding: 1px;
  outline: none;
  font-size: 11px;
}

div.bottom_tube input[type=submit] {
  display: none;
}

div.bottom_tube span.available {
  color: green;    
}

div.bottom_tube span.inaccessible {
  color: grey;
}

div.bottom_tube div.on {     
  margin-top: -188px;
}

div.bottom_tube span.removeChat {     
  display: none;
  float: right;
}     

div.bottom_tube div.tag:hover span.removeChat, div.bottom_tube div.alert:hover span.removeChat{    
  display: block; 
  color: red;
}

/* CalendarArea */

div.calendarArea {
  position: fixed; 
  overflow: visible;
  width: 164px;  
  bottom: 26px; 
  left: 10px;
  z-index: 3;      
}

div.mCalendar {
  margin-bottom: 10px;
  overflow: hidden;
  width: 154px;  
  z-index: 3;      
  padding: 4px;   
  font-size: 10px;
}

div.mCalendar h4 {
  margin: 0;
  border-bottom: 1px solid #c9dce0;
  padding-bottom: 6px;
  text-align: center;
  font-size: 12px;
}

div.mCalendar span.leftMonth {
  float: left;
  cursor: pointer;
}

div.mCalendar span.rightMonth {
  float: right;
  cursor: pointer;
}

div.mCalendar div.days span {
  float: left;
  width: 22px;
  padding: 4px 0;  
  text-align: center;     
}

div.mCalendar div.days span.h:hover {
  width: 16px;
  padding: 2px 1px;  
  border-radius: 17px; 
  border: 2px solid #ccc;  
}

div.mCalendar div.days {
  overflow: hidden;
}

div.mCalendar div.days span.today {
  width: 16px;
  padding: 2px 1px;  
  border-radius: 17px; 
  border: 2px solid red;
}

div.mCalendar div.days span.evented {
  border-radius: 17px; 
  background: #c1cef5;
}

div.mCalendar div.days span.evented:hover {
  width: 16px;
  padding: 2px 1px;  
  border-radius: 17px; 
  border: 2px solid #777;  
}

div.mCalendar div.title {
  border-bottom: 1px solid #c9dce0;
  overflow: hidden;
}

div.mCalendar div.title span {
  float: left;
  width: 22px;
  padding: 4px 0;  
  text-align: center; 
}

div.events {
  overflow: hidden;
  width: 149px;  
  z-index: 3;      
  background: #e4eff2;
  border: 1px solid #c9dce0;
  box-shadow: 0 5px 6px #e3e3e3;
  padding: 4px;   
  font-size: 10px;
}

div.events h4 {
  margin: 0 0 5px 0;
  border-bottom: 1px solid #c9dce0;
  padding-bottom: 4px;
  font-size: 11px;
}

div.events h5 {
  margin: 2px 0;
  font-size: 11px;
  font-weight: normal;
}

div.events ul {
  margin: 5px 0;
  padding: 0 0 0 20px;
}    

div.events li {
  margin-bottom: 7px;
}

/* eventList */

div.eventList {
  display: none;
  z-index: 99;
  margin: 110px 245px;
  position: fixed;
  width: 500px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 5px 6px #e3e3e3;
  padding: 20px;
}

div.eventList h3 {
  margin: 0 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

div.eventList div.event {
  border-top: 1px solid #ccc;
  padding: 12px 0;
}

div.eventList div.event span {
  float: right;
  color: #aaa;
}

div.eventList div.event span:hover {
  float: right;
  color: red;
}


/* Alerts */

div.alertBox {
  background: #ffd4d4;
  border: 1px solid #ff8f8f;
  color: #000;
  margin: 10px 0;
  padding: 8px;
}