/*----------------------------------------------

	BELLA.CSS
	Author:		Engage Interactive
	
----------------------------------------------*/

/* EXTRA STYLESHEETS */

@import url(/assets/bella/reset.css);


/* FONTS */

@font-face {
    font-family: 'Museo';
    src: url('/assets/bella/fonts/museo/Museo300.eot');
    src: url('/assets/bella/fonts/museo/Museo300.eot?iefix') format('eot'),
         url('/assets/bella/fonts/museo/Museo300.woff') format('woff'),
         url('/assets/bella/fonts/museo/Museo300.ttf') format('truetype'),
         url('/assets/bella/fonts/museo/Museo300.svg#webfontQF7qPaga') format('svg');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Museo';
    src: url('/assets/bella/fonts/museo/Museo500.eot');
    src: url('/assets/bella/fonts/museo/Museo500.eot?iefix') format('eot'),
         url('/assets/bella/fonts/museo/Museo500.woff') format('woff'),
         url('/assets/bella/fonts/museo/Museo500.ttf') format('truetype'),
         url('/assets/bella/fonts/museo/Museo500.svg#webfontQF7qPaga') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo';
    src: url('/assets/bella/fonts/museo/Museo700.eot');
    src: url('/assets/bella/fonts/museo/Museo700.eot?iefix') format('eot'),
         url('/assets/bella/fonts/museo/Museo700.woff') format('woff'),
         url('/assets/bella/fonts/museo/Museo700.ttf') format('truetype'),
         url('/assets/bella/fonts/museo/Museo700.svg#webfontQF7qPaga') format('svg');
    font-weight: bold;
    font-style: normal;
}


/*-------------------------------

	GENERIC STYLING

-------------------------------*/

html {
	height: 100%;
	overflow-y: scroll; /* SCROLL BARS */
}

body {
	height: 100%;
	background: #fbf5e6 url(/assets/bella/images/template/background.jpg) 50% 100%;
	font: 10px/10px Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
	color: #35332d;
}

/*---------------------

	ROUNDED

*/

