/*FLOAT ALL MAIN ELEMENTS*/
#dawgdrops, .uw-hero-image, .uw-body, .footer, .uw-footer {
    float: left;
    position: relative;
    width: 100%;
}

a {
  color: #85754d;
}

#main_content .region-content p a,
#main_content .region-content tr td a{
	display: inline-block;
	border-bottom: 1px dotted #a39369;
	}
	
#main_content .region-content p a:hover,
#main_content .region-content tr td a:hover{
	border-bottom: 1px solid #a39369;
	}

p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 15px;
}
.lead {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
.uw-body ul li, .panel-title {
  font-size: 15px;
}
.uw-body a:focus, .uw-body a:hover {
  border-bottom: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Open Sans", Arial, sans-serif;
  margin-bottom: 5px;
  padding: 0 0 0 0;
}
h1, .h1 {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 25px;
}
h2, .h2 {
    font-size: 24px;
    line-height: 32px;
}
h3, .h3 {
    font-size: 18px;
    line-height: 22px;
    text-transform: uppercase;
}
h4, .h4 {
    font-size: 18px;
    line-height: 22px;
}
h5, .h5 {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}
h6, .h6 {
    font-size: 15px;
    line-height: 18px;
}

.uw-body-copy ol {
    /* disable default counter */
    list-style: none;

    /* create a new counter, call it my-counter (or whatever you like) */
    counter-reset: my-counter;
    margin: 20px 20px 20px 0px;
    padding-left: 20px;
}
.uw-body-copy ol li{
    /* positioning li relative will allow us to absolutely position children of li relative to li
     * (the origin of x and y axis of li's absolutely positioned children will become top left corner of li,
     * instead of top left corner of the window)
     */
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
    font-size: 15px;
}
.uw-body-copy ol li:before{
    /* content property with :before pseudo selector will prepend a child element in li.
     * Value of content will be set as text within the child element.
     * Let's use this element to create circle on the left side of a list item.
     */
    content:"";
    width: 0px;
    height: 0px;
    border: 14px solid #85754d;
    border-radius: 20px;
    position: absolute;
    /* using left and top to adjust absolute position of circle relative to li
     */
    left: -20px;
    top: -1px;
    /*z-index:-1;*/
}
.uw-body-copy ol li:after {
    /* content property with :after pseudo selector will append a child to li
     * Let's use content of :after psuedo selector to display our counter number within the circle.
     * Value of content here signifies that we are using my-counter as content of newly appended child,
     * and this counter is a decimal number.
     */
    content: counter(my-counter, decimal);
    /* if you don't use counter-increment, value of my-counter will always stay 0.
     */
    counter-increment: my-counter;
    position: absolute;
    /* using left and top to adjust absolute position of number relative to li
     */
    left: -10px;
    top: -1px;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
}

/*SUB-PAGE HEADER STYLES*/
.uw-body .uw-site-title {
  font-family: "Encode Sans Compressed", Arial, sans-serif;
  font-size: 60px;
  font-weight: 600;
}

.uw-body h2 {
  font-family: "Open Sans", Arial, sans-serif;
}

.uw-body h1 {
  font-size: 26px;
  line-height: 35px;
}

.uw-hero-image {
    height: 208px;
    background-color: #4b2e84;
    background-image: none;
}
.uw-hero-image::after, .no-uw-hero-image::after {
  height: 100%;
  background-image: url('assets/images/swirl-pattern.png');
}
.front .uw-hero-image::after {
  background-image: none;
  height: auto;
}

body.front .highlighted.jumbotron{
	border-left: 3px solid red;
	border-right: 3px solid red;
	border-bottom: 3px solid red;
	}
	
body.front .highlighted.jumbotron p,
body.front .highlighted.jumbotron ul li{
	line-height: 1.2em;
	font-size: 16px;
	font-weight: normal;
	}

/*SUB-PAGE BODY STYLES*/
.uw-breadcrumbs {
  margin: 5px 0 0 0;
  padding: 10px 0 0 0;
}

.uw-breadcrumbs a, .uw-breadcrumbs span {
  font-size: 14px;
}

.page-header {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 36px;
  line-height: 43px;
  font-weight: 600;
  padding-bottom: 0;
}

/*accordions*/
.panel-group .panel {
  border-radius: 0;
  border-color: transparent;
  box-shadow: none;
}
.panel-default > .panel-heading {
  background-color: #b7a57a;
  /*background-color: #85754d;*/
  color: #ffffff;
  border-radius: 0;
}
.panel-default > .panel-heading a:after {
  font-family: "Glyphicons Halflings";
  content: "\2b";
  float: right;
  font-size: 20px;
}
.panel-default.active > .panel-heading {
  background-color: #85754d;
  color: #ffffff;
}
.panel-default.active > .panel-heading a:after {
  font-family: "Glyphicons Halflings";
  content: "\2212";
  float: right;
  font-size: 20px;
}
.panel-default > .panel-heading a:hover, .panel-default > .panel-heading a:active, .panel-default > .panel-heading a:focus {
  color: #ffffff;
}


/*SUB-PAGE SIDEBAR MENU STYLES*/
.region-sidebar-first #block-menu-block-3 {
  display: none;
}
.region-sidebar-first .block ul {
    margin: 0;
    padding: 0;
}

