@charset "UTF-8";
/* !CSS Document
 * 940px inner with 10px border
 *
 *
*/

* {
	margin: 0px;
	padding: 0px;
	border: none;
}
body {
	background-color: white;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	color: black;
	font-size: 16px;
	height: 100%;
}

/*
 * Typography
 *
*/
h1, h2, h3, h4 {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 600;
	text-shadow: 1px 1px 0px white;
}
h1,
h1 a {
	font-size: 28px;
	font-weight: 700;
	color: #b2b7bd;
	text-shadow: 1px 1px 0px white;
	white-space: nowrap;
}
/*
h2 {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #5d5d5d;
	text-align: left;
	padding: 10px 0px 10px 0px;
	white-space: nowrap;
}
*/
h3 {
	font-size: 20px;
	color: #4bb155;
	padding: 0px 0px 10px 0px;
}
p {
	font-size: 14px;
	line-height: 140%;
	padding: 0px 0px 20px 0px;
}
a {
	text-decoration: none;
	color: #d8d8d8;
}
a:hover {
	text-decoration: none;
}
strong {
	font-weight: bold;
}
.underline {
	text-decoration: underline;
}


/*
 * Universal Classes
 *
*/
.centered {
	display: block;
	width: 920px;
	padding: 0px 10px 0px 10px;
	margin: 0px auto;
}
.clear {
	display: block;
	clear: both;
}
.delete {
	display: block;
}
.username {
	text-transform: lowercase;
}
.small-note {
	font-size: 12px;
	color: #b6b6b6;
}
.refrigerate {
	font-size: 14px;
	color: #4e4e4e;
}

/*
 * DIV Structure
 *
*/

/* !Login */
#login-container {
	margin: 10% auto 0px auto;
	/* padding: 40px; */
	width: 440px;
	background: white;
}
#login-container table {
	padding: 40px;
}
#login-container table td {
	padding: 5px 0px 5px 0px;
}
#login-container table td span {
	font-size: 12px;
}
#login-container #message {
	padding-left: 5px;
	font-weight: 400;
	font-size: 12px;
	color: #e10d0d;
}

/* !Header */

#header-container {
	width: 100%;
	background: #505050;
}
#header-container #header {
	width: 1090px;
	margin: auto;
}
#header-container #menu {
	float: left;
}
#header-container #menu ul {
	display: block;
	width: auto;
	list-style-type: none;
	font-size: 16px;
	text-align: center;
}
#header-container #menu ul li {
	position: relative;
	display: inline;
}
#header-container #menu li a {
	display: block;
	float: left;
	padding: 20px 15px 20px 15px;
	color: white;

	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#header-container #menu li a:hover {
	background: #383838;
	text-decoration: none;
	color: #e5e5e5;
}
#header-container #menu li a.active {
	background: black;
	color: white;
}
#header-container #patient-box a {
	display: block;
	float: right;
	padding: 20px 15px 20px 15px;
	color: white;

	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#header-container #patient-box a:hover {
	background: #383838;
	text-decoration: none;
	color: #e5e5e5;
}
#header-container #patient-box a.active {
	background: black;
	color: white;
}
#header-container #patient-box a.patient-details {
	padding: 10px;
}
#header-container #patient-box span {
	font-size: 10px;
}
#header-container #menu img.logo {
	height:46px;
	float:left;
	padding:6px
}
#header-container #search {
	position: relative;
	float: right;
	margin: 16px 15px 0px 15px;
}
#header-container #search-results {
	position: absolute;
	right: 10px;
	top: 30px;
	background: white;
	border: 1px solid #e1e1e1;
	z-index: 400;
	display: none;
}
#mssql-patient-search-results {
	display: none;
	max-height: 150px;
	width: 300px;
	height: auto;
	overflow-y: auto;
	overflow-x: hidden;
	border: 1px solid #e5e5e5;
}
#mssql-patient-search-wrapper {
	position: relative;
	display: inline-block;
	z-index: 1000;
	background-color: #ffffff;
}
.search-results .heading {
	font-size: 14px;
	padding: 5px;
	background: #ececec;
	color: #349fdb;
	border-bottom: 1px solid #e5e5e5
}
.search-results ul {
	list-style: none;
}
.search-results ul li {
	display: block;
}
.search-results ul li a {
	display: block;
	font-size: 12px;
	color: #6b6b6b;
	padding: 5px 30px 5px 10px;
	min-width: 135px;
}
.search-results ul li a:hover {
	background-color: #f7f7f7;
}
.search-patient-id {
	float:right;
	font-size:12px;
	padding: 5px;
	color:#cccccc;
}
#header-container #administration {
	float: right;
	border-left: 1px solid #404040;
	border-right: 1px solid #404040;
}
#header-container #administration a {
	display: block;
	padding: 15px 15px 15px 15px;
	border-left: 1px solid #696969;
	border-right: 1px solid #696969;
	font-size: 24px;
	font-weight: 400;
	color: rgba(227,227,227,1);

	transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
}
#header-container #administration a:hover {
	background: #444444;
	color: #c3c3c3;
	text-shadow: 1px 1px 0px rgba(2,2,2,0.47);
}