.rounded,
.contact_details,
.alert,
.note,
.brown {
	border-radius: 8px;
	
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

.rounded .rounded,
.brown .rounded,
.brown,
.white_paper,
.red_paper,
.brown .contact_details {
	border-radius: 6px;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

/*---------------------

	DARK INSET

*/

.brown,
.note,
#promotions nav ul,
form .checkbox li {
	box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	background: #eee3cb;
	background: rgba(0,0,0,.2);
	
	-moz-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	-webkit-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
}


/*---------------------

	BROWN INSET

*/

.brown,
form .checkbox li {
	background: #eee3cb;
	background: rgba(238,227,203,.4);
}


/*---------------------

	PADDED

*/

.padded,
.white_paper,
.red_paper,
.brown,
.contact_details {
	padding: 12px 15px 1px;
	margin-bottom: 20px;
}

/*---------------------

	PAPER TEXTURES

*/

.white_paper {
	position: relative;
	background: #fbfbfb url(/assets/bella/images/template/white_bg.gif);
	
	/* ADD STITCHING */
	border: 1px dashed #c9c2b6;
	
	border-radius:5px;
	-moz-border-radius:5px;   
	-webkit-border-radius:5px;
	
	box-shadow: 0 0 0 4px #fbfbfb;
	-moz-box-shadow: 0 0 0 4px #fbfbfb;
	-webkit-box-shadow: 0 0 0 4px #fbfbfb;
}

.red_paper {
	position: relative;
	background: #9e3135 url(/assets/bella/images/template/red_bg.gif);
	
	/* ADD STITCHING */
	border: 1px dashed #cd797c;
	
	border-radius:5px;
	-moz-border-radius:5px;   
	-webkit-border-radius:5px;
	
	box-shadow: 0 0 0 4px #a03136;
	-moz-box-shadow: 0 0 0 4px #a03136;
	-webkit-box-shadow: 0 0 0 4px #a03136;
}

/*
.red_paper:after,
.white_paper:after {
	content: '';
	display: block;
	position: absolute;
	top: 3px; right: 3px; bottom: 3px; left: 3px;
	border: dashed 1px #eeced9;
	border-radius: 4px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

.red_paper:after {
	border: dashed 1px #bc7172;
}
*/

/*---------------------

	SHADOW

---------------------*/

.shadow,
.white_border,
.link {
	box-shadow: 0 0 4px 1px rgba(125,100,60,.3);
	
	-moz-box-shadow: 0 0 4px 1px rgba(125,100,60,.3);
	-webkit-box-shadow: 0 0 4px 1px rgba(125,100,60,.3);
}

.shadow_red {
	box-shadow: 0 2px 2px 1px rgba(113,20,23,.3);
	
	-moz-box-shadow: 0 2px 2px 1px rgba(113,20,23,.3);
	-webkit-box-shadow: 0 2px 2px 1px rgba(113,20,23,.3);
}


/*---------------------

	WHITE BORDER

---------------------*/

.white_border {
	border: solid 3px #FFF;
}

.white_border img {
	display: block;
}


/*---------------------

	ALERTS & NOTES

---------------------*/

.alert {
	border: 1px solid #1f6c28;
	border-radius: 8px;
	padding: 12px 15px 5px;
	margin-bottom: 20px;
	box-shadow: inset 0 0 10px #097014;
	background: #097014;
	color: #fff;
	
	background: -moz-linear-gradient(
		top,
		#059716,
		#097014
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#059716),
		to(#097014)
	);
}

.note {

}

.alert h4,
.note h4 {
	padding-left: 26px;	/* FOR AN ICON */
	margin-bottom: 8px;
	color: #fff;
	text-shadow: 1px 1px #066b12;
}

.alert h4 {
	background: url(/assets/bella/images/template/alert.png)0 5px no-repeat;
}

.alert p,
.note p {
	margin-bottom: 9px;
	font-size: 13px;
	line-height: 20px;
	color: #fff;
	text-shadow: 1px 1px #066b12;
}

.alert ul,
.note ul {
	margin-bottom: 10px;
}

.alert li,
.note li {
	margin-bottom: 4px;
	font-size: 13px;
	line-height: 20px;
}


/*-------------------------------

	TYPOGRAPHY

-------------------------------*/

h1, h2, h3, h4, h5 {
	margin-bottom: 12px;
	font-family: "Museo", Georgia, Times, "Times New Roman", serif;
	font-smoothing: antialiased;
	font-weight: normal;
	text-shadow: 1px 1px #FFF;
	
	/* FIX THE THICKNESS */
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

h1 {
	font-size: 40px;
	line-height: 48px;
	color: #5b1500;
}

h2 {
	font-size: 24px;
	line-height: 32px;
	color: #5b1500;
}

h3 {
	margin-bottom: 5px;
	font-size: 24px;
	line-height: 30px;
	color: #7c673b;
}

h4 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 24px;
	color: #c3302f;
}

h5 {
	
}

h6 {
	
}


/*---------------------

	HGROUP

*/

hgroup {
	margin-bottom: 12px;
}

hgroup * {
	margin-bottom: 2px;
}


/*---------------------

	PARAGRAPHS

*/

p, label, .list {
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 12px;
	text-shadow: 1px 1px #FFF;
}

label {
	font-size: 15px;
	line-height: 22px;
}

.intro {
	margin: 10px 0 15px 0;
	font: 17px/26px Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

small,
p small {
	font-size: 13px;
}

p small {
	line-height: 18px;
}

p.white {
	background: #FFF;
	border: 2px solid #fbefed;
	border-radius: 4px;
	color: #555;
	padding: 8px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/*---------------------

	LINKS

*/

a {
	color: #038011;
	text-decoration: none;
}

#content p a:hover {
	margin-bottom: -1px;
	border-bottom: dashed 1px #038011;
}


/*---------------------

	BUTTON LINKS

*/

.link {
	display: inline-block;
	position: relative;
	padding: 10px 32px 10px 12px;
	border-radius: 6px;
	background: #007510 url(/assets/bella/images/template/link.jpg) 100% 50% no-repeat;
	font: 16px "Museo", Georgia, Times, "Times New Roman", serif;
	font-smoothing: antialias;
	color: #FFF;
	text-shadow: 1px 1px 1px #05600f;
	text-decoration: none;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	
	-moz-font-smoothing: antialias;
	-webkit-font-smoothing: antialias;
}

.link:hover {
	color: #fdc323;
}

.link:after {
	content: '';
	display: block;
	position: absolute;
	top: 3px; right: 3px; bottom: 3px; left: 3px;
	border: dashed 1px #20922a;
	border-radius: 4px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

/*---------------------

	SMALL RED BUTTONS

*/

.link_red {
	float: right;
	padding: 3px 6px;
	margin: 8px;
	color: white;
	font-size: 11px;
	background: #d3262c;
	text-shadow: none;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	
	background: -moz-linear-gradient(
		top,
		#d3262c,
		#b51d22
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#d3262c),
		to(#b51d22)
	);
}

.link_red:hover,
.link_red:active {
	background: -moz-linear-gradient(
		top,
		#b51d22,
		#d3262c
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#b51d22),
		to(#d3262c)
	);
}


/*---------------------

	LISTS

*/

.list {
	margin-bottom: 10px;
}

.list li {
	margin-bottom: 4px;
}


/*-------------------------------

	GENERIC FORM STYLING

-------------------------------*/

form,
form fieldset {
	position: relative;
}

form .field {
	position: relative;
	clear: both;
	margin-bottom: 20px;
}

form .split {
	float: left;
	width: 290px;
	clear: none;
}

form .left {
	clear: both;
	margin-right: 40px;
}

form label {
	display: block;
	margin-bottom: 5px;
}


/*---------------------

	INPUTS, SELECTS
	& TEXTAREAS
	
	THIS IS NOT FOR STYLING THE TEXT INPUTS
	To do that, head down to the inputs heading

*/

form input,
form .select .body,
form textarea {
	display: inline-block;
	height: 20px;
	padding: 9px;
	border: solid 1px #FFF;
	background: #FFF;
	color: #928a79;
	outline: none;
}

/* Hide hidden inputs on FF 3.5 */

form input[type=hidden] {
	display: none;
}


/*---------------------

	ERRORS

---------------------*/

p.error {
	display: inline-block;
	position: relative;
	clear: both;
	z-index: 100;
	border-radius: 8px;
	border: 1px solid #1f6c28;
	padding: 4px 10px 4px 30px;
	margin: 4px 0 0;
	box-shadow: inset 0 0 10px #097014;
	background: #059716 url(/assets/bella/images/template/alert.png) 8px 6px no-repeat;
	color: #fff;
	
	background: url(/assets/bella/images/template/alert.png) 8px 6px no-repeat, -moz-linear-gradient(
		top,
		#059716,
		#097014
	);
	background: url(/assets/bella/images/template/alert.png) 8px 6px no-repeat, -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#059716),
		to(#097014)
	);
}

.webkit .textarea .error {
	margin-top: 3px;
}

p.error:after {
	content: '';
	display: block;
	position: absolute;
	top: -7px; left: 10px;
	width: 13px;
	height: 8px;
	background: green;
	background: url(/assets/bella/images/template/form_error.png);
}


/*---------------------

	INPUTS

*/

form input,
form textarea {
	width: 270px;
	border: solid 1px #FFF;
	border-radius: 8px;
	box-shadow: inset 0 0 10px #FFF;
	background: #fdfbf5;
	font-size: 17px;
	font-family:Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
	
	background: -moz-linear-gradient(
		top,
		#fefefc,
		#fbf5e6
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fefefc),
		to(#fbf5e6)
	);
}

form input:focus,
form textarea:focus {
	/* SOMETHING */
}

/*
	For when there is a text input right next to a button
	wrap the input and button in a span class of join
	it will make the rounded corners all nice
*/

form .join {
	display: inline-block;
	position: relative;
	padding-right: 40px;
}

form .join input,
form .select .body,
#location_picker input {
	border-radius: 8px 0 0 8px;
	
	-moz-border-radius: 8px 0 0 8px;
	-webkit-border-radius: 8px 0 0 8px;
}

form .join input {
    width: 180px;
}



/*---------------------

	TEXTAREA

*/

form textarea {
	width: 602px;
	max-width: 602px;
	height: 100px;
	max-height: 300px;
}


/*---------------------

	WEBKIT SEARCH
	FIELD FIXINGS

*/

input[type="search"]::-webkit-search-decoration {
	display: none;
}

input[type="search"]::-webkit-search-cancel-button {
	margin-right: 5px;
}

.webkit form input[type="search"] {
	height: 40px;
	padding-right: 0;
	-webkit-appearance: textfield;
}


/*---------------------

	BUTTON
	These styles apply to a few things all at once.
	Select arrows, buttons, the search button at the
	bottom of the drop down and anything with a class
	of button. Seeing as they are all the same, it
	makse sense.

*/

form button,
form .select a,
.drop_down_list a.search,
.button {
	display: inline-block;
	padding: 3px;
	margin: 0;
	border: none;
	border-radius: 8px;
	box-shadow: inset 0 1px #ffef43, inset 1px 0 rgba(91,21,0,.13);
	background: #fed128;
	white-space: nowrap;
	cursor: pointer;
	font: 16px "Museo", Georgia, Times, "Times New Roman", serif;
	color: #5b1500;
	text-shadow: 1px 1px #fed161;
	
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	
	-moz-box-shadow: inset 0 1px #ffef43, inset 1px 0 rgba(91,21,0,.13);
	-webkit-box-shadow: inset 0 1px #ffef43, inset 1px 0 rgba(91,21,0,.13);
	
	background: -moz-linear-gradient(
		top,
		#fed72a,
		#fcb21c
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fed72a),
		to(#fcb21c)
	);
}

form .select a {
	background: url(/assets/bella/images/template/arrow_down.png) 10px 10px no-repeat, -moz-linear-gradient(
		top,
		#fed72a,
		#fcb21c
	);
	background: url(/assets/bella/images/template/arrow_down.png) 10px 10px no-repeat, -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fed72a),
		to(#fcb21c)
	);
}


/* HOVER */

form button:hover,
form .select a:hover,
form .select.hover a,
.drop_down_list a.search:hover,
.button:hover {
	background: #fcb21c;
	
	background: -moz-linear-gradient(
		top,
		#fcb21c,
		#fed72a
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fcb21c),
		to(#fed72a)
	);
}

form .select a:hover,
form .select.hover a {
	background: url(/assets/bella/images/template/arrow_down.png) 10px 10px no-repeat, -moz-linear-gradient(
		top,
		#fcb21c,
		#fed72a
	);
	background: url(/assets/bella/images/template/arrow_down.png) 10px 10px no-repeat, -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fcb21c),
		to(#fed72a)
	);
}

/* ACTIVE */

form button:active,
form .select a:active,
.drop_down_list a.search:active,
.button:active {
	background: -moz-linear-gradient(
		top,
		#059716,
		#097014
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#059716),
		to(#097014)
	);
	
	-moz-box-shadow: inset 0 1px #0abf1f, inset 1px 0 rgba(10,190,30,.13);
	-webkit-box-shadow: inset 0 1px #0abf1f, inset 1px 0 rgba(10,190,30,.13);
	
	color: #fff;
	text-shadow: 1px 1px 1px #097014;
}

form .select a:active {
	background: url(/assets/bella/images/template/arrow_down_white.png) 10px 10px no-repeat, -moz-linear-gradient(
		top,
		#059716,
		#097014
	);
	background: url(/assets/bella/images/template/arrow_down_white.png) 10px 10px no-repeat, -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#059716),
		to(#097014)
	);
}

/* For when there is a text input right next to a button */

form .join button,
form .select a,
#location_picker button {
	width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 0 8px 8px 0;
	
	-moz-border-radius: 0 8px 8px 0;
	-webkit-border-radius: 0 8px 8px 0;
}

form .join button {
	position: absolute;
	top: 0; right: 0;
}

/* FIREFOX BUTTON WEIRDNESS */

form button::-moz-focus-inner { 
    padding: 0;
    border: 0;
}


/*---------------------

	SELECTS

*/

form .select {
	display: block;
	position: relative;
}

form .field .select {
	width: 290px;
}

form .small .select {
	float: left;
	width: 94px;
	margin-right: 4px;
}

form .small .select.last {
	margin-right: 0;
}

form .select select {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-appearance: textfield;
	cursor: pointer;
	font-size: 14px;
}

form .select .body {
	display: block;
	height: 10px;
	padding: 14px;
	margin-right: 40px;
	background: #fdfbf5;
	white-space: nowrap;
	cursor: default;
	font-size: 17px;
	color: #928a79;
	
	background: -moz-linear-gradient(
		top,
		#fefefc,
		#fbf5e6
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fefefc),
		to(#fbf5e6)
	);
}

form .small .select .body {
	margin-right: 30px;
}

form .select a {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 40px;
	height: 40px;
	transition: none;
	
	-webkit-transition: none;
	-moz-transition: none;
}

form .select a span {
	background: url(/assets/bella/images/template/arrow_down.png) 50% 50% no-repeat;
	background: -moz-linear-gradient(
		top,
		#fed72a,
		#fcb21c
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fed72a),
		to(#fcb21c)
	);
}

form .small .select a {
	width: 30px;
	background: url(/assets/bella/images/template/arrow_down.png) 50% 50% no-repeat, -moz-linear-gradient(
		top,
		#fed72a,
		#fcb21c
	);
	background: url(/assets/bella/images/template/arrow_down.png) 50% 50% no-repeat, -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fed72a),
		to(#fcb21c)
	);
}


/*---------------------

	CHECKBOX

*/

form .checkbox {
	margin-bottom: 10px;
}

form .checkbox li {
	display: inline-block;
	position: relative;
	border-radius: 4px;
	margin: 0 10px 10px 0;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

form .checkbox li input {
	position: absolute;
	top: 10px; left: 10px;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
	cursor: pointer;
	
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

form .checkbox li label {
	padding: 6px 10px 6px 36px;
	margin: 0;
	font-size: 15px;

	cursor: pointer;
}


/*-------------------------------

	BASIC LAYOUT

-------------------------------*/

#content {
	position: relative;
	z-index: 10;
	width: 960px;
	padding-bottom: 280px; /* THE HEIGHT OF THE FOOTER FOR STICKYNESS */
	margin: auto;
}


/*---------------------

	HEADER IMAGE

*/

#header_image {
	display: block;
	position: absolute;
	top: 0; left: 0;
	z-index: 1;
	width: 100%;
	height: 260px;
}

/*--- SMALL HEADER ---*/

#header_image span {
	position: absolute;
	top: 0; left: 0;
	z-index: 2;
	width: 100%;
	height: 260px;
}

/*---------------------

	HEADER & NAV

---------------------*/

header {
	position: relative;
	z-index: 3;
	height: 100px;
	margin-bottom: 20px;
}

header nav {
	position: relative;
	width: 960px;
	height: 100%;
	margin: auto;
}

header nav ul {
	position: absolute;
	right: 0; bottom: 33px;
}

header nav li {
	display: block;
	float: left;
	margin-right: 10px;
}

header nav li a {
	display: inline-block;
	position: relative;
	padding: 8px 12px;
	border-radius: 6px;
	background: #FFF;
	font: 18px "Museo", Georgia, Times, "Times New Roman", serif;
	font-smoothing: antialias;
	color: #5b1500;
	text-decoration: none;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	
	-moz-font-smoothing: antialias;
	-webkit-font-smoothing: antialias;
}

header nav li a:hover,
header nav .on a {
	background: #af353a url(/assets/bella/images/template/red_felt.jpg);
	color: #FFF;
	text-shadow: 1px 1px 1px #71181c;
}

header nav li a:hover:after,
header nav .on a:after {
	content: '';
	display: block;
	position: absolute;
	top: 3px; right: 3px; bottom: 3px; left: 3px;
	border: dashed 1px #e0989a;
	border-radius: 4px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}


/*---------------------

	LOGO

*/

a#logo {
	display: block;
	position: absolute;
	top: 0; left: -195px;
	width: 300px;
	height: 70px;
	padding: 30px 122px 205px 205px;
	background: url(/assets/bella/images/template/logo_background.png);
}

/*---------------------

	SIDE NAV

---------------------*/

nav#side,
#side {
	width: 260px;
	padding: 20px;
	background: url(/assets/bella/images/template/side_nav_middle.png) 20% 50% repeat-y;
}

