/* 1. Universal Styles
----------------------------------------------*/
* {
	font-family: Ruda, メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
body {
	font-size: 12px;
}
body, .custom-left-nav {
	background: #666666;
}
h1, h2, h3 {
	margin: 0;
}
h2 {
	font-size: 1.2em;
}
h3 {
	color: #7f7f7f;
	font-size: 1.0em;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
a:hover {
	text-decoration: none;
}
nav li {
	font-size: 1.0em;
	list-style: none;
	text-transform: uppercase;
}
.custom-inline-block {
	display: inline-block;
	vertical-align: middle;
}
.custom-block {
	display: block;
}
.custom-position-relative {
	position: relative;
}
.blue-text {
	color: #39ADB4;
}
.white-text {
	color: white;
}
.green-bg {
	background-color: #39ADB4;
}
.yellow-bg {
	background-color: #D8D138;
}
.white-bg {
	background-color: white;
}
.white-bg .fa-times {
	background-color: #d7d7d7;
}
.white-bg .fa-times:hover {
	background: #83ccd1;
}
.orange-bg {
	background-color: #F17A54;
	color: white;
}
.orange-bg .fa-times {
	background-color: #F0A790;
}
.orange-bg .fa-times:hover {
	background-color: #E14311;
}
.pink-bg {
	background-color: #D7425C;
	color: white;
}
.pink-bg .fa-times {
	background-color: #E57C8F;
}
.pink-bg .fa-times:hover {
	background-color: #BD1F3B;
}
.blue-bg {
	background-color: #3275BB;
	color: white;
}
.blue-bg .fa-times {
	background-color: #6792C0;
}
.blue-bg .fa-times:hover {
	background-color: #2C639C;
}
.mr10 {
	margin: -10px;
}
.mc10 {
	margin-top: -10px;
	margin-bottom: -10px;
	margin-right: -5px;
}
.mt6 {
	margin-top: 6px;
}
.p10 {
	padding: 10px;
}
.p-10 {
	padding: -10px !important;
}
.light-gray-login-bg {
	/* 画像ファイルの指定 */
	background-image: url(../images/login-bg.jpg);
	/* 画像を常に天地左右の中央に配置 */
	background-position: center center;
	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: no-repeat;
	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: fixed;
	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
	background-size: cover;
	/* 背景画像が読み込まれる前に表示される背景のカラー */
	background-color: #464646;
}
/* main bg  */
.light-gray-bg {
	background-color: #F9F9F9;
}
.padding-right-25 {
	padding-right: 25px;
}
.margin-bottom-0 {
	margin-bottom: 0;
}
.margin-bottom-5 {
	margin-bottom: 5px;
}
.margin-bottom-10 {
	margin-bottom: 10px;
}
.margin-bottom-30 {
	margin-bottom: 30px;
}
.margin-bottom-70 {
	margin-bottom: 70px;
}
.margin-right-15 {
	margin-right: 15px;
}
.margin-10 {
	margin: 10px;
}
.width-100 {
	width: 100%;
}
.no-border {
	border: none;
}
.border-radius-10 {
	border-radius: 5px;
}
.clip {
	text-overflow: clip;
}
footer {
	padding: 15px;
}

span.must,
p.error {
	color:#ff0000;
}
/* 2. Left Column
-----------------------------*/
.custom-sidebar {
	width: 200px;
}
.square {
	width: 5px;
	height: 25px;
	border: 2px solid #FFC17C;
	display: inline-block;
	vertical-align: middle;
}
.circle {
	width: 15px;
	height: 15px;
	border-radius: 50%;
}
.custom-site-header {
	margin: 25px 30px;
}
.custom-site-header h1 {
	color: white;
	display: inline-block;
	font-size: 1.3em;
	font-weight: 300;
	letter-spacing: 1.5px;
	margin: 0 5px;
	vertical-align: middle;
}
.profile-photo-container {
	position: relative;
}
.profile-photo-overlay {
	background-color: rgba(4, 152, 114, 0.35);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}
.profile-photo-overlay:hover {
	background-color: rgba(4, 152, 114, 0);
}
/* Search form */
.custom-search-form {
	font-size: 1.1em;
	margin: 50px 20px;
}
.custom-search-form .input-group {
	width: 100%;
}
.custom-search-form .input-group .form-control {
 background-color: # 18191b;
	border: none;
	border-radius: 5px;
	color: #DDD;
	padding-left: 30px;
}
.form-control:focus {
	border-color: #FFC17C;
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(19,137,95,.075), 0 0 8px rgba(19,137,95,.6);
}
.form-control.highlight {
 background-color: # 39ADB4;
	color: white;
}
.form-control.highlight::-webkit-input-placeholder { /* WebKit browsers */
 color:    #ccc;
}
.form-control.highlight:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
 color:    #ccc;
 opacity:  1;
}
.form-control.highlight::-moz-placeholder { /* Mozilla Firefox 19+ */
 color:    #ccc;
 opacity:  1;
}
.form-control.highlight:-ms-input-placeholder { /* Internet Explorer 10+ */
 color:    #ccc;
}
.custom-search-form .input-group {
	position: relative;
}
.fa-search {
	height: 32px;
	width: 32px;
	border: none;
	cursor: pointer;
	color: white;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.mobile-menu-icon {
	cursor: pointer;
	display: none;
}
.custom-left-nav li {
	font-weight: 300;
}
.custom-left-nav a.active, .custom-left-nav a:hover {
	background: #888888;
	border-right: 8px solid #FFC17C;
}
.custom-left-nav a {
	color: #e9e9ea;
	display: block;
	padding: 10px;
	transition: all 0.3s ease;
}
.custom-left-nav .fa {
	width: 25px;
}
.label {
	margin-bottom: 2px !important;
}

/* 3. Right Column
------------------------------*/
.custom-top-nav-container {
	background-color: white;
	padding: 10px 30px;
	box-shadow: 0px 0px 2px 2px rgba(161, 159, 159, 0.18);
}
.custom-top-nav li {
	float: left;
	list-style: none;
}
.custom-top-nav a {
	color: #7f7f7f;
	display: block;
	padding: 0 50px;
	border-left: 2px solid #c5c5c5;
}
.custom-top-nav li:last-child a {
	border-right: 2px solid #c5c5c5;
}
.custom-top-nav a:hover, .custom-top-nav a.active {
	color: #39ADB4;
}
/* Main Content Area */
.custom-content {
	margin-top: 0px;
	min-height: 600px;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}
.custom-content-container {
	padding: 15px 20px;
}
.custom-flex-row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.col-1 {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.col-2 {
	-webkit-flex: 2;
	-ms-flex: 2;
	flex: 2;
}
/* Content Widget */
.custom-content-widget {
	border-radius: 5px;
	padding: 10px;
	position: relative;
	margin: 10px;　　　
	box-shadow: 0px 0px 1px 1px rgba(161, 159, 159, 0.1);
	width: 100%;
	max-width: 100%;
}
.top50 {
	max-width: 100%;
	min-width: 40%;
}
.top70 {
	max-width: 100%;
	min-width: 60%;
}
.top30 {
	max-width: 100%;
	min-width: 20%;
}
.top75 {
	max-width: 100%;
	min-width: 65%;
}
.top25 {
	max-width: 100%;
	min-width: 15%;
}
.custom-content-widget.no-padding {
	padding: 0;
}
.fa-times {
	border-radius: 5px;
	color: white;
	cursor: pointer;
	padding: 4px 5px;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 100;
	transition: all 0.3s ease;
}
.fa-heart {
	color: white;
	cursor: pointer;
	font-size: 1.4em;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 100;
	transition: all 0.3s ease;
}
.fa-heart:hover {
	color: #39ADB4;
}
.progress {
	display: block;
}
.panel-default>.panel-heading {
	background-color: #39ADB4;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	color: white;
	padding: 15px;
}
.panel-default .fa-times {
	top: 12px;
	background-color: #67B5B9;
}
.panel-default .fa-times:hover {
	background-color: #297B7F;
}
.panel {
	border-radius: 5px;
}
.pagination-wrap {
	margin-right: 10px;
	text-align: right;
}
.pagination>li>a {
	border-color: #E9E8E8;
	color: #a6a6a6;
	margin: 2px;
	padding: 10px;
}
.pagination>li>a, .pagination>li:first-child>a, .pagination>li:last-child>a {
	border-radius: 5px;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover {
	background-color: #39ADB4;
	border-color: #E9E8E8;
}
.table {
	margin-bottom: 0;
}
.table>tbody>tr>td {
	padding: 5px 5px;
}
.table>thead>tr>td {
	padding: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.r {
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.l {
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.c {
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.media {
	margin-top: 0;
}
.media-body {
	vertical-align: middle;
}
.badge {
	background-color: #d6973d;
	border-radius: 5px;
	margin-left: 5px;
	padding: 5px 10px;
	vertical-align: top;
}
.custom-img-bordered {
	border: 1px solid #ccc;
	padding: 3px;
}
.cursor-pointer {
	cursor: pointer;
	font-size: 1.6em;
}
/* 4. Charts & Maps - http://codepen.io/shoogledesigns/pen/BfLkA
----------------------------------------------------------------*/
.custom-chart {
	width: 100%;
	height: 300px;
}
#timeline_div {
	height: auto;
}
/* JQVMap */
.jqvmap-zoomin, .jqvmap-zoomout {
	width: 15px;
	height: 15px;
}
.vmap {
	height: 300px;
}
/* 5. Login
------------------------------*/
.custom-login-widget {
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px;
}
.custom-login-widget .square {
	width: 5px;
	height: 25px;
	border: 2px solid #FFC17C;
	display: inline-block;
	vertical-align: middle;
}
.custom-login-widget header {
	margin-bottom: 40px;
}
.custom-login-widget h1 {
	display: inline-block;
	font-size: 1.3em;
	text-align: center;
	vertical-align: middle;
}
.custom-login-form .form-group {
	margin-bottom: 5px;
}
.custom-login-form .form-group:last-child {
	margin-bottom: 0;
}
.input-group-addon {
	background: none;
}
.w25 {
	width: 25px;
	height: 17px;
}
.w35 {
	width: 35px;
	height: 17px;
}
.btn-primary {
	border-radius: 2px;
	background-color: #39ADB4;
	border: none;
	color: white;
}
.btn-primary:hover {
	background-color: #2A858B;
}
.custom-blue-button, .custom-white-button, .custom-info-button, .custom-primary-button, .custom-warning-button, .custom-success-button, .custom-danger-button, .custom-gray-button {
	border-radius: 2px;
	padding: 5px 30px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	white-spce: nowrap;
	cursor: pointer;
}
.custom-button-s {
	padding: 1px 15px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
.custom-button-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}
.custom-blue-button {
	background-color: #39ADB4;
	border: 1px solid #39ADB4;
	color: white;
}
.custom-blue-button:hover {
	background-color: #2A858B;
}
.custom-white-button {
	background-color: white;
	border: 1px solid #39ADB4;
	color: #39ADB4;
}
.custom-white-button:hover {
	background-color: #eff2f3;
}
.custom-register-widget {
	max-width: 450px;
	padding: 15px;
	text-align: center;
}

.custom-info-button {
	background-color: #5bc0de;
	border: 1px solid #46b8da;
	color: white;
}
.custom-info-button:hover {
	background-color: #5AA4BB;
	border-color: #46b8da;
	color: white;
}

.custom-primary-button {
	background-color: #337ab7;
	border: 1px solid #2e6da4;
	color: white;
}
.custom-primary-button:hover {
	background-color: #286090;
	border-color: #204d74;
}

.custom-warning-button {
	background-color: #f0ad4e;
	border: 1px solid #eea236;
	color: white;
}
.custom-warning-button:hover {
	background-color: #DFA75A;
	border-color: #eea236;
	color: white;
}

.custom-success-button {
	background-color: #5cb85c;
	border: 1px solid #5cb85c;
	color: white;
}
.custom-success-button:hover {
	background-color: #5FA15F;
	border-color: #5cb85c;
	color: white;
}
.custom-danger-button {
	background-color: #d9534f;
	border: 1px solid #d43f3a;
	color: white;
}
.custom-danger-button:hover {
	background-color: #BF5A56;
	border: 1px solid #d43f3a;
	color: white;
}
.custom-gray-button {
	background-color: #c0c0c0;
	border: 1px solid #c0c0c0;
	color: white;
}
.custom-gray-button:hover {
	background-color: #dedede;
	border: 1px solid #dedede;
	color: white;
}


.custom-register-widget p {
	margin-bottom: 0;
}
.checkbox label {
	padding-left: 0;
}
.font-weight-400 {
	font-weight: 400;
}
.twitter-typeahead{
	width:100%;
}
/* Style checkboxes and radio buttons
http://webdesign.tutsplus.com/tutorials/quick-tip-easy-css3-checkboxes-and-radio-buttons--webdesign-8953 */
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label span {
	display: inline-block;
	width: 26px;
	height: 25px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(../images/checkbox-radio-sheet.png) left top no-repeat;
	cursor: pointer;
}
input[type="checkbox"]:checked + label span {
	background: url(../images/checkbox-radio-sheet.png) -26px top no-repeat;
}
input[type="radio"] {
	display: none;
}
input[type="radio"] + label span {
	display: inline-block;
	width: 26px;
	height: 25px;
	margin: -1px 4px 0 0;
	vertical-align: middle;
	background: url(../images/checkbox-radio-sheet.png) -52px top no-repeat;
	cursor: pointer;
}
input[type="radio"]:checked + label span {
	background: url(../images/checkbox-radio-sheet.png) -78px top no-repeat;
}
/* 6. Manage Users
------------------------------*/
.custom-sort-by:hover {
	color: #ded9d9;
}
.custom-edit-btn {
	border: 1px solid #ddd;
	border-radius: 3px;
	color: black;
	padding: 5px 15px;
	transition: all 0.3s ease;
}
.custom-edit-btn:hover {
	background-color: #39ADB4;
	border: 1px solid #39ADB4;
	color: white;
}
.custom-link {
	color: black;
}
.custom-link:hover {
	color: #39ADB4;
}
.custom-overflow-hidden {
	overflow: hidden;
}
.custom-user-table thead {
	background-color: rgba(33, 33, 33, 0.35);
	color: white;
}
.custom-user-table tr{
cursor:pointer;
}
.custom-user-table tr:hover {
color:#39ADB4;
}
.panel>.table-responsive:last-child>.table:last-child, .panel>.table:last-child {
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.panel>.table:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.custom-social-icons-container {
	background-color: #f4f3f3;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	box-shadow: 0px 0px 1px 1px rgba(161, 159, 159, 0.1);
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top: 1px solid #dedede;
}
.social-icon-wrap {
	width: 33%;
	height: 100%;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.social-icon-wrap:nth-child(2) {
	border-left: 1px solid #dedede;
	border-right: 1px solid #dedede;
}
.custom-social-icon {
	background-color: #a6a6a6;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 1.5em;
	padding-top: 8px;
	width: 35px;
	height: 35px;
	transition: all 0.3s ease;
}
.custom-social-icon:hover {
	background-color: #39ADB4;
}
.custom-content-img-bg {
	background-position: center;
	background-attachment: stretch;
	min-height: 300px;
}
.content-bg-img {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 5px;
	width: 100%;
	height: 100%;
}
.view-img-btn-wrap {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
}
.custom-view-img-btn {
	background-color: #f4f3f3;
	border: none;
	border-radius: 5px;
	color: #a6a6a6;
	padding: 10px 50px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}
.custom-view-img-btn:hover {
	background-color: #39ADB4;
	color: white;
}

.typeahead,
.tt-query,
.tt-hint {
  width: 396px;
  height: 30px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 30px;
  border: 2px solid #ccc;
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  outline: none;
}

.typeahead {
  background-color: #fff;
}

.typeahead:focus {
  border: 2px solid #0097cf;
}

.tt-query {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-hint {
  color: #999
}

.tt-menu {
  width: 422px;
  margin: 12px 0;
  padding: 8px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
          border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
     -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
          box-shadow: 0 5px 10px rgba(0,0,0,.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 18px;
  line-height: 24px;
}

.tt-suggestion:hover {
  cursor: pointer;
  color: #fff;
  background-color: #0097cf;
}

.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0097cf;

}

.tt-suggestion p {
  margin: 0;
}

.gist {
  font-size: 14px;
}

table.no-border tr td{
	border-top: 0px;
}
table.no-border tr{
	background-color: #f9f9f9
}
table.no-border .r{
	padding-right: 20px;
}
table .margin-top-10 .mc10{
    margin-top: 0px;
}
.t0{
    top: 0px;
}

/* 7. Preferences
-------------------------------*/
.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
	color: #FFC17C;
}
.has-success .form-control {
	border-color: #FFC17C;
}
.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
	color: #CF922C;
}
.has-warning .form-control {
	border-color: #CF922C;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
	color: #D7425C;
}
.has-error .form-control {
	border-color: #D7425C;
}
.custom-multi-select {
	min-width: 200px;
	height: 100px;
	overflow-y: scroll;
}

select.mailselect{
	max-width: 78px;
	display:inline;
}

/***  scrollbar    ***/

body {
	scrollbar-base-color: #fcc800;
}
body::-webkit-scrollbar {
width: 3px!important;
height: auto;
overflow-x: hidden;
}
body::-webkit-scrollbar-track {
background: none;
-webkit-box-shadow: inset 0 0 6px;
}
body::-webkit-scrollbar-thumb {
background:#fcc800;
}
div {
	scrollbar-base-color: #fcc800;
	-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.1);
}
div::-webkit-scrollbar {
width: 1px!important;
height: auto;
overflow-x: hidden;
}
div::-webkit-scrollbar-track {
background: #F3F3F3;
-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0.5);
}
div::-webkit-scrollbar-thumb {
background: #3399FF;
}



/* 8. Media Queries
------------------------------*/
@media screen and (min-width: 1200px) {
}


/* 8. Media Queries
------------------------------*/
@media screen and (max-width: 1199px) and (min-width: 991px) {
/*	 
.custom-site-header {
	margin: 25px;
}
.custom-sidebar {
	width: 200px;
}
.custom-search-form {
	margin: 20px;
}
*/

nav li {
	font-size: 1em;
}
.custom-left-nav a {
	padding: 10px;
}
.custom-top-nav a {
	padding: 0 30px;
}
.custom-content-widget {
	padding: 15px;
	margin: 0px;
}

}
 @media screen and (max-width: 1199px) {
.custom-flex-row.flex-content-row {
	display: block;
}
}
 @media screen and (max-width: 992px) and (min-width: 768px) {
/*	 
.custom-site-header,  .custom-search-form {
	margin: 15px;
}
.custom-sidebar {
	width: 200px;
}
.custom-site-header h1 {
	font-size: 1.3em;
}
*/
.custom-left-nav a.active, .custom-left-nav a:hover {
	border-right: 6px solid #FFC17C;
}
.custom-top-nav-container {
	padding: 10px 30px;
}
.custom-top-nav a {
	padding: 0 10px;
}
}
 @media screen and (max-width: 992px) {
nav li {
	font-size: 1em;
}
.custom-content-widget {
	padding: 15px;
	margin: 0px;
}

.custom-left-nav a {
	padding: 10px;
}
.custom-content-container {
	padding: 10px;
}
}
@media only screen and (min-width: 768px) {
.custom-left-nav {
	display: block !important;
}
}
@media screen and (max-width: 767px) {
.custom-flex-row {
	display: block;
}
.custom-site-header {
	margin: 20px 15px;
}
.profile-photo-container {
	display: none; /* Hide profile photo on mobile view */
}
.custom-search-form {
	margin: 10px;
}
.custom-top-nav-container {
	padding: 10px;
}
.custom-top-nav a {
	border-left: 1px solid #c5c5c5;
	padding: 0 7px;
}
.custom-top-nav li:last-child a {
	border-right: 1px solid #c5c5c5;
}
.custom-content-widget {
	padding: 15px;
	margin: 0px;
}
/* Left column */
.custom-left-nav {
	display: none;
	position: fixed;
	top: 10px;
	right: 50px;
	height: 300px;
	overflow: auto;
	width: 200px;
	z-index: 999;
}
.custom-left-nav a.active, .custom-left-nav a:hover {
	border-left: 4px solid #FFC17C;
}
.mobile-menu-icon {
	cursor: pointer;
	display: block;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 1000;
}
.mobile-menu-icon:hover .fa {
	background-color: rgba(255, 255, 255, 0.2);
}
.mobile-menu-icon .fa {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.4);
	font-size: 1.5em;
	width: 40px;
	height: 40px;
	padding-top: 11px;
	padding-left: 11px;
}
}