.region-sidebar-first .block ul li {
    background-color: #eee;
    border-bottom: 1px solid #fff;
    position: relative;
}

.region-sidebar-first .block ul li .toggle {
    position: absolute;
    right: 0;
    height: 35px;
    width: 50px;
    text-align: center;
    color: #bebebe;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.region-sidebar-first .block ul li .toggle:hover {
    cursor: pointer;
}

.region-sidebar-first .block ul li.active .toggle {
  color: #ffffff;
}

.region-sidebar-first .block ul li.active a:hover {
  background-color: #bebebe;
}
.region-sidebar-first .block ul li.active ul li a:hover {
  background-color: #ffffff;
}

.region-sidebar-first .block ul li a {
    border-left: medium none;
    color: #000000; /*color: #5a5a5a;*/
    padding: 10px 30px;
    display: block;
    font-size: 15px;
}

.region-sidebar-first .block ul li a:hover {
    border-bottom: none;
    background-color: #ddd;
}

.region-sidebar-first .block ul li ul li {
    background-color: #fff;
}

.region-sidebar-first .block ul li ul li a {
    padding: 5px 0 5px 30px;
    font-size: 15px;
    color: #939598;
}

.region-sidebar-first .block ul li ul li a:hover {
  color: #000000;
}

.region-sidebar-first .block ul li ul li.active a {
  background-color: #ffffff;
  color: #000000;
}

.region-sidebar-first .block ul li ul li ul li a {
    padding-left: 60px;
    font-size: 13px;
}

/*.region-sidebar-first .block ul li ul li a::before {
    content: "- ";
}

.region-sidebar-first .block ul li ul li ul li a::before {
    content: "- - ";
}*/

.region-sidebar-first .block ul li ul li a:hover {
    background-color: #fff;
}

.region-sidebar-first .block h2 {
    background-color: #4b2e83;
    margin-bottom: 0;
    height: 55px;
}

.region-sidebar-first .block h2 a {
    display: block;
    color: #fff;
    padding: 12px 30px;
    font-size: 15px;
    transition: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.region-sidebar-first #block-views-sidebar-images-block {
  padding-top: 50px;
}


/*MORE SIDEBAR CLEANUP*/
#block-views-exp-fin-page-1 #result .views-row-odd {
  background-color: #f5f5f5;
}

#views-exposed-form-fin-page-1 .btn {
  padding: 5px 12px 4px 12px;
}

.widget {
  padding: 0 0 0 0;
}

.views-widget-filter-title {
  width: 84%;
}

.view-id-box_numbers .views-widget-filter-title,
.view-id-box_numbers .views-widget-filter-field_box_number_value {
	width: 45%;
	}

.view-id-box_numbers .views-submit-button {
	width: 0;
	}

.views-submit-button {
  width: 15%;
}