#side_top {
	display: block;
	position: relative;
	width: 290px;
	height: 55px;
	padding-top: 40px;
	margin-left: 5px;
	margin-top: -35px;
	background-color: #000;
	background: url(/assets/bella/images/template/side_nav_top.png) 50% 0% no-repeat;
}

#side_bottom {
	display: block;
	width: 290px;
	height: 22px;
	margin-left: 5px;
	background: url(/assets/bella/images/template/side_nav_bottom.png) 50% 100% no-repeat;
}

/*---------------------
#side,
nav#side {
	position: relative;
	margin-top: -40px;
	padding: 90px 30px 30px;
	
	background-image: 
	url(/assets/bella/images/template/side_nav_top.png),
	url(/assets/bella/images/template/side_nav_bottom.png),
	url(/assets/bella/images/template/side_nav_middle.png);
	
	background-position: 50% 0%, 50% 100%, 20% 50%;
	background-repeat: no-repeat, no-repeat, repeat-y;
}
---------------------*/

#side p, nav#side p,
#side label, nav#side label,
nav#side li a {
	display: block;
	padding: 5px 0 5px 20px;
	font-size: 14px;
	line-height: 20px;
	color: #F7EED6;
	font-family: "Museo", Georgia, Times, "Times New Roman", serif;
	text-shadow: 1px 1px #670D10;
}

