<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-------------------------------------------
Project: Resonate Widgets {Orcutt}
Style: style.css
Author: Kevin Mooney Jr
Company: Duarte Design, Inc.
Version: 1.0
-------------------------------------------- -*/

/*-------------------------------------------
HTML ELEMENTS
---------------------------------------------*/

body,
html {
	background: #ffffff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* PARAGRAPHS */


/* HEADERS */



/*-------------------------------------------
NAVIGATION
---------------------------------------------*/

/* LINKS */


/* IMAGES */
img {
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/*-------------------------------------------
LAYOUT
---------------------------------------------*/

/* PAGE */
.wrapper{
	width: 1024px;
	height: 768px;
	overflow: hidden;
}

#container {
	
}

#callouts {
	width: 1024px;
	height: 768px;
	background: url('../img/callouts.png') no-repeat left top;
	z-index: 999;
	position: absolute;
}

#orcutts {
	position: absolute;
	width: 1024px;
	height: 768px;
	top: 0px;
	left: 0px;
}

#orcutts .item {
	display: none;
	position: absolute;
}

/*-------------------------------------------
SLIDER
---------------------------------------------*/

#slider {
	z-index: 9999;
	width: 800px;
	margin: 0 auto;
	position: relative;
	top: 50px;
}

.ui-slider {
	position: relative;
	text-align: left;
}

.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.ui-slider-horizontal {
	height: 10px;
}

.ui-slider-horizontal .ui-slider-handle {
	top: -16px;
	margin-left: -16px;
}

.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-widget-content {
	border: 1px solid #cccccc;
	background: #ffffff url(../img/ticks.png) no-repeat left top;
	-webkit-border-radius: 10px;
	-webkit-box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.3) !important;
}

.ui-state-default,
.ui-widget-content
.ui-state-default,
.ui-widget-header
.ui-state-default {
	border: 1px solid #cccccc;
	-webkit-border-radius: 20px;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#cccccc));
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2), inset 0px 1px 1px 0px rgba(255,255,255,0.5) !important;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#cccccc));
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2), inset 0px 1px 1px 0px rgba(255,255,255,0.5) !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#157eba), to(#0E6090));
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.2), inset 0px 1px 1px 0px rgba(255,255,255,0.5) !important;
}

.ui-widget :active {
	outline: none;
}

/*-------------------------------------------
ANIMATIONS
---------------------------------------------*/

.hidden {
	opacity: 0;
}


/* FADES */
.fadein {
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: fadein;
	opacity: 1;
}

.fadeout {
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: fadeout;
	opacity: 0;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-animation-timing-function: linear;
  }
  
  to {
    opacity: 1;
    -webkit-animation-timing-function: linear;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
    -webkit-animation-timing-function: linear;
  }
  
  to {
    opacity: 0;
    -webkit-animation-timing-function: linear;
  }
}

/*-------------------------------------------
RESET
---------------------------------------------*/

html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,button,caption,cite,code,dfn,em,input,optgroup,option,select,strong,textarea,th,var{font:inherit}del,ins{text-decoration:none}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:baseline}sub{vertical-align:baseline}legend{color:#000}body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small}select,input,textarea,button{font:99% arial,helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}


/*-------------------------------------------
CLEAR
---------------------------------------------*/

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}</pre></body></html>