#block-menu-menu-staff h2, #block-menu-menu-generic-page-menu h2 {
    background-color: #4b2e83;
    margin-bottom: 0;
    height: 55px;
    display: block;
    color: #fff;
    padding: 12px 30px;
    font-size: 15px;
    transition: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.region-sidebar-first .block h2 a:hover {
    border-bottom: none;
    color: #b7a57a;
}

.region-sidebar-first .block a.active {
    /*border-left: 10px solid #b7a57a; */
}

.region-sidebar-first .block h2 a.active {
    background-color: #4b2e83;
}

.region-sidebar-first .block a.active {
    background-color: #bebebe;
}

.region-sidebar-first .block ul a.active {
    background-color: #bebebe;
}

.uw-sidebar {
    padding-top: 15px;
}
.uw-sidebar .region {
  padding-top: 0;
}

.uw-sidebar .region:not(:last-child) {
  padding-bottom: 10px;
}

#block-block-9 {
  background-image: url('assets/images/c2-bubble.png');
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0 center;
  height: 156px;
  margin-top: 20px;
}
#block-block-9 h3 {
  margin-left: 10px;
  margin-top: 40px;
}
#block-block-9 h3 a {
  color: #ffffff;
}
#block-block-9:hover a {
  color: #000000;
}

/*starter documents block*/
#block-block-24 {
  margin-top: 50px;
  margin-bottom: 50px;
}
#block-block-24 .block-title {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  background-color: #85754d;
  color: #ffffff;
  padding: 5px 15px;
  margin-bottom: 15px;
}
#block-block-24 .col-sm-4 {
  height: auto;
  border-bottom: 1px dotted #85754d;
  padding-bottom: 15px;
  padding-top: 15px;
}
#block-block-24 h3 {
  color: #4b2e83;
  margin-top: 0;
}
#block-block-24 a {
  color: #4b2e83;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}
#block-block-24 .starter-icon {
  background-repeat: no-repeat;
  background-position: left center;
  height: 72px;
  width: auto;
}
#block-block-24 .si-1 {
  background-image: url('assets/images/web-design-process-icon.png');
}
#block-block-24 .si-2 {
  background-image: url('assets/images/web-scope-icon.png');
}
#block-block-24 .si-3 {
  background-image: url('assets/images/web-services-icon.png');
}
#block-block-24 .si-4 {
  background-image: url('assets/images/web-samples-icon.png');
}
#block-block-24 .si-5 {
  background-image: url('assets/images/design-scope-icon.png');
}
#block-block-24 .si-6 {
  background-image: url('assets/images/download-all-icon.png');
}

a.block-link {
  width: 200px;
  display: block;
}
.form-control {
  font-size: 15px;
}

/*HOMEPAGE STYLES - SLIDER, NAVIGATION, TILES, FOOTER*/

/*slider/carousel*/
#block-views-homepage-features-block .carousel-inner > .item {
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
}

.front .uw-hero-image {
    height: 100%;
    background: none;
    padding: 0;
    display: block;
}

.front .uw-hero-image h1 {
  font-family: "Encode Sans Compressed", sans-serif;
    font-size: 22px;
    color: #fff;
    text-shadow: none;
    text-transform: none;
    font-weight: 700;
    margin-bottom: 10px;
}
.front .uw-hero-image .slide0 h1 span.highlight1 {
  color: #4b2e83;
}
.front .uw-hero-image .slide0 h1 span.highlight2 {
  color: #ffffff;
}
.front .uw-hero-image .slide1 h1 span.highlight1 {
  color: #4b2e83;
}
.front .uw-hero-image .slide1 h1 span.highlight2 {
  color: #4b2e83;
}
.front .uw-hero-image .slide3 h1 span.highlight1 {
  color: #ffffff;
}
.front .uw-hero-image .slide3 h1 span.highlight2 {
  color: #4b2e83;
}
.front .uw-hero-image .slide4 h1 span.highlight1 {
  color: #ffffff;
}
.front .uw-hero-image .slide4 h1 span.highlight2 {
  color: #ffffff;
  margin-right: 10px;
  margin-right: 200px;
}
.front .uw-hero-image .slide4 h1 {
  color: #4b2e83;
}
.front .uw-hero-image .slide5 h1 span.highlight1 {
  color: #4b2e83;
}
.front .uw-hero-image .slide5 h1 span.highlight2 {
  color: #ffffff;
}
.front .uw-hero-image .slide6 h1 span.highlight3 {
  color: #4b2e83;
}