#side label, nav#side label {
	padding: 5px;
}

nav#side li a.section {
	padding: 7px;
	font-size: 20px;
	line-height: 30px;
	
	border-bottom: dashed 1px #BD6A6D;
	box-shadow: 0 1px #9b292e;
	-moz-box-shadow: 0 1px #9b292e;
	-webkit-box-shadow: 0 1px #9b292e;
}

nav#side li a.pdf,
#menus nav a.pdf {
	padding-left: 30px;
	background: url('/assets/bella/images/icons/white_pdf.png') 2% 50% no-repeat;
}

nav#side li a.web,
#menus nav a.web {
	padding-left: 30px;
	background: url('/assets/bella/images/icons/white_web.png') 2% 50% no-repeat;
}

nav#side li a:hover,
nav#side li.on,
nav#side li a:active {
	background-color: #9b2529;
	color: #fdc323;
	border-radius: 4px;
	box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	
	-moz-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	-webkit-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

#side h2,
nav#side h2,
#items h2 {
	font: 22px "Museo", Georgia, Times, "Times New Roman", serif;
	margin: 10px 0;
	color: #F7EED6;
	text-shadow: 1px 1px 1px #71171a;
}


#side p,
nav#side p {
	
}

/*---------------------

	FOOTER

---------------------*/