.info-panel {
	display: block;
	width: 900px;
	padding: 40px 10px 10px 10px;
	margin: 0 auto;
}
.create-box {
	display: block;
	padding: 20px 10px 40px 10px;
}

/*
 * Column Structure
 *
*/
div.one-half {
	width: 50%;
	float: left;
}
div.one-third {
	width: 33.33%;
	float: left;
}
div.two-thirds {
	width: 66.6%;
	float: left;
}
div.left-section {
	padding: 30px 30px 30px 0px;
}
div.center-section {
	padding: 30px 30px 30px 30px;
}
div.right-section {
	padding: 30px 0px 30px 30px;
}


.widget {
	position: relative;
	min-height: 285px;
	margin: 10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #b2b2b2;
	overflow: hidden;
	background-color: white;
}
.widget h2 {
	display: block;
	/* background: #f2f2f2; */
	font-size: 18px;
	color: #565656;
	border-bottom: 1px solid #c4c2c2;
	padding: 10px 10px 8px 10px;

	background: #fcfcfc;
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #d6d6d6 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(99%,#d6d6d6)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#d6d6d6 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#d6d6d6 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#d6d6d6 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#d6d6d6 99%); /* W3C */
}
.widget h2 span {
	float: right;
	margin-top: 5px;
	font-size: 12px;
	color: #9f9f9f;
}
.widget .display-box-large {
	text-align: center;
	margin: 35px 0px 35px 0px;
}
.widget .display-box-large .count a {
	font-size: 110px;
	color: #349fdb;
	line-height: 95px;
	/* text-shadow: 0px 1px 1px #cbcbcb; */
}
.widget .display-box-large .count a.delayed {
	color: #e7bb51;
}
.widget .display-box-large .info {
	color: #c2c2c2;
}
.widget .display-box {
	text-align: center;
	margin: 20px 0px 15px 0px;
}
.widget .display-box .count {
	font-size: 36px;
	line-height: 36px;
	/* text-shadow: 0px 1px 1px #cbcbcb; */
}
.widget .display-box .count.delivered a {
	color: #99c012;
}
.widget .display-box .count.error a {
	color: #e64d49;
}
.widget .display-box .info {
	color: #c2c2c2;
	font-size: 14px;
}
.status-help {
	padding: 10px 0px 10px 10px;
}
.status-help .status {
	font-size: 12px;
	margin-right: 2px;
}
.status-help .symbol {
	position: relative;
	display: inline-block;
	top: 1px;
	width: 47px;
	height: 10px;
	font-size: 14px;
	margin-right: 5px;
}

.tab-pane {
	padding: 20px 10px 20px 10px;
}

