/* Minification failed. Returning unminified contents.
(14,11): run-time error CSS1036: Expected expression, found '@red'
(23,1): run-time error CSS1019: Unexpected token, found '@import'
(23,9): run-time error CSS1019: Unexpected token, found '"../_global.less"'
(24,1): run-time error CSS1019: Unexpected token, found '@import'
(24,9): run-time error CSS1019: Unexpected token, found '"../_mixins.less"'
(27,23): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@black'
(31,14): run-time error CSS1035: Expected colon, found ';'
(35,30): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@black'
(38,15): run-time error CSS1036: Expected expression, found '@black'
(39,10): run-time error CSS1036: Expected expression, found '@white'
(46,30): run-time error CSS1062: Expected semicolon or closing curly-brace, found '@section-bg'
(47,14): run-time error CSS1036: Expected expression, found '@white'
(48,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '&'
(57,10): run-time error CSS1036: Expected expression, found '@black'
(58,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '&'
(66,20): run-time error CSS1036: Expected expression, found '@large'
(66,20): run-time error CSS1034: Expected closing parenthesis, found '@large'
(72,20): run-time error CSS1036: Expected expression, found '@small'
(72,20): run-time error CSS1034: Expected closing parenthesis, found '@small'
(85,11): run-time error CSS1035: Expected colon, found 'path'
(100,1): run-time error CSS1019: Unexpected token, found '@import'
(100,9): run-time error CSS1019: Unexpected token, found '"../../_global.less"'
(101,1): run-time error CSS1019: Unexpected token, found '@import'
(101,9): run-time error CSS1019: Unexpected token, found '"../../_mixins.less"'
(115,10): run-time error CSS1035: Expected colon, found ';'
(131,10): run-time error CSS1035: Expected colon, found ';'
(147,10): run-time error CSS1035: Expected colon, found ';'
 */
@import "../_global.less";

.addedit input[type=checkbox] {
    float: left;
    clear: left;
}

.addedit label {
    float:left;
    clear:none;
}

.addedit .requred {
    color:@red;
    float:left;
    clear:right;
}

.addedit h2 {
    float:left;
    clear:both;
}
@import "../_global.less";
@import "../_mixins.less";

.garage_table {
  border: .2rem solid @black;
  border-collapse: collapse;
  float: left;
  clear: both;
  .box-sizing;
  max-width:100%;
}
.garage_table  th {
  border-bottom: .2rem solid @black;
  font-size: 1.2rem;
  padding: .5rem;
  background: @black;
  color: @white;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
}
.garage_table tr {
  height: 3rem;
  border-bottom: .1rem solid @section-bg;
  background:@white;
    &:nth-child(even) {
        background: darken(@white, 10%);
    }
}
.garage_table td {
  vertical-align: middle;
  padding: .5rem;
}
.garage_table a {
  color: @black;
    &:active {
      color: @section-bg;
    }
    &:visited {
        color: darken(@section-bg, 40%);
    }
}

@media (min-width: @large) {
    .garage_table {
        width: 960px;
    }
}

@media (max-width: @small) {
    .garage_table .no-small {
        visibility:collapse;
        display:none;
        width:0;
    }
}
figcaption {
    text-align: center;
    font-weight: bold;
}

figure svg {
    .axis path,
    .axis line {
        fill: none;
        stroke: #000;
        shape-rendering: crispEdges;
    }

    .bar {
        fill: steelblue;
    }

    .x.axis path {
        display: none;
    }
}
@import "../../_global.less";
@import "../../_mixins.less";

/*****************/
/** jNotify CSS **/
/*****************/
#jNotify {
	position:absolute;
	background:#d8e6fc  url('../info.png') no-repeat 1.5rem center;
	color:#35517c;
	border:.1rem solid #a7c3f0;
	padding:1rem;
	padding-left:5rem;
	margin:1.5rem;
	z-index:9999;
	.rounded;
}
#jNotify a {color:#35517c !important;text-decoration:none;}

/******************/
/** jSuccess CSS **/
/******************/
#jSuccess {
	position:absolute;
	background:#E6EFC2  url('../success.png') no-repeat 1.5rem center;
	color:#264409;
	border:.1rem solid #C6D880;
	padding:1rem;
	padding-left:5rem;
	margin:1.5rem;
	z-index:9999;
	.rounded;
}
#jSuccess a {color:#264409 !important;text-decoration:none;}

/****************/
/** jError CSS **/
/****************/
#jError {
	position:absolute;
	background:#FBE3E4  url('../error.png') no-repeat 1.5rem center;
	color:#8a1f11;
	border:.1rem solid #FBC2C4;
	padding:1rem;
	padding-left:5rem;
	margin:1.5rem;
	z-index:9999;
	.rounded;
}
#jError a {color:#8a1f11 !important;text-decoration:none;}

/** OVERLAY **/
#jOverlay {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:9998
}