footer {
	position: relative;
	z-index: 20;
	clear: both;
	width: 960px;
	height: 240px;
	padding-top: 40px;
	margin: -280px auto 0;
	color: #7c673b;
}

footer div h3 {
	padding-bottom: 8px;
	margin: 0 20px 16px 20px;
	border-bottom: dashed 2px #e7d5d2;
}

footer ul {
	padding: 0 0 10px 20px;
}

footer ul li {
	float: left;
	width: 130px;
	margin-right: 10px;
}

footer ul li:nth-child(even) {
	margin-right: 0;
}

footer ul a {
	font-size: 14px;
	color: #7c673b;
}

footer ul a:hover,
footer .on a {
	margin-bottom: -1px;
	border-bottom: dashed 1px #7c673b;
	color: #038011;
}


/*---------------------

	FORM

*/

footer form fieldset {
	height: 135px;
	padding: 25px 30px;
	background: url(/assets/bella/images/template/footer_form_bg.gif) 0 0 no-repeat;
}

footer form input {
    width: 180px;
}

/*---------------------

	SHARE LINKS

*/

footer .share {
	display: block;
	width: 176px;
	height: 30px;
	padding: 10px 0 0 50px;
	margin-bottom: 20px;
	border-radius: 6px;
	box-shadow: 2px 2px 2px rgba(140,130,90,.4);
	transition: all .2s ease-in-out;
	background: url(/assets/bella/images/template/share.gif);
}

footer #facebook_link {
	margin-left: 20px;
	transform: rotate(-2deg);
	
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
}

footer #twitter_link {
	margin-left: 40px;
	transform: rotate(-1deg);
	background-position: 0 100%;
	
	-moz-transform: rotate(-1deg);
	-webkit-transform: rotate(-1deg);
}

footer #facebook_link:hover,
footer #twitter_link:hover {
	transform: rotate(0deg);
	
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}


/*---------------------

	ENGAGE

*/

#engage {
	display: block;
	position: absolute;
	bottom: 20px; right: 30px;
	width: 110px;
	height: 21px;
	background: url(/assets/bella/images/template/engage.png) 0 0 no-repeat;
	text-indent: -5000px;
}

/*---------------------

	COPYRIGHT

*/

#copyright {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 40px;
	padding: 20px 0 0 10px;
	margin: 0;
	font-size: 13px;
}

/*-------------------------------

	COLUMNS

-------------------------------*/

.column {
	display: inline-block;
	float: left;
	margin: 0 10px;
}

.two {
	width: 140px;
}

.three {
	width: 220px;
}

.four {
	width: 300px;
}

.five {
	width: 380px;
}

.six {
	width: 460px;
}

.seven {
	width: 540px;
}

.eight {
	width: 620px;
}

.nine {
	width: 700px;
}

.full_width {
	width: 940px;
	margin: 0 10px;
}


/*---------------------

	NO MARGIN
	For nesting columns

*/

.wrapper {
	margin-left: 0;
	margin-right: 0;
}

.six.wrapper {
	width: 480px;
}

.eight.wrapper {
	width: 640px;
}

.nine.wrapper {
	width: 720px;
}


/*---------------------

	CLEAR FIX
	Use clearfix class as a last resort

*/

.clearfix:before,
.clearfix:after,
.column:before,
.column:after,
#content:before,
#content:after {
	content: ".";
	display: block;
	height: 0;
	overflow: hidden;
}