.front .uw-hero-image p {
    font-size: 13px;
    line-height: 20px;
    color: #000;
    text-shadow: none;
}
.front .uw-hero-image a.more-link {
  color: white;
  text-shadow: none;
  font-size: 11px;
  display: block;
}

.image-half {
  height: 200px;
  width: 100%;
  float: right;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 90% auto;
  z-index: 1;
  position: absolute;
  right: 0;
  background-color: #444444;
}

body.front .carousel-caption {
    left: 0;
    bottom: 0;
    padding-top: 35px;
    text-align: center;
    z-index: 0;
    width: 100%;
    height: 63%;
    position: absolute;
}

body.front .carousel-caption h1, 
body.front .carousel-caption h2, 
body.front .carousel-caption p {
  width: 100%;
}

body.front .carousel-inner .item {
  background-color: #b7a57a;
}

.slide2 .image-half {
  background-position: center center;
}

.slide4 .image-half {
  background-size: cover;
}

body.front .carousel-control {
  z-index: 2;
  opacity: 1.0;
  text-shadow: none;
  display: none;
}

body.front .carousel-control.left, 
body.front .carousel-control.right {
  background-image: none;
}

body.front .carousel-control .icon-next, 
body.front .carousel-control .glyphicon-chevron-right {
    right: 15%;
    font-size: 50px;
}

body.front .carousel-control .icon-prev, 
body.front .carousel-control .glyphicon-chevron-left {
    left: 15%;
    font-size: 50px;
}

body.front .carousel-indicators {
  z-index: 2;
  margin-left: 0;
  text-align: center;
  bottom: 5px;
  margin-bottom: 0;
  width: 97%;
}

/*navigation*/
#dawgdrops #block-system-main-menu {
  float: left;
  position: relative;
  width: auto;
}

.admin-menu .dawgdrops-menu {
    top: 44px;
	}


#mobile-nav {
  box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
}

nav#mobile-relative {
  margin-left: -15px;
  margin-right: -15px;
}

nav#mobile-relative button.uw-mobile-menu-toggle {
  margin-top: -35px;
}

nav#mobile-relative .navbar-nav .dawgdrops-item .dawgdrops-item-menu-link {
  background-position: 27px 35px;
}

#mobile-relative #logo-font {
  width: 70%;
  margin: 10px;
}

#mobile-relative #logo-font a:hover {
  border-bottom: 0;
}


/*tiles (hover state on larger device only see 768.css file)*/
.front .thumb {
  margin-top: 30px;
}

.tile-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.tile-wrap:hover{
	cursor: pointer;
	}

.tile-wrap h3 {
  font-size: 0.8em;
  line-height: 1.4em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 10px;
  display: none;
}

.tile-info {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  /*top: 250px;*/
  top: 0;
  left: 0;
  background-color: #b7a57a;
  padding: 10px 20px;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: 0.25s;
  -moz-transition: 0.25s;
  transition: 0.25s;
}

.tile-info p {
  font-size: 14px;
  line-height: 21px;
  color: white;
}
.tile-info h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
  color: #4b2e84;
  text-transform: uppercase;
}
.tile-info a.more-link {
  color: #4b2e84;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
}
.tile-info a.more-link:hover {
  /*border-bottom: 1px solid #4b2e84;*/
  color: #85754d;
}

.uw-body {
  padding: 0;
}

.uw-body .uw-site-title {
  display: none;
}

/*landing page tiles*/
#block-views-landing-page-tiles-block {
  margin: 20px 0;
}


