* {
  	margin: 0;
  	padding: 0;
  	box-sizing: border-box;
}

body {
	margin: 0px;
	padding: 0px;
	background: #DAD8D8;
	font-family: "Helvetica Neue", Helvetica, Arial;
}

::-webkit-scrollbar {
    width: 0.8em;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
}
 
::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.main {
  display: flex;  
}


.sidebar{
	background: #252525;
	width: 20%;
	height: 100vh;
	text-align: center;
}

.content {
  width: 80%;
  background: #DAD8D8;
  padding: 20px;
}

.logo {
	margin-top: 20px;
	margin-bottom: 20px;
	width: 60%;
}

.card {
	border-radius: 4px;
	background: #FFF;
	height: 100%;
 	width: 100%;
 	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 	position: relative;
 	overflow-y: auto;
}

.single-card {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 30px 30px;
	transition: opacity .4s ease;
}

.data_all {
}

.data_add {
	/*visibility: hidden;
	opacity: 0;*/
	display: none;
}

.data_update {
	display: none;
}

.row {
	width: 100%;
	display: flex;
}

.row .column {
  border-bottom: 0 !important;
}

.row:last-child .column {
  border-bottom: 1px solid #000 !important;
}

.column {
	padding: 10px 15px;
 	word-wrap: break-word;
}

.column:first-child {
  width: 10%;
  border: 1px solid;
}
.column:nth-child(2) {
  width: 20%;
  border-top: 1px solid;
}

.column:nth-child(3) {
  width: 50%;
  border: 1px solid;
}

.column:nth-child(4) {
  /*width: 10%;*/
  border-top: 1px solid;
}

.column:last-child {
  /*width: 10%;*/
  border: 1px solid;
}

.action_button {
	cursor: pointer;
	width: 24px;
	height: 24px;
}

#add_result {
	margin-top: 10px;
}

input[type=text], select {
	width: 30%;
	height: 35px;
	font-size: 17px;
	border-radius: 4px;
	border: 1px solid #ccc;
	margin-top: 8px;
	margin-bottom: 10px;
	padding: 4px 12px;
	box-sizing: border-box;
	display: inline-block;
}

input[type=submit] {
	cursor: pointer;
	font-size: 17px;
	border-radius: 4px;
	background: #252525;
	margin: 8px 0;
	padding: 8px 12px;
	color: white;
	border: none;
}

textarea {
	width: 30%;
	min-height: 35px;
	font-size: 17px;
	border-radius: 4px;
	border: 1px solid #ccc;
	margin: 8px 0;
	padding: 8px 12px;
	box-sizing: border-box;
	display: inline-block;
}

label {
	font-size: 20px;
}

ul {
	margin: 0px;
	padding: 0px;
}

ul li {
	list-style: none;
}

ul li a {
	text-decoration: none;
	text-align: left;
	background: #2F2F2F;
	color:  #FFF;
	border-bottom:  1px solid #252525;
	display: block;
	padding: 17px 15px;
}

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);

* {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

body {
	font-family:"Open Sans", Helvetica, Arial, sans-serif;
	font-weight:300;
	font-size: 12px;
	line-height:30px;
	color:#000;
	background:#000;
}

.container {
	max-width:400px;
	width:100%;
	margin:0 auto;
	position:relative;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:#F9F9F9;
	padding:25px;
	margin:5px 0;
}

#contact h3 {
	color: #F96;
	display: block;
	font-size: 30px;
	font-weight: 400;
}

#contact h4 {
	margin:5px 0 15px;
	display:block;
	font-size:13px;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background:#0CF;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

#contact button[type="submit"]:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}


div.blueTable {
  border: 1px solid #1C6EA4;
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
.divTable.blueTable .divTableCell, .divTable.blueTable .divTableHead {
  border: 3px solid #AAAAAA;
  padding: 0px 2px;
}
.divTable.blueTable .divTableBody .divTableCell {
  font-size: 18px;
}
.divTable.blueTable .divTableHeading {
  background: #1C6EA4;
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  border-bottom: 2px solid #444444;
}
.divTable.blueTable .divTableHeading .divTableHead {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
.divTable.blueTable .divTableHeading .divTableHead:first-child {
  border-left: none;
}

.blueTable .tableFootStyle {
  font-size: 14px;
}
.blueTable .tableFootStyle .links {
	 text-align: right;
}
.blueTable .tableFootStyle .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}
.blueTable.outerTableFooter {
  border-top: none;
}
.blueTable.outerTableFooter .tableFootStyle {
  padding: 0px 5px; 
}
/* DivTable.com */
.divTable{ display: table; }
.divTableRow { display: table-row; }
.divTableHeading { display: table-header-group;}
.divTableCell, .divTableHead { display: table-cell;}
.divTableHeading { display: table-header-group;}
.divTableFoot { display: table-footer-group;}
.divTableBody { display: table-row-group;}