.clearfix:after,
.column:after,
#content:after {
	clear: both;
}

.clear {
	clear: both;
}


/*---------------------

	TEXT COLUMNS
	CSS3 Cleverness that applys columns without divs. For simple text only!

*/

.columns {
	column-count: 2;
	column-gap: 20px;

	-moz-column-count: 2;
	-webkit-column-count: 2;
	
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
}


/*-------------------------------

	DECORATIONS

-------------------------------*/

#decorations {
	position: relative;
	z-index: 2;
	min-height: 100%;
	background: url(/assets/bella/images/decorations/clouds.jpg) 50% 100% no-repeat;
	background: url(/assets/bella/images/template/border_left.png) 0 100% repeat-y, url(/assets/bella/images/template/border_right.png) 100% 100% repeat-y, url(/assets/bella/images/decorations/clouds.jpg) 50% 100% no-repeat;
}

@media all and (max-width: 1166px) {

	#decorations {
		background: url(/assets/bella/images/decorations/clouds.jpg) 50% 100% no-repeat;
	}

}

#decorations .decoration {
	position: absolute;
	bottom: 0;
	height: 100%;
}


/*---------------------

	DECORATIONS

*/

#magic_pasta {
	width: 288px;
	height: 168px;
	background: url(/assets/bella/images/decorations/magic_pasta.gif) 0 0 no-repeat;
}

#just_like_mama_makes_it {
	float: left;
	min-width:0;
	margin-left: -50px;
}

#enjoy {
	width: 260px;
	height: 230px;
	margin: 15px;
	background: url(/assets/bella/images/decorations/enjoy.gif) 0 0 no-repeat;
}

#personality {
	width: 260px;
	height: 230px;
	margin: 30px 20px;
	background: url(/assets/bella/images/decorations/personality.gif) 0 0 no-repeat;
}

#con_gusto {
	width: 260px;
	height: 146px;
	margin: 20px;
	background: url(/assets/bella/images/decorations/con_gusto.gif) 0 0 no-repeat;
}

/*-------------------------------

	LOCATION PICKER

-------------------------------*/

#location_picker,
#lp_overlay {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	color: #FFF;
	
	-webkit-transform: translate3d(0,0,0);
}

#lp_title,
#lp_body .lp_title {
	font-smoothing: antialiased;
	
	/* FIX THE THICKNESS */
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

#lp_title {
	display: block;
	padding: 12px 16px 12px;
	font: 38px "Museo", Georgia, Times, "Times New Roman", serif;
	background: #8B262A;
	border-bottom: dashed 1px #a3575b;
	color: #F7EED6;
	text-shadow: 1px 1px 1px #8E1E21;
}

#lp_close {
	display: block;
	position: absolute;
	top: 20px; right: 20px;
	width: 30px;
	height: 30px;
	transition: none;
	background: url(/assets/bella/images/template/location_picker_close.gif) 0 0;
	text-indent: -5000px;
	
	-moz-transition: none;
	-webkit-transition: none;
}

#lp_close:hover {
	background-position: 0 100%;
}

#lp_body .lp_title {
	display: block;
	margin-bottom: 8px;
	font: 24px "Museo", Georgia, Times, "Times New Roman", serif;
}



#lp_intro {
	padding: 10px 16px;
	margin: 0;
	font: 18px/24px Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
	border-bottom: 1px solid #b84146;
	
	/* FIX THE THICKNESS */
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

/* DARK BG */

#lp_intro,
#lp_list .lp_track,
#lp_results ul {
	background: #9e2b30;
	background: rgba(0,0,0,.2);
	text-shadow: none;
}


/*---------------------

	BODY
	
---------------------*/

#lp_body {
	display: none;
	position: absolute;
	left: 50%;
	z-index: 50;
	width: 558px;
	margin-left: -279px;
	box-shadow: 0 0 0 8px rgba(0,0,0,.2);
	background: url(/assets/bella/images/template/red_bg.gif) 50%;
	
	
	-moz-box-shadow: 0 0 0 8px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 0 8px rgba(0,0,0,.2);
}

#lp_body > div {
	float: left;
	padding: 16px;
}


/*---------------------

	WEBKIT ANIMATION
	
*/

.webkit .show #lp_body {
	display: block;
	-webkit-animation: zoom_in .5s cubic-bezier(0,0,.1,1) 0 1 both normal;
}

.webkit .hide #lp_body {
	display: block;
	-webkit-animation: zoom_out .5s cubic-bezier(.9,0,1,1) 0 1 both normal;
}

@-webkit-keyframes zoom_in {
	from {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
	}
}

@-webkit-keyframes zoom_out {
	from {
		opacity: 1;
		-webkit-transform: scale(1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.8);
	}
}


/*---------------------

	LIST
	
*/

#lp_list {
	width: 216px;
	
	-webkit-transform: translate3d(0,0,0);
}

#lp_list div {
	position: relative;
	width: 215px;
	height: 284px;
	overflow: hidden;
	
	-webkit-transform: translate3d(0,0,0);
}

#lp_list div > ul {
	position: absolute;
	top: 0; left: 0;
	width: 190px;
	padding-right: 10px;
}

#lp_list a {
	display: inline-block;
	padding: 8px 0;
	font-size: 14px;
	color: #fdfcf7;
}

#lp_list a:hover {
	color: #fed228;
}