/*footer services toggle*/
#services-toggle {
  display: none;
  height: 75px;
  padding: 12px 0;
  float: left;
  position: relative;
  width: 100%;
  background-color: #98989A;
  margin-top: 20px;
}
#services-toggle .uw-btn::before {
  background-color: transparent;
  border-left: none;
}
#services-toggle .uw-btn {
  background-color: transparent;
  color: #000;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
  letter-spacing: 1px;
  padding-right: 0;
  font-size: 18px;
}
#services-toggle .uw-btn:hover {
  color: #ffffff; /*#5a5a5a*/
  text-decoration: none;
}
#services-toggle .uw-btn::after {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-top: -29px;
}
#our-services {
  float: left;
  position: relative;
  width: 100%;
  height: 360px;
  background-color: #4b2e84;
  display: none;
  padding: 50px 0 20px 0;
}
#our-services p {
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  margin-bottom: 7px;
}
#our-services strong p {
  font-weight: 800;
  margin-bottom: 15px;
}
.uw-btn {
    text-shadow: none;
}
.block-title {
    font-size: 25px;
}

#block-block-5, #block-views-homepage-tiles-block {
    padding-top: 10px;
    margin-bottom: 20px;
}

.front #block-block-1, .front #block-block-2, .front #block-block-3, .front #block-block-4 {
    height: 350px;
    position: relative;
}

.front .block-block p a.uw-btn {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
}


/*footer*/
.uw-footer {
  border-top: 0;
  background-color: #444444;
  background: url('assets/images/black-white-suz.jpg') center center;
  background-repeat: no-repeat;
}

#block-block-11 {
  background-color: #4b2e83;
  padding-top: 30px;
  padding-bottom: 20px;
  text-align: center;
}

.front .footer {
  margin-top: 0;
}