/* Buttons and Button Containers */
.widget .buttons {
	padding: 10px 0px 10px 10px;
}
.info-list .buttons {
	padding: 10px 0px 10px 0px;
}

/* !TABLES */
table {
	table-layout: fixed;
	width: 100%;
}
caption {
	text-align: left;
	padding: 0px 0px 10px 0px;
	font-size: 20px;
	font-weight: 700;
	color: #349fdb;
	text-shadow: 1px 1px 0px white;
	white-space: nowrap;
}
.info-list h2 {
	font-size: 20px;
	padding: 10px 0px 5px 0px;
	color: #349fdb;
}
.info-list h2 a {
	font-size: 20px;
	padding: 10px 0px 5px 0px;
	color: #349fdb;
}
.info-list {
	padding: 10px 10px 0px 10px;
}
.info-list.admin {
	padding: 0px;
}
.info-list.admin caption {
	padding-bottom: 18px;
}
.info-list.full-width {
	margin-bottom: 20px;
}
.info-list table th:first-child  {
	border-left: 1px solid #b3b3b3;
}
.info-list table th:last-child  {
	border-right: 1px solid #b3b3b3;
}
.info-list.full-width table th:last-child {
	border-radius: 0px 6px 0px 0px;
}
.info-list table th {
	display: table-cell;
	text-align: left;
	padding: 5px;
	font-size: 12px;
	font-weight: 600;
	text-shadow: 1px 1px 0px white;

	background-color: #f5f5f5;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;

	border-top: 1px solid #d3d3d3;
	border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #b3b3b3;
	vertical-align: middle;
}
.info-list table td:first-child {
	border-left: 1px solid #dfdfdf;
}
.info-list table td {
	display: table-cell;
	text-align: left;
	padding: 5px;
	font-size: 11px;
	font-weight: 400;

	/* border-top: 1px solid #e4e4e4; */
	border-right: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
	vertical-align: middle;
	overflow: hidden;
}
.info-list table td a {
	color: black;
}
.info-list table tbody tr:nth-of-type(even) {
  background: #f8f8f8;
}
.info-list table .status {
	display: block;
	margin: auto;
	width: 80%;
	height: 100%;
}
.info-list table .status.in-transit {
	background: #349fdb;
	/*color: #349fdb;*/
	text-align: center;
}
.info-list table .status.delivered {
	background: #99c012;
	/*color: #99c012;*/
	text-align: center;
}
.processing {
	background: blue;
	/*color: #99c012;*/
	text-align: center;
}
.info-list table .status.error {
	background: #e64d49;
	/*color: #e64d49;*/
	text-align: center;
}
.info-list table .status.delayed {
	background: #e7bb51;
	/*color: #e7bb51;*/
	text-align: center;
}
.info-list .align-center {
	text-align: center;
	margin-left:auto;
	margin-right:auto;
}
.info-list .table-footer {
	background: #f1f1f1;
	padding: 5px 10px 5px 10px;
	text-align: left;
	font-size: 10px;
	color: #777777;
}
.info-list .sort {
	float: right;
}
.info-list .icon-sort-by-attributes-alt {
	color: #b2b2b2;
}

.view-more a {
	float: right;
	padding: 5px;
	font-size: 11px;
	text-decoration: underline;
	color: #4876ca
}

.green {
	background-color: #99c012;
}
.red {
	background-color: #e64d49;
}
.blue {
	background-color: #349fdb;
}
.yellow {
	background-color: #e7bb51;
}
.status-green {
	color: #99c012;
}
.status-red {
	color: #e64d49;
}
.status-blue {
	color: #349fdb;
}
.status-yellow {
	color: #e7bb51;
}