#lp_list .lp_group {
	padding: 0 8px;
	box-shadow: 1px 0 rgba(255,255,255,.1), inset 1px 0 rgba(0,0,0,.05);
	background: #8b262a;
	background: rgba(0,0,0,.1);
}

#lp_list .last {
	padding-bottom: 6px;
	border-radius: 0 0 8px 8px;
	box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 0 rgba(0,0,0,.05);
	
	-moz-border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
	
	-moz-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 0 rgba(0,0,0,.05);
	-webkit-box-shadow: 1px 1px rgba(255,255,255,.1), inset 1px 0 rgba(0,0,0,.05);
}

#lp_list .lp_group_title {
	display: block;
	padding: 10px 0 6px 8px;
	margin-top: 4px;
	border-radius: 8px 8px 0 0;
	box-shadow: 1px 0 rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	background: #8b262a;
	background: rgba(0,0,0,.1);
	font-weight: bold;
	font-size: 14px;
	text-shadow: none;
	
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-radius: 8px 8px 0 0;
	
	-moz-box-shadow: 1px 0 rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
	-webkit-box-shadow: 1px 0 rgba(255,255,255,.1), inset 1px 1px rgba(0,0,0,.05);
}

#lp_list .lp_track,
#lp_list .lp_track span {
	display: block;
	position: absolute;
	top: 0; right: 0;
	z-index: 100;
	width: 8px;
	border-radius: 4px;
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}

#lp_list .lp_track {
	display: none;
	bottom: 0;
	height: 100%;
}

#lp_list .lp_track span {
	min-height: 40px;
	cursor: pointer;
	
	background: -moz-linear-gradient(
		top,
		#fed72a,
		#fcb21c
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fed72a),
		to(#fcb21c)
	);
}

#lp_list .lp_track span:hover {
	background: -moz-linear-gradient(
		top,
		#fcb21c,
		#fed72a
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fcb21c),
		to(#fed72a)
	);
}


/*---------------------

	SEARCH

*/

#lp_search {
	width: 278px;
}

#lp_error .alert {
	margin-bottom: 0;
}

#lp_form {
	margin-bottom: 16px;
}

#lp_form input {
	width: 219px;
}

#lp_form button {
	position: absolute;
	right: 0; bottom: 0;
}

#lp_form label, list, p {
	text-shadow: none;
}

.ie7 #lp_form button {
	bottom: 1px;
}

#lp_results {
	display: none;
}

#lp_results ul {
	padding: 3px 3px 1px;
	border-radius: 8px;
	
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

#lp_results ul li {
	display: block;
	width: 272px;
	margin-bottom: 2px;
}

#lp_results ul li a {
	display: block;
	position: relative;
	padding: 10px 8px;
	border-radius: 6px;
	transition: none;
	font-size: 14px;
	color: #FDFCF7;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	
	-webkit-transition: none;
	-moz-transition: none;
}

#lp_results ul li a:hover {
	box-shadow: inset 0 1px #FFF, 1px 1px 1px rgba(116,8,10,.75);
	text-shadow: 1px 1px #FFF;
	color: #ab2d31;
	
	-moz-box-shadow: inset 0 1px #FFF, 1px 1px 1px rgba(116,8,10,.75);
	-webkit-box-shadow: inset 0 1px #FFF, 1px 1px 1px rgba(116,8,10,.75);
	
	background: -moz-linear-gradient(
		top,
		#fefefc,
		#fbf5e6
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#fefefc),
		to(#fbf5e6)
	);
}

#lp_results ul li a small {
	display: block;
	position: absolute;
	top: 6px; right: 6px;
	padding: 4px;
	border-radius: 4px;
	border: 1px solid #008311;
	background: #00730f;
	font-size: 12px;
	color: #FDFCF7;
	text-shadow: none;
	box-shadow: 0 0 4px 1px rgba(0,0,0, .1);
	
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	
	-moz-box-shadow: 0 0 4px 1px rgba(0,0,0, .1);
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0, .1);
}

#lp_results ul li a:hover small {
	box-shadow: inset 1px 1px rgba(0,0,0,.1), 1px 1px #FFF;
	background: #ab2d31;
	border: 1px solid #af110e;
	color: #FFF;
	text-shadow: 1px 1px rgba(116,8,10,.75);
	
	-moz-box-shadow: inset 1px 1px rgba(0,0,0,.1), 1px 1px #FFF;
	-webkit-box-shadow: inset 1px 1px rgba(0,0,0,.1), 1px 1px #FFF;
}

#lp_loading {
	display: none;
}

.loading #lp_loading {
	display: block;
	position: absolute;
	bottom: 90px; left: 140px;
	z-index: 100;
	width: 50px;
	height: 50px;
	margin: -25px 0 0 -25px;
	border-radius: 25px;
	background: #FFF url(/assets/bella/images/template/loading.gif) 50% 50% no-repeat;
	
	-moz-border-radius: 25px;
	-webkit-border-radius: 25px;
}


/*---------------------

	OVERLAY
	
*/

#lp_overlay {
	display: none;
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: #000;
}


/*-------------------------------

	DROP DOWN MENU

-------------------------------*/

.drop_down_list {
	display: none;
}

.select.active .body {
	padding-bottom: 15px;
	border-bottom: none;
	border-radius: 8px 0 0 0;
	
	-moz-border-radius: 8px 0 0 0;
	-webkit-border-radius: 8px 0 0 0;
}