.footer {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.footer p {
    color: #fff;
    font-size: 13px;
}

.footer p:last-child {
    margin: 0 0 14.5px;
}

.footer a {
    color: #b7a57a;
}

.footer a:hover {
    text-decoration: underline;
}

.footer p.footer-links, .footer small {
  text-transform: uppercase;
}
.footer p.footer-links {
  font-weight: 600;
}


/* Extra UW Styles Pulled from UW - for thin header with search and buttons */
.uw-thinstrip {
  height: 55px;
  width: 100%;
  background: #4b2e83;
  padding-top: 7px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
.uw-thinstrip .container {
  position: relative;
}
.uw-thinstrip .uw-patch {
  display: block;
  text-indent: -9999px;
  width: 81px;
  height: 55px;
  background: url('assets/svg/uw-sprite-mini.svg') no-repeat 0 -3px transparent;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: 1;
}
.uw-thinstrip .uw-patch:hover, .uw-thinstrip .uw-patch:focus {
    background: url('assets/svg/uw-sprite-mini.svg') no-repeat 0 -3px transparent;
}
.uw-thinstrip .uw-wordmark {
  display: block;
  position: absolute;
  top: 11px;
  left: 97px;
  text-indent: -9999px;
  width: 260px;
  height: 24px;
  background: url('assets/svg/uw-sprite-mini.svg') no-repeat 0 -74px transparent;
}
.uw-thinstrip .align-right a.btn {
  padding: 8px 10px;
  display: none;
}
.uw-thinstrip ul.uw-thin-links {
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 700;
  padding: 0;
  float: right;
  list-style: none;
}
.uw-thinstrip ul.uw-thin-links li {
  display: inline-block;
}
.uw-thinstrip ul.uw-thin-links li a {
  font-family: "Encode Sans Compressed", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  float: right;
  padding: 8px 25px 10px 0;
  letter-spacing: .01em;
}
.uw-thinstrip ul.uw-thin-links li a:after {
  position: absolute;
  right: 8px;
  height: 24px;
  width: 12px;
  top: 8px;
  content: "";
  background: url('assets/svg/uw-sprite-mini.svg') no-repeat -696px 0;
}
.uw-thinstrip ul.uw-thin-links li a:hover,
.uw-thinstrip ul.uw-thin-links li a:focus {
  color: #b7a57a;
}
.uw-thinstrip ul.uw-thin-links li:last-child a:after {
  display: none;
}
/*search*/
.uw-thinstrip ul.uw-thin-links li.uw-search button {
  text-indent: -99999px;
  position: relative;
  padding-right: 78px;
  background-color: transparent;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  width: 45px;
  display: block;
  padding: 0;
  height: 43px;
  /*margin: 0 10px 0 -5px;*/
  overflow: hidden;
  -webkit-transform: skew(-15deg,0);
  -ms-transform: skewX(-15deg) skewY(0);
  transform: skew(-15deg,0);
}
.uw-thinstrip ul.uw-thin-links li.uw-search button:hover,
.uw-thinstrip ul.uw-thin-links li.uw-search button:focus {
  background-color: #402770;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.uw-thinstrip ul.uw-thin-links li.uw-search button svg {
  position: absolute;
  top: 12px;
  left: 17px;
  -webkit-transform: skew(15deg,0);
  -ms-transform: skewX(15deg) skewY(0);
  transform: skew(15deg,0);
}
.uw-thinstrip ul.uw-thin-links li button {
  border: none;
}
.search-open .uw-thinstrip ul.uw-thin-links li.uw-search button svg {
  top: -21px;
  left: 8px;
}
.uw-thinstrip ul.uw-thin-links li:last-child a::after, .uw-thinstrip ul.uw-thin-links li:last-child button::after {
  display: none;
}

.uw-thinstrip a.btn.account-bubble {
  background-image: url('assets/images/am_icon.png');
  background-repeat: no-repeat;
  background-position: 100% 75%;
  padding: 8px 40px 8px 0;
  margin-right: 50px;
  color: #ffffff;
}
.uw-thinstrip a.btn.account-bubble:hover {
  color: #85754d;
}
/*
body.page-node-2290 section#body-content.col-sm-12{
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding-right: 50px;
	padding-left: 50px;
	}

body.page-node-2290 section#body-content.col-sm-12 h2.uw-site-title{
	padding-left: 50px;
	}
*/

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {

  .uw-thinstrip {
    padding: 0;
    height: 45px;
  }
  .uw-thinstrip .container {
    position: static;
  }
  .uw-thinstrip .uw-patch {
    width: 73px;
    height: 39px;
    top: 6px;
    left: -3px;
    background-size: 630px;
  }
  .uw-thinstrip .uw-wordmark {
    width: 200px;
    height: 30px;
    background: url('assets/svg/uw-sprite-mini.svg') no-repeat 0 -59px rgba(0, 0, 0, 0);
    margin: 0;
    float: none;
    position: absolute;
    left: 63px;
    top: 15px;
    background-size: 697px;
  }
  .uw-thinstrip ul.uw-thin-links {
    height: 45px;
  }
  .uw-thinstrip ul.uw-thin-links li {
    float: none;
  }
  .uw-thinstrip ul.uw-thin-links li.uw-search button {
    top: 0px;
    right: -7px;
    height: 47px;
    /*width: 65px;*/
    margin-right: 0;
    border: none;
    overflow: hidden;
  }
  .uw-thinstrip ul.uw-thin-links li.uw-search button:hover {
    background-color: transparent;
    border: none;
  }
  .uw-thinstrip ul.uw-thin-links li.uw-search button svg {
    top: 14px;
    left: 29px;
  }
  .uw-thinstrip ul.uw-thin-links li.uw-search button:before {
    position: absolute;
    top: 1px;
    right: 6px;
    content: "";
    width: 51px;
    height: 45px;
    display: block;
  }
  .search-open .uw-thinstrip ul.uw-thin-links li.uw-search button svg {
    top: -18px;
    left: 18px;
  }


}
@media only screen and (max-width: 767px) {
  .uw-thinstrip ul.uw-thin-links li {
    display: none;
  }
  .uw-thinstrip ul.uw-thin-links li.uw-search {
    display: block;
  }

}

.uw-search-bar-container form {
  width: 100%;
}

a.uw-btn::before {
    background-color: #4b2e83;
    border-left: 5px solid rgba(0, 0, 0, 0.3);
    bottom: 0;
    content: "";
    position: absolute;
    right: -55px;
    top: 0;
    width: 55px;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

a.uw-btn::after {
    background: transparent url("assets/svg/uw-sprite.svg") no-repeat scroll -36px -475px;
    bottom: 0;
    content: "";
    height: 55px;
    margin-top: -28px;
    position: absolute;
    right: -55px;
    top: 50%;
    width: 55px;
    -webkit-transition: all 0.25s ease 0s;
    -moz-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
}

a.uw-btn {
    background-color: #e8e3d3;
    background-image: none !important;
    border-bottom: medium none;
    color: #5a5a5a;
    display: inline-block;
    font-family: "Encode Sans Compressed",sans-serif;
    font-weight: 800;
    line-height: 24px;
    margin-bottom: 25px;
    margin-right: 55px;
    padding: 13px 24px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
}

a.uw-btn:hover, a.uw-btn:focus {
    background-color: #f5f5f5;
    color: #85754d;
}

a.uw-btn:hover::before, a.uw-btn:focus::before {
    background-color: #613ba9;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: .35s;
       -o-transition-duration: .35s;
          transition-duration: .35s;
  -webkit-transition-property: height, visibility;
       -o-transition-property: height, visibility;
          transition-property: height, visibility;
}

.table tbody tr th {
  border-top: 0;
}

.table-striped > tbody > tr:nth-child(2n+1) {
  background-color: transparent;
}

.table-striped > tbody > tr:nth-child(2n) {
  background-color: #f9f9f9;
}


.checkbox input, .radio input {
  display: inline;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  position: relative;
}

.radio label, .checkbox label {
  padding-left: 0;
}



/*MISC CLEANUP FOR MAIN BODY PAGES*/
.view-staff-lists .views-row {
  margin-bottom: 50px;
  height: 160px;
}

.view-staff-lists .views-field-field-firstname, .view-staff-lists .views-field-field-lastname {
  font-size: 20px;
  color: #4b2e83;
}

.view-staff-lists .view-content {
  margin-left: -15px;
  margin-right: -15px;
}

.views-exposed-form {
  margin-bottom: 2.0em;
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 0;
}

.form-email {
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #595959;
    display: block;
    font-size: 17px;
    height: 41px;
    line-height: 1.72222;
    padding: 6px 12px;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}

.form-email:focus {
    border-color: #4b2e83;
    box-shadow: none;
    outline: 0 none;
}

div.node-webform .webform-component div.description{
	font-size: .8em;
	line-height: 1.2em;
	}

#webform-component-requested-start-date .form-type-select{
	width: 30%;
	float: left;
	margin-right: 2%;
	}
	
#webform-component-requested-start-date .form-item-submitted-requested-start-date-year{
	clear: right;
	}

#webform-component-requested-start-date input.hasDatepicker{
	clear: both;
	width: 35px;
	height: 35px;
	}
	