/* Barcode & Label Printing */
#label {
	margin-top: 0.25in;
	margin-left: 0.25in;
}
#label span {
	display: block;
	padding: 2px 20px 2px 20px;
}
#label img {
	display: block;
	padding: 2px 20px 2px 20px;
}
#label .deliverTo {
	display: block;
	padding: 0px 20px 25px 20px;
	font-size: 14px;
}
#label .barcode {
	font-family: 'barcode';
	font-size: 32px
}
#label .barcodeText {
	font-size: 14px
}
#label .destination {
	font-size: 36px;
}
#label .sentby {
	font-size: 14px;
	color: #939393
}

/* Inputs */
label {
	display: block;
	padding: 4px 0px 4px 0px;
	font-size: 12px;
	color: #5a5a5a;
	font-weight: 400;
}
input {
	display: block;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
	background: white;
	border: 1px solid #bdbdbd;
	font-size: 12px;
	color: #7c7c7c;
	width: 160px;
	padding: 5px;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
}

.form-input td {
	padding-right: 5px;
}
#search input[type="text"] {
	background: url("search-white.png") no-repeat 10px 6px #444;
	background-size: 15px 15px;
	border: 0 none;
	font: 400 12px Arial,Helvetica,Sans-serif;
	color: #d7d7d7;
	width: 120px;
	padding: 6px 15px 6px 35px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-webkit-transition: all 0.5s ease 0.1s;
	-moz-transition: all 0.5s ease 0.1s;
	-o-transition: all 0.5s ease 0.1s;
	transition: all 0.5s ease 0.1s;
}
#search input[type="text"]:focus {
	background: url("search-dark.png") no-repeat 10px 6px #fcfcfc;
	background-size: 15px 15px;
	color: #6a6f75;
	width: 150px;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	outline-style: none;
}
.photoID a {
	text-decoration: underline;
	color: #4a70b8;
}
.first_name,
.last_name {
	text-transform: capitalize;
}

.terms_conditions {
	height:100px;
	overflow-y:scroll;
}

.terms_conditions p {
	font-size:10px !important;
}


/* Forward and Back Controls */
a.forward {
	display: inline-block;
	color: #777;
}
.icon-forward {
	color: #777;
}
a.backward {
	display: inline-block;
	color: #777;
}
.icon-backward {
	color: #777;
}

.dk-select, .dk-select *, .dk-select *:before, .dk-select *:after, .dk-select-multi, .dk-select-multi *, .dk-select-multi *:before, .dk-select-multi *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.dk-select, .dk-select-multi {
  position: relative;
  vertical-align: middle;
  line-height: 2em;
  width: 300px;
  cursor: pointer; }

.dk-selected {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  font-family: 'Helvetica', Arial, sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  border: 1px solid #CCCCCC;
  border-radius: 0.4em;
  padding: 0 1.5em 0 0.5em;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }
  .dk-selected:before, .dk-selected:after {
    content: '';
    display: block;
    position: absolute;
    right: 0; }
  .dk-selected:before {
    top: 50%;
    border: solid transparent;
    border-width: 0.25em 0.25em 0;
    border-top-color: #CCCCCC;
    margin: -0.125em 0.5em 0 0; }
  .dk-selected:after {
    top: 0;
    height: 100%;
    border-left: 1px solid #CCCCCC;
    margin: 0 1.5em 0 0; }

