<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 *  ==================== BOOTSTRAP-EXTEND ====================
 *
 *  [Description]
 *  - Extend css features of Twitter Bootstrap
 *  - Version 3.0 (indicates that it works for Bootstrap v3.x)
 *
 *  [Dependencies]
 *  - Bootstrap 3.x
 *
 *  [Features]
 *  - CONTAINER-NARROW
 *  - MODAL-MAX
 *  - BTN-INVERSE
 *  - TR.INVERSE / TD.INVERSE
 *  - INPUT-XS / INPUT-GROUP-XS
 *  - FORM-CONTROL @ INPUT-GROUP-CONTROL
 *  - VERTICAL TAB NAV
 *
 */




/**
 *  ----------------
 *  CONTAINER NARROW
 *  ----------------
 *
 *
 *  [Example]
 *
 *  &lt;div class="container-narrow"&gt; ... &lt;/div&gt;
 *
 **/

.container-narrow {
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 768px) {
	.container-narrow {
		width: 100%;  /* Must be percentage or pixels for horizontal alignment */
	}
}

@media (min-width: 992px) {
	.container-narrow {
		width: 700px;
	}
}




/**
 *  ---------
 *  MODAL MAX
 *  ---------
 *
 *
 *  [Example]
 *
 *  &lt;div class="modal fade"&gt;
 *    &lt;div class="modal-dialog modal-max"&gt;
 *      &lt;div class="modal-content"&gt; ... &lt;/div&gt;
 *    &lt;/div&gt;
 *  &lt;/div&gt;
 *
 **/

.modal .modal-dialog.modal-max {
	width: 94%;
}




/**
 *  --------------
 *  BUTTON INVERSE
 *  --------------
 *
 *
 *  [Example]
 *
 *  &lt;a class="btn btn-inverse" href="..."&gt; ... &lt;/a&gt;
 *
 *  &lt;button class="btn btn-inverse"&gt; ... &lt;/button&gt;
 *
 **/