div.webform-component--uw-medicine-entity{
	clear: both;
	width: 100%;
	margin-top: 35px;
	}


/*STYLES FOR NEW PORTFOLIO PAGE - PROBABLY WON'T KEEP AND MAKE NEW PORTFOLIO IN WORDPRESS*/
.view-new-portfolio .views-row {
  height: 170px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 20px;
}

.view-new-portfolio .views-row:hover {
  cursor: pointer;
}

#portfolio-slideshow .carousel-indicators {
    margin: 10px 0 0;
    overflow: auto;
    position: static;
    text-align: center;

}

#portfolio-slideshow .carousel-indicators li {
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
    display: inline-block;
    height: auto;
    margin: 0 !important;
    width: auto;
}
#portfolio-slideshow .carousel-indicators li img {
    display: block;
    opacity: 0.5;
    width: 100px;
    height: 50px;
}
#portfolio-slideshow .carousel-indicators li.active img {
    opacity: 1;
}
#portfolio-slideshow .carousel-indicators li:hover img {
    opacity: 0.75;
}
#portfolio-slideshow .carousel-outer {
    position: relative;
}


/* ACCOUNT MANAGER SEARCH and BLOCK */

.view-account-manager-depts-listing-ac .item-list ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-bottom:  1px solid #ccc;
	margin-bottom: 30px;
	}
	
.view-account-manager-depts-listing-ac .item-list ul li.views-row{
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-left:  1px solid #ccc;
	padding: 5px 8px;
	list-style-type: none;
	}
	
.view-account-manager-depts-listing-ac .item-list ul li.views-row-odd{
	background-color: #efefef;
	}
	