.dk-selected-disabled {
  color: #BBBBBB; }

.dk-select .dk-select-options {
  position: absolute;
  display: none;
  left: 0;
  right: 0; }

.dk-select-open-up .dk-select-options {
  border-radius: 0.4em 0.4em 0 0;
  margin-bottom: -1px;
  bottom: 100%; }

.dk-select-open-down .dk-select-options {
  border-radius: 0 0 0.4em 0.4em;
  margin-top: -1px;
  top: 100%; }

.dk-select-multi .dk-select-options {
  max-height: 10em; }

.dk-select-options {
  background-color: white;
  border: 1px solid #CCCCCC;
  border-radius: 0.4em;
  list-style: none;
  margin: 0;
  max-height: 10.5em;
  min-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.25em 0;
  width: auto;
  z-index: 100; }

.dk-option-selected {
  background-color: #3297fd;
  color: #fff; }

.dk-select-options-highlight .dk-option-selected {
  background-color: transparent;
  color: inherit; }

.dk-option {
  padding: 0 0.5em; }

.dk-select-options .dk-option-highlight {
  background-color: #3297fd;
  color: #fff; }

.dk-select-options .dk-option-disabled {
  color: #BBBBBB;
  background-color: transparent; }

.dk-optgroup {
  border: solid #CCCCCC;
  border-width: 1px 0;
  padding: 0.25em 0;
  margin-top: 0.25em; }
  .dk-optgroup + .dk-option {
    margin-top: 0.25em; }
  .dk-optgroup + .dk-optgroup {
    border-top-width: 0;
    margin-top: 0; }
  .dk-optgroup:nth-child(2) {
    padding-top: 0;
    border-top: none;
    margin-top: 0; }
  .dk-optgroup:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
    padding-bottom: 0; }

.dk-optgroup-label {
  padding: 0 0.5em 0.25em;
  font-weight: bold;
  width: 100%; }

.dk-optgroup-options {
  list-style: none;
  padding-left: 0; }
  .dk-optgroup-options li {
    padding-left: 1.2em; }

.dk-select-open-up .dk-selected {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color: #3297fd; }

.dk-select-open-down .dk-selected {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #3297fd; }

.dk-select-open-up .dk-selected:before, .dk-select-open-down .dk-selected:before {
  border-width: 0 0.25em 0.25em;
  border-bottom-color: #3297fd; }

.dk-select-open-up .dk-selected:after, .dk-select-open-down .dk-selected:after {
  border-left-color: #3297fd; }

.dk-select-open-up .dk-select-options, .dk-select-open-down .dk-select-options, .dk-select-multi:focus .dk-select-options {
  display: block;
  border-color: #3297fd; }

.dk-select-multi:hover, .dk-select-multi:focus {
  outline: none; }

.dk-selected:hover, .dk-selected:focus {
  outline: none;
  border-color: #3297fd; }
  .dk-selected:hover:before, .dk-selected:focus:before {
    border-top-color: #3297fd; }
  .dk-selected:hover:after, .dk-selected:focus:after {
    border-left-color: #3297fd; }

.dk-select-disabled {
  opacity: 0.6;
  color: #BBBBBB;
  cursor: not-allowed; }
  .dk-select-disabled .dk-selected:hover, .dk-select-disabled .dk-selected:focus {
    border-color: inherit; }
    .dk-select-disabled .dk-selected:hover:before, .dk-select-disabled .dk-selected:focus:before {
      border-top-color: inherit; }
    .dk-select-disabled .dk-selected:hover:after, .dk-select-disabled .dk-selected:focus:after {
      border-left-color: inherit; }

select[data-dkcacheid] {
  display: none; }

#patients.tab-pane #mssql-patient-search {
	padding-left: 50px;
	padding-top: 50px;
}

#mssql-patient-wrapper {
	position: absolute;
	top: 80px;
	display: none;
}

#mssql-patient {
	margin-left: 50px;
	margin-top: 10px;
}

.search-container {
	position: relative;
}

.search-container .buttons {
	margin-left: 50px;
	margin-top: 10px;
}

#mssql-patient-search-input {
	background: url("search-white.png") no-repeat 10px 6px #444;
	background-size: 15px 15px;
	border: 0 none;
	font: 400 12px Arial,Helvetica,Sans-serif;
	color: #d7d7d7;
	width: 200px;
	padding: 6px 15px 6px 35px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 3px rgba(0, 0, 0, 0.2) inset;
	-webkit-transition: all 0.5s ease 0.1s;
	-moz-transition: all 0.5s ease 0.1s;
	-o-transition: all 0.5s ease 0.1s;
	transition: all 0.5s ease 0.1s;
}
#mssql-patient-search-input:focus {
	background: url("search-dark.png") no-repeat 10px 6px #fcfcfc;
	background-size: 15px 15px;
	color: #6a6f75;
	width: 250px;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	outline-style: none;
}
#mssql-patient-search-input:valid {
	background: url("search-dark.png") no-repeat 10px 6px #fcfcfc;
	background-size: 15px 15px;
	color: #6a6f75;
	width: 250px;
	-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	-moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(0, 0, 0, 0.9) inset;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	outline-style: none;
}

#dashboard .one-half.refill-half {
	float: right;
	/*margin-top: -135px;*/
}

#dashboard .one-half #refill-requests {
	padding-bottom: 10px;
}

#dashboard .one-half .refill-controls {
	float: right;
	color: #d8d8d8;
	padding-bottom: 5px;
}

#dashboard .one-half .refill-controls a {
	font-size: 12px;
	text-decoration: underline;
	color: #000000;
}