.btn-inverse {
	color: #fff;
	background-color: #444;
	border-color: #080808;
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.open .dropdown-toggle.btn-inverse {
	color: #fff;
	background-color: #080808;
	border-color: #444;
}

.btn-inverse:active,
.btn-inverse.active,
.open .dropdown-toggle.btn-inverse {
	background-image: none;
}

.btn-inverse.disabled,
.btn-inverse[disabled],
fieldset[disabled] .btn-inverse,
.btn-inverse.disabled:hover,
.btn-inverse[disabled]:hover,
fieldset[disabled] .btn-inverse:hover,
.btn-inverse.disabled:focus,
.btn-inverse[disabled]:focus,
fieldset[disabled] .btn-inverse:focus,
.btn-inverse.disabled:active,
.btn-inverse[disabled]:active,
fieldset[disabled] .btn-inverse:active,
.btn-inverse.disabled.active,
.btn-inverse[disabled].active,
fieldset[disabled] .btn-inverse.active {
	background-color: #444;
	border-color: #080808;
}

.btn-inverse .badge {
	color: #444;
	background-color: #fff;
}




/**
 *  -------------
 *  TR/TD INVERSE
 *  -------------
 *
 *
 *  [Example : row]
 *
 *  &lt;tr class="inverse"&gt; ... &lt;/tr&gt;
 *
 *
 *  [Example : cell]
 *
 *  &lt;tr&gt;
 *    &lt;th class="inverse"&gt; ... &lt;/th&gt;
 *    &lt;td class="inverse"&gt; ... &lt;/td&gt;
 *  &lt;/tr&gt;
 *
 **/

tr.inverse th,
tr.inverse td,
th.inverse,
td.inverse {
	color: #fff;
	background-color: #444;
	border-color: #080808;
}




/**
 *  --------
 *  INPUT-XS
 *  --------
 *
 *  [Reference]
 *  - https://coderwall.com/p/xpahmg
 *
 *
 *  [Example : input]
 *
 *  &lt;input class="form-control input-xs" type="text" placeholder=".input-xs" /&gt;
 *
 *  &lt;select class="form-control input-xs"&gt;...&lt;/select&gt;
 *
 *
 *  [Example : input-group]
 *
 *  &lt;div class="input-group input-group-xs"&gt;
 *    &lt;div class="input-group-addon"&gt;&lt;i class="glyphicon glyphicon-search"&gt;&lt;/i&gt;&lt;/div&gt;
 *    &lt;input type="text" class="form-control" placeholder="Keyword" /&gt;
 *    &lt;div class="input-group-btn"&gt;&lt;button class="btn btn-default"&gt;Go&lt;/button&gt;&lt;/div&gt;
 *  &lt;/div&gt;
 *
 **/

.input-xs {
	height: 22px;
	padding: 5px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px;
}
select.input-xs { padding: 2px 5px; }

.input-group-xs&gt;.form-control,
.input-group-xs&gt;.input-group-addon,
.input-group-xs&gt;.input-group-btn&gt;.btn {
	height: 22px;
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
}




/**
 *  -------------------
 *  INPUT-GROUP-CONTROL
 *  -------------------
 *
 *
 *  [Example]
 *
 *  &lt;div class="input-group"&gt;
 *    &lt;div class="input-group-control"&gt;&lt;select class="form-control"&gt; ... &lt;/select&gt;&lt;/div&gt;
 *    &lt;input type="text" class="form-control" /&gt;
 *    &lt;div class="input-group-btn"&gt;&lt;button class="btn btn-default"&gt;Go&lt;/button&gt;&lt;/div&gt;
 *  &lt;/div&gt;
 *
 **/

.input-group .input-group-control {
	display: table-cell;
	width: 1%;
}
.input-group .input-group-control &gt; .form-control {
	display: block;
}

.input-group-control:first-child &gt; .form-control {
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
	border-right: 0;
	width: auto;
}

.input-group-control:last-child &gt; .form-control {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
	border-left: 0;
	width: auto;
}

.input-group-control:not(:first-child):not(:last-child) &gt; .form-control {
	border-radius: 0;
	border-left: 0;
	width: auto;
}




/**
 *  ------------
 *  TAB VERTICAL
 *  ------------
 *
 *  Custom inclusion of right, left and below tabs
 *
 *
 *  [Reference]
 *  - http://stackoverflow.com/questions/18432577/stacked-tabs-in-bootstrap-3
 *
 *
 *  [Example]
 *
 *  &lt;div class="tab-left"&gt;
 *    &lt;ul class="nav nav-tabs"&gt; ... &lt;/ul&gt;
 *  &lt;/div&gt;
 *
 *  &lt;div class="tab-right"&gt;
 *    &lt;ul class="nav nav-tabs"&gt; ... &lt;/ul&gt;
 *  &lt;/div&gt;
 *
 *  &lt;div class="tab-below"&gt;
 *    &lt;ul class="nav nav-tabs"&gt; ... &lt;/ul&gt;
 *  &lt;/div&gt;
 *
 **/

.tabs-below &gt; .nav-tabs,
.tabs-right &gt; .nav-tabs,
.tabs-left &gt; .nav-tabs {
	border-bottom: 0;
}

.tab-content &gt; .tab-pane,
.pill-content &gt; .pill-pane {
	display: none;
}

.tab-content &gt; .active,
.pill-content &gt; .active {
	display: block;
}

.tabs-below &gt; .nav-tabs {
	border-top: 1px solid #ddd;
}

.tabs-below &gt; .nav-tabs &gt; li {
	margin-top: -1px;
	margin-bottom: 0;
}

.tabs-below &gt; .nav-tabs &gt; li &gt; a {
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.tabs-below &gt; .nav-tabs &gt; li &gt; a:hover,
.tabs-below &gt; .nav-tabs &gt; li &gt; a:focus {
	border-top-color: #ddd;
	border-bottom-color: transparent;
}

.tabs-below &gt; .nav-tabs &gt; .active &gt; a,
.tabs-below &gt; .nav-tabs &gt; .active &gt; a:hover,
.tabs-below &gt; .nav-tabs &gt; .active &gt; a:focus {
	border-color: transparent #ddd #ddd #ddd;
}

.tabs-left &gt; .nav-tabs &gt; li,
.tabs-right &gt; .nav-tabs &gt; li {
	float: none;
}

.tabs-left &gt; .nav-tabs &gt; li &gt; a,
.tabs-right &gt; .nav-tabs &gt; li &gt; a {
	min-width: 74px;
	margin-right: 0;
	margin-bottom: 3px;
}

.tabs-left &gt; .nav-tabs {
	float: left;
	margin-right: 19px;
	border-right: 1px solid #ddd;
}

.tabs-left &gt; .nav-tabs &gt; li &gt; a {
	margin-right: -1px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.tabs-left &gt; .nav-tabs &gt; li &gt; a:hover,
.tabs-left &gt; .nav-tabs &gt; li &gt; a:focus {
	border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left &gt; .nav-tabs .active &gt; a,
.tabs-left &gt; .nav-tabs .active &gt; a:hover,
.tabs-left &gt; .nav-tabs .active &gt; a:focus {
	border-color: #ddd transparent #ddd #ddd;
	*border-right-color: #ffffff;
}

.tabs-right &gt; .nav-tabs {
	float: right;
	margin-left: 19px;
	border-left: 1px solid #ddd;
}

.tabs-right &gt; .nav-tabs &gt; li &gt; a {
	margin-left: -1px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.tabs-right &gt; .nav-tabs &gt; li &gt; a:hover,
.tabs-right &gt; .nav-tabs &gt; li &gt; a:focus {
	border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right &gt; .nav-tabs .active &gt; a,
.tabs-right &gt; .nav-tabs .active &gt; a:hover,
.tabs-right &gt; .nav-tabs .active &gt; a:focus {
	border-color: #ddd #ddd #ddd transparent;
	*border-left-color: #ffffff;
}</pre></body></html>