@charset "UTF-8";


/*@import "bootstrap.min.css";*/


/* TASKS */
.panel-body.tasks {
  padding: 10px;
}
.tasks {
  float: left;
  width: 100%;
}
.tasks .task-item {
  width: 100%;
  float: left;
  padding: 0px;
  background: #FFF;
  border-left: 3px solid #FFF;
  margin-bottom: 10px;
  -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.tasks .task-item:hover {
  background: #F9F9F9;
  cursor: pointer;
}
.tasks .task-item.task-complete {
  background: #FFF2C5;
}
.tasks .task-item.task-detail {
  background: #F9F9F9;
}
.tasks .task-item.task-primary {
  border-left-color: #1b1e24;
}
.tasks .task-item.task-success {
  border-left-color: #95b75d;
}
.tasks .task-item.task-info {
  border-left-color: #1caf9a;
}
.tasks .task-item.task-warning {
  border-left-color: #1caf9a;
}
.tasks .task-item.task-bank {
  
}

.tasks .task-item.task-danger {
  border-left-color: #E04B4A;
}
.tasks .task-item .task-text {
  margin-bottom: 10px;
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 10px;
}

.tasks .task-item .task-title {
  float: left;
  width: 100%;
  font-size: 14pt;
  color: #000;
  line-height: 20px;
  padding: 10px;
  background: #F3F4F3;
  font-weight: bold;
}

.tasks .task-item .task-footer {
  float: left;
  width: 100%;
  font-size: 12px;
  color: #AAA;
  line-height: 20px;
  padding: 10px;
  background: #F5F5F5;
}
.tasks .task-item .task-footer a {
  color: #AAA;
  display: block;
  float: left;
  margin-left: 10px;
  font-size: 12px;
}
.tasks .task-item .task-footer a:hover {
  color: #22262e;
}
.tasks .task-drop {
  float: left;
  width: 100%;
  padding: 30px 10px;
  border: 2px dashed #D5D5D5;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}
.tasks .task-drop:hover {
  opacity: 0.5;
  filter: alpha(opacity = 50);
  cursor: pointer;
}

.modifyTaskTitleColor {
    color: gray;
	font-size:12pt;
	font-weight:bold;
}

.modifyTaskTextColor {
    color: black;
}

/* END TASKS */