﻿body {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 100%;
}

.textarea-custom{ 
  width: 95%; 
  /*min-width:200px; */
  max-width:100%; 

  height:400px; 
  min-height:50px;  
  max-height:400px;
}

.wellHov {

  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #abb8c3;
  border: 1px solid #5c889f;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
 
}
.wellHov:hover {
    background-color: rgba(78, 93, 108, 0.77);
}

#noti_Container {
position: relative; /* This is crucial for the absolutely positioned element */
width: 16px;
height: 16px;
}

.noti_bubble {
position: absolute; /* This breaks the div from the normal HTML document. */
top: 4px;
right: 4px;
padding: 0px 5px 0px 3px;
background-color: #d9334f; /* you could use a background image if you'd like as well */
color: white;
font-weight: bold;
font-size: 1.00em;
/* The following is CSS3, but isn't crucial for this technique to work. */
/* Keep in mind that if a browser doesn't support CSS3, it's fine! They just won't have rounded borders and won't have a box shadow effect. */
/* You can always use a background image to produce the same effect if you want to, and you can use both together so browsers without CSS3 still have the rounded/shadow look. */
border-radius: 4px;
box-shadow: 3px 3px 3px gray;
}
.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.BoxArea {
    padding:19px;
    margin: 5px;
    border: 3px solid;
    border-color:#e3e3e3;
    border-radius:10px;
}