/*-------------------------------

	LOCATION INFO BANNER

-------------------------------*/

#location_info {
	position: relative;
	padding: 20px;
	margin-bottom: 15px;
	background: url(/assets/bella/images/locations/location_info_bg.gif) 0 2px no-repeat;
}

#location_info form {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 290px;
}

#location_info p {
	padding-left: 25px;
	margin-top: 5px;
	margin-left: 10px;
	font-size: 19px;
	color: #5b1500;
	background: url(/assets/bella/images/icons/cream_pin.png) 0 2px no-repeat;
	text-shadow: 1px 1px #e8dfcb;
}

/*-------------------------------

	CONTACT DETAILS

-------------------------------*/

.contact_details p,
.contact_details a,
.contact_details address {
	display: block;
	padding-left: 26px;
	margin-bottom: 10px;
	background-repeat: no-repeat;
	font-size: 14px;
	line-height: 22px;
	color: #f7eed6;
	text-shadow: 1px 1px #670d10;
}

.contact_details a {
	background-position: 0 2px;
	color: #f7eed6;
}

.contact_details a:hover {
	color: #fff;
}

.contact_details h4 {
	color: #f7eed6;
	text-shadow: 1px 1px #670d10;
}

.contact_details h4:not(:first-child) {
	padding-top: 10px;
	border-top: dashed 1px #bd6a6d;
	box-shadow: inset 0 1px #882428;
	
	-moz-box-shadow: inset 0 1px #882428;
	-webkit-box-shadow: inset 0 1px #882428;
}


/* ADDRESS */

.contact_details address {
	background: url(/assets/bella/images/icons/cream_address.png) 0 4px no-repeat;
}

.contact_details .phone {
	background-image: url(/assets/bella/images/icons/cream_phone.png);
}

.contact_details .fax {
	background-image: url(/assets/bella/images/icons/cream_fax.png);
}

.contact_details .clock {
	background: url(/assets/bella/images/icons/cream_clock.png) 0 2px no-repeat;
}

.contact_details .google {
	background-image: url(/assets/bella/images/icons/cream_pin.png);
}

.contact_details .arrow {
	background-image: url(/assets/bella/images/icons/cream_arrow.png);
}



/*---------------------

	LIST

*/

.drop_down_list {
	position: absolute;
	z-index: 1000;
	border-radius: 0 0 8px 8px;
	box-shadow: 1px 1px 2px rgba(0,0,0,.1);
	
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,.1);
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.1);
	
	-moz-border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
}

.drop_down_list .dd_root {
	overflow: auto;
	padding: 1px 1px 1px 0;
	border-left: solid 1px #FFF;
	background: #fbf7e9;
	text-shadow: 1px 1px #FFF;
}

.drop_down_list li span { /* The optgroup title, e.g. London */
	display: block;
	padding: 8px 8px 10px;
	margin: 0 2px;
	border-radius: 6px 6px 0 0;
	background: #cec0a2;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-shadow: 1px 1px rgba(0,0,0,.2);
	
	-moz-border-radius: 6px 6px 0 0;
	-webkit-border-radius: 6px 6px 0 0;
}

.drop_down_list .dd_root ul { /* The optgroup style */
	margin: 0 2px;
	padding: 2px;
	border: solid 1px #F0E3DF;
	border-top: none;
	border-radius: 0 0 6px 6px;
	background:#cec0a2;
	background:rgba(206,192,162,0.3);
	
	-moz-border-radius: 0 0 6px 6px
	-webkit-border-radius: 0 0 6px 6px
}

.drop_down_list li {
	margin: 2px;
}

.drop_down_list li a {
	display: block;
	padding: 8px;
	border-radius: 6px;
	transition: none;
	color: #8b8576;
	font-size: 14px;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	
	-moz-transition: none;
	-webkit-transition: none;
}

.drop_down_list li a:hover {
	background: #ab2d31;
	color: #FFF;
	text-shadow: 1px 1px rgba(0,0,0,.2);
}

.drop_down_list .dd_root ul li a { /* The optgroup style */
	border-radius: 3px;
	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.drop_down_list a.search {
	display: block;
	padding: 8px;
	border-radius: 0 0 8px 8px;
	box-shadow: none;
	
	-moz-border-radius: 0 0 8px 8px;
	-webkit-border-radius: 0 0 8px 8px;
	
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.drop_down_list a.search span {
	position: relative;
	padding-left: 30px;
	border-radius: 0 0 6px 6px;
	background: #cc995b url(/assets/bella/images/icons/gold_pin.png) 10px 9px no-repeat;

	background: -moz-linear-gradient(
		top,
		#d9a76a,
		#bc894a
	);
	background: -webkit-gradient(
		linear,
		center top,
		center bottom,
		from(#d9a76a),
		to(#bc894a)
	);
	
	-moz-border-radius: 0 0 6px 6px;
	-webkit-border-radius: 0 0 6px 6px;
}

.drop_down_list a.search span:after {
	content: ' ';
	display: block;
	position: absolute;
	top: 9px; left: 9px;
	width: 12px;
	height: 16px;
	background: url(/assets/bella/images/icons/gold_pin.png);
}

/*---------------------

	TICK LIST

*/

.list li {
	margin-bottom: 4px;
}

.tick li {
	padding-left: 26px;
	background: url(/assets/bella/images/icons/red_tick.png) 0 3px no-repeat;
}