.copy-icon {
	margin: auto;
	display: block;
	background-image: url("../images/copy.gif");
	width: 15px;
	height: 15px;
}

.process-icon {
	margin: auto;
	display: block;
	background-image: url("../images/icon-check.png");
	width: 15px;
	height: 15px;
}

.prescriptions h1 {
	text-align: left;
	padding: 0px 0px 10px 0px;
	font-size: 20px;
	font-weight: 700;
	color: #349fdb;
	text-shadow: 1px 1px 0px white;
	white-space: nowrap;
}

.prescriptions #order-controls * {
	float: left;
	margin-right: 10px;
}

#orders-table {
	padding-top: 10px;
}

.blister-packs-wrapper {
	padding-top: 15px;
}

.blister-packs-wrapper h2 {
	text-align: left;
	padding: 0px 0px 10px 0px;
	font-size: 20px;
	font-weight: 700;
	color: #349fdb;
	text-shadow: 1px 1px 0px white;
	white-space: nowrap;
}


.blister-packs-patients-wrapper {
	float: left;
	padding-top: 10px;
}

.two-col-special {
	overflow: auto;
	margin: 0;
	padding: 0;
}

.two-col-special li {
	display: inline-block;
	width: 45%;
	margin: 0;
	padding: 0;
	vertical-align: top; /* In case multi-word categories form two lines */
}
.two-col-special li:before {
	padding: 5px;
	margin-right: 5px; /* you can tweak the gap */
	background-color: white; /* in case you want a color... */
	display: inline-block;
}

@media all {
	.page-break	{ display: none; }
}

@media print {
	.page-break	{ display: block; page-break-before: always; }
	#blister-pack-printer tr {
		width: 21cm;
	}

	#blister-pack-printer td {
		width: 7.19cm;
		height: 1.99cm;
	}

	#header-container, .add-controls, #dk_container_box-status, #container_print_label, #submit, .status, .delete {
		display: none;
	}

	caption {
		color: black !important;
	}
}

#blister-pack-printer td {
	text-align: center;
	border: 1px solid black;
}

.create-container {
	display: table-caption;
}

#refill-requests tr .copied {
	background-color: yellow !important;
}

#mssql-patient-wrapper #loading {
	width: 40px;
	height: 40px;
}

.blister-packs-patients-wrapper #patients .icon-ban-circle {
	cursor: pointer;
}

.blister-packs-patients-wrapper #patients li {
	min-width: 300px;
}

.add-controls {
	float: right;
}

.add-controls * {
	float: left;
}

.add-controls input {
	margin-right: 10px;
}

.refill-widget {
	min-height: 324px;
}

.hidden{
	display: none;
	visibility: hidden;
}
/***** End Critical to the continued enjoyment of working dropdowns ******/

.gmarker-p{
	padding: 0 !important;
	margin: 0 !important;
	color: black;
	font-size: 16px;
}
.gmarker-small{
	color: black;
}
.ginfo-panel{
	min-height: 120px;
	min-width: 120px;
	height: auto;
	width: auto;
}
.text-danger{
	color: #e64d49;
}
.destination-select-box {
	width: 172px;
}
