/*
	jBar v2.0.0
	URL: www.toddmotto.com // edits JM
*/

/*------------------------------------*\
    jBar
\*------------------------------------*/

.jbar {
	font-family:inherit; /* inherit your fonts */
	background:#5f281f;
	border-bottom:2px solid #FFF;
	position:fixed;
	top:0;
	left:0;
	z-index:1020; /* set high to avoid possible existing z-indexes */
	width:100%;
}
.jbar,
.jbar-push {
	display:none;
	transition:margin-top .25s linear;
	-webkit-transition:margin-top .25s linear;
	-moz-transition:margin-top .25s linear;
}
.jbar-wrap {
	padding:0 25px;
	margin:8px 0;
	text-align:center;
}
.jbar p {
	margin:0;
	padding:0;
	font-size:14px;
}
.jbar p,
.jbar-button {
	color:#FFF;
	display:inline-block;
	*display:inline;
	zoom:1;
}
.jbar-button {
	background:#FFF;
	text-decoration:none;
	padding:5px 15px;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}
.jbar-button:hover {
	background:#f8edea;
}

.jbar-down-toggle {
	visibility:;
	position:fixed;
	z-index:1005;
	display:none; /* was block */
	background:#5f281f;
	border-top:none;
	border-radius:0 0 4px 4px;
	box-shadow:0 1px 4px rgba(0,0,0,0.3);
	-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow:0 1px 4px rgba(0,0,0,0.3);
	transition:margin-top .15s linear;
	-webkit-transition:margin-top .15s linear;
	-moz-transition:margin-top .15s linear;
}

/* BIGGER SCREENS */
@media only screen and (min-width : 751px) {
	.jbar-up-toggle {
		position:absolute;
		top:0;
		right:50px;
		display:block;
		padding:10px;
	}
	.jbar-button {margin: 0 10px;}

.jbar-down-toggle {
	right:50px;
	top:-2px;
	padding:10px 10px 5px;
	border:2px solid #FFF;
}

}

/* SMALLER SCREENS */
@media only screen and (max-width : 750px) {
	.jbar-up-toggle {
		position:absolute;
		top:0;
		right:0px;
		display:block;
		padding:10px;
	}
	.jbar-button {margin: 4px 10px 0px 10px;}

.jbar-down-toggle {
	left:15px;
	top:-2px;
	padding:8px 8px 4px;
	border:2px solid #FFF;
}

}

.jbar-up-arrow {
	width:20px;
	height:20px;
	background:url(../close-white.png) no-repeat center center;
}
.jbar-down-arrow {
	width:20px;
	height:20px;
	background:url(../open-white.png) no-repeat center center;
}