.view-account-manager-depts-listing-ac .views-field-title span.field-content{
	font-weight: bold;
	}
	
#block-views-exp-fin-page-1 .views-row{
	line-height: 1.3em;
	font-size: .9em;
	padding: 7px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	}
	
#block-views-exp-fin-page-1 .views-row .views-field-title{
	font-weight: bold;
	}

#block-views-exp-fin-page-1 div.result{
	border-bottom: 1px solid #ccc;
	}

.uw-thinstrip div.social-links{
	display: inline-block;
	margin-right: 15px;
	}

.uw-thinstrip div.social-links a{
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-left: 15px;
	margin-right: 15px;
	}

.uw-thinstrip div.social-links a img{
	width: 25px;
	height: 25px;
	border: none;
	}
	
#node-4396{
	font-size: .85em;
	}

#node-4396 p.product{
	font-size: 20px;
	border-top: 1px solid #ccc;
	padding-top: 15px;
	margin-top: 15px;
	}

#node-4396 h2{
	background-color: #4b2e83;
	color: #fff;
	padding: 7px 14px;
	font-size: 22px;
	margin-top: 50px;
	}

div.view-dawgprints-driver-locations table{
	font-size: .85em;
	}
	
body.page-node-8946 .carousel-control{
    width: 10%;
    }
	
@media screen and (min-width: 768px){
	
	body.page-node-8946 .carousel-control .glyphicon-chevron-right, 
	body.page-node-8946 .carousel-control .icon-next {
	    margin-right: -70px;
		}
	
	body.page-node-8946 .carousel-control .glyphicon-chevron-left, 
	body.page-node-8946 .carousel-control .icon-prev {
    		margin-left: -70px;
    		}
    	
    	body.page-node-8946 .carousel-control .glyphicon-chevron-left, 
    	body.page-node-8946 .carousel-control .glyphicon-chevron-right, 
    	body.page-node-8946 .carousel-control .icon-prev, 
    	body.page-node-8946 .carousel-control .icon-next {
		width: 70px;
		height: 70px;
		margin-top: -15px;
		font-size: 70px;
		font-weight: bold;
		color: #fff;
		}
	
	#views-bootstrap-carousel-1 > div > div > div.carousel-caption > div {
		width: 40%;
		margin-right: 55%;
		text-align: left;
		margin-top: -120px;
		}
	
}

@media only screen and (max-width: 1023px) {
	body.front .carousel-caption {
		left: 0;
		bottom: 0;
		padding-top: 35px;
		text-align: center;
		z-index: 0;
		width: 100%;
		height: 63%;
		position: absolute;
		top: 280px;
		}
	
	#views-bootstrap-carousel-1 > div > div > div.carousel-caption > div {
		width: 85%;
		margin-right: auto;
		text-align: left;
		margin-top: auto;
		}
	}
	

@media only screen and (max-width: 767px) {
	body.front .carousel-caption {
		top: 160px;
		}
	}
	

@media only screen and (max-width: 992px) {
	.uw-thinstrip div.social-links{
		display: none;
		}
	
	body.page-node-8946 .carousel-control .glyphicon-chevron-right, 
	body.page-node-8946 .carousel-control .icon-next {
	    margin-right: -30px;
		}
	
	body.page-node-8946 .carousel-control .glyphicon-chevron-left, 
	body.page-node-8946 .carousel-control .icon-prev {
    		margin-left: -30px;
    		}
    	
    	body.page-node-8946 .carousel-control .glyphicon-chevron-left, 
    	body.page-node-8946 .carousel-control .glyphicon-chevron-right, 
    	body.page-node-8946 .carousel-control .icon-prev, 
    	body.page-node-8946 .carousel-control .icon-next {
		width: 40px;
		height: 40px;
		margin-top: -15px;
		font-size: 40px;
		font-weight: bold;
		color: #fff;
		}
    	
	}


/*VERTICAL TABLET STYLES*/
@import url("c2_style-768.css");

/*HORIZONTAL TABLET STYLES*/
@import url("c2_style-1024.css");

/*LARGER MONITOR STYLES*/
@import url("c2_style-1200.css");