1/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0.5em 0!important;
  border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

label.error,
label.notice, 
label.success    { padding: .4em; margin-bottom: 1em; border: 2px solid #ddd; }

label.error      { margin-top: 10px; display: block; background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
label.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
label.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
 .col-xs-12 {
width: 100%!important;
}
body {
background-color: #ffffff;
color: #333;
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif !important;
height: 100%;
min-height: 100%;
font-size:12px;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
color: #1E1B1A;
}
h4 {
color:#429600;
}
.non {
text-decoration: none!important;
}
.header-text {
width: inherit;
margin: auto;
font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
text-transform: uppercase;
font-weight: 100;
color: white;
padding-top: 1em;
overflow: hidden; }
.header-text h1 {
color: white;
text-align: center;
font-weight: 100;
font-size: 30px;
transform: scale(1.3, 1);
-webkit-transform: scale(1.3, 1);
-moz-transform: scale(1.3, 1);
-ms-transform: scale(1.3, 1);
-o-transform: scale(1.3, 1);
margin-top: 25px;
}
.header-text > h1 > span {
color: #88C83C;
}
.header-text h2 {
color: white;
text-align: center;
font-weight: 100;
font-size: 13px;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
transform: scale(1.3, 1);
-webkit-transform: scale(1.3, 1);
-moz-transform: scale(1.3, 1);
-ms-transform: scale(1.3, 1);
-o-transform: scale(1.3, 1);
letter-spacing: 0.18em;
margin-top: 10px
}
.header-text > h2 > span {
}
.clearfix:after {
clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
:focus {
-moz-outline-style: none;
}
a, a:link, a:visited {
color: #429600;
text-decoration: none;
}
a:hover {
color: #7bc143;
}
p {
line-height: 1.5em;
}
blockquote {
border-left: 2px solid #CCC;
color: #666;
margin: 5px 0 20px;
padding: 5px 10px 1px;
font-style: normal;
}
code {
background: #EAEAEA;
color: #333;
font-family: Consolas, Monaco, Courier, monospace;
font-size: 11px;
margin: 1px 0;
padding: 1px 3px;
}
pre code {
background: #322E2C;
border: 1px solid #635957;
color: #FFF;
display: block;
overflow: scroll;
padding: 1.5em 1.75em;
}
input[type=text], input[type=password], textarea {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/form.jpg) repeat-x top #FFF;
border: 1px solid #CCC;
padding: 3px;
}
input[type=submit], #wp-email-submit {
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/postbar.gif) repeat-x;
border: 1px solid #333;
padding: 5px 10px;
font-size: 12px;
color: #FFF;
margin-top: 10px;
}
input[type=submit]:hover, #wp-email-submit:hover {
border: 1px solid #CCC;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x;
color: #333;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #CCC;
}
th, td {
padding: 5px;
border: 1px solid #CCC;
border-width: 1px;
}
th, thead th {
font-weight: bold;
color: #333;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x top #CCC;
}
td, tbody td {
background: #ffffff;
} .aligncenter {
display: block;
margin: 0 auto;
}
.alignright {
float: right;
margin: 0 0 1em 1em;
}
.alignleft {
float: left;
margin: 0 0.9em 1em 0;
}
.floatleft {
float: left;
}
.floatright {
float: right;
}
img.aligncenter, img.alignright, img.alignleft {
border: 3px solid #EEE;
}
.textcenter {
text-align: center;
}
.textright {
text-align: right;
}
.textleft {
text-align: left;
}
.noticebox {
background-color: #fff9d7;
border: 1px solid #e2c822;
color: #333;
margin-bottom: 20px;
padding: 10px;
}
.noticebox a {
color: #000;
}
.sub {
font-size: 11px;
color: #848485;
}
.ui-tabs-hide, .hide {
display: none !important;
}
.wp-caption {
border: 1px solid #DDD;
text-align: center;
background: #F3F3F3;
padding-top: 4px;
margin: 10px
}
.wp-caption img {
margin: 0;
padding: 0;
border: none
}
.wp-caption .wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0
}
.tags a:link, .tags a:visited {
font-weight: bold;
text-decoration: none;
padding: 2px 4px;
background: #FFF;
display: inline-block;
margin-bottom: 3px;
} #wrapper {
min-height: 100%;
position: relative;
max-width: 1035px
}
#main {
padding: 20px;
z-index: 0;
*z-index: -1;
}  #header {
background: #ffffff;
padding: 0 0 15px 0;
background-image: url(https://centercityliving.com/wp-content/uploads/2015/05/header-bg.png);
background-repeat: no-repeat;
background-position: center top;
margin: 0;
}
#branding {
width: 960px;
margin: 0 auto;
}
.logo {
max-width: 590px;
float: left;
margin: 20px 0 0 10px;
}
.blog-name {
font-weight: bold;
font-size: 22px;
margin: 0;
line-height: 1em;
display: block;
text-transform: uppercase;
}
.blog-name a:link, .blog-name a:visited {
color: #FFF;
text-decoration: none;
} .blog-name a:hover {
}
.blog-description {
line-height: 1em;
display: block;
font-size: 11px;
font-weight: bold;
color: #7d716d;
margin: 0;
padding: 5px 0 0;
text-transform: uppercase;
} #nav {
zoom: 1;
max-height: 35px;
max-width: 965px;
margin: auto;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg);
border: solid thin#ccc;
}
#nav-content {
margin: 0 auto;
height: 30px;
width: 610px;
}
.sf-menu {
font-weight: bold;
}
.sf-menu, .sf-menu ul {
float: left;
list-style: none;
line-height: 30px;
padding: 0;
margin: 0;
}
.sf-menu a {
display: block;
text-decoration: none;
padding: 0 15px;
text-transform: uppercase;
color: #666;
font-size: 11px;
transition: color 0.2s ease-in-out;
cursor: pointer;
}
.sf-menu li:hover > a {
color: #88c83c
}
.sf-menu li {
cursor: pointer;
float: left;
padding: 0;
}
.sf-menu ul {
position: absolute;
left: -999em;
height: auto;
width: 150px;
margin: 0;
line-height: 1;
border: none;
}
.sf-menu li li {
width: 148px;
border: solid #CCC;
border-width: 1px 1px 0;
}
.sf-menu li li a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x top #FFF;
padding: 7px 10px;
width: 128px;
font-size: 12px;
text-transform: none;
}
.sf-menu li ul ul {
margin: -27px 0 0 148px;
}
.sf-menu li li:hover {
}
.sf-menu li:hover ul ul, .sf-menu li:hover ul ul ul, .sf-menu li:hover ul ul ul ul, .sf-menu li.sfhover ul ul, .sf-menu li.sfhover ul ul ul, .sf-menu li.sfhover ul ul ul ul {
left: -999em;
}
.sf-menu li:hover ul, .sf-menu li li:hover ul, .sf-menu li li li:hover ul, .sf-menu li li li li:hover ul, .sf-menu li.sfhover ul, .sf-menu li li.sfhover ul, .sf-menu li li li.sfhover ul, .sf-menu li li li li.sfhover ul {
left: auto;
z-index: 2;
}
.sf-menu li ul li:hover a, .sf-menu li ul li li:hover a, .sf-menu li ul li li li:hover a, .sf-menu li ul li li li:hover a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/feed-title.jpg) repeat-x top #004688;
color: #FFF;
}
.sf-menu li:hover li a, .sf-menu li li:hover li a, .sf-menu li li li:hover li a, .sf-menu li li li li:hover li a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x top #FFF;
color: #666;
}
.rss {
float: right;
list-style: none;
margin: 0;
padding: 0 15px;
}
.rss a:link, .rss a:visited {
display: block;
margin: 0 25px 0 0;
color: #666;
font-size: 11px;
font-weight: bold;
text-decoration: none;
padding: 8px 0 0 0;
float: left;
clear: left;
margin: 0;
}
.rss li {
float: left;
display: inline;
text-transform: uppercase;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/rss.png) no-repeat;
background-position: 0 9px;
padding: 0 0 0 18px;
margin: 0 0 0 10px;
} #searchbar {
height: 155px;
float: right;
overflow: hidden;
padding: 10px;
margin: -37px 0 0;
}
#searchform #s {
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;
width: 250px;
float: left;
margin: 1px 5px 0 0;
padding: 4px 3px;
}
#searchform #searchsubmit {
font-family: Tahoma, Arial, Helvetica, sans-serif;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/postbar.gif) repeat-x;
border: 1px solid #333;
padding: 5px 10px;
font-size: 12px;
color: #FFF;
float: left;
} .sidebar {
float: right!important;
width: 32%!important;
}
.sidebar .xoxo {
list-style: none;
padding: 0;
margin: 0;
}
.widgetcontainer ul, .widgetcontent .xoxo, .widgetcontainer ol {
list-style: disc;
margin-left: 0px;
padding: 0;
list-style-position: inside;
font-size: 13px;
}
.widgetcontainer li {
margin-bottom: 0px;
}
.widgetcontainer li a:visited, .widgetcontainer li a:link {
text-decoration: none;
font-weight: bold;
font-size: 12px;
}
.widgetcontainer li a:hover {
border-bottom: 1px dotted #635957;
}
.widgetcontainer input[type=text], .widgetcontainer input[type=password] {
width: 100%;
}
.widgettitle {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
}
.widgettitle a {
color: #333;
}
.widgetcontent {
border: solid #CCC;
border-width: 0 1px 1px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
margin-bottom: 10px;
padding: 10px;
float: left;
width: 100%;
}
#multi-sidebar {
}
#multi-sidebar .tabs {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#multi-sidebar .tabs li {
float: left;
background: #0052A3;
padding: 5px;
margin: 0 3px 5px 0;
border: 1px solid #CCC;
}
#multi-sidebar .tabs a:link, #multi-sidebar .tabs a:visited {
text-decoration: none;
font-weight: bold;
color: #FFF;
}
#multi-sidebar .tabs a:hover {
border-bottom: 1px dotted #FFF;
}
#multi-sidebar .tabs .ui-tabs-selected {
background: #FFF;
}
#multi-sidebar .tabs .ui-tabs-selected a:link, #multi-sidebar .tabs .ui-tabs-selected a:visited {
color: #37322F;
}
#multi-sidebar #s-tags a:link, #multi-sidebar #s-tags a:visited {
font-weight: bold;
text-decoration: none;
padding: 2px 4px;
background: #FFF;
display: inline-block;
margin-bottom: 3px;
}
#multi-sidebar .widgetcontainer {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin-bottom: 10px;
padding: 10px;
}
#multi-sidebar .widgetcontainer ul {
list-style: none;
margin: 0 0 0 5px;
}
#multi-sidebar .widgetcontainer li {
margin-bottom: 10px;
} .featured {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
padding: 10px;
margin: 0 0 10px 0;
}
#controls {
position: relative;
float: left;
z-index: 14;
width: 97.5%;
padding-top: 75px;
margin-left: 8px;
}
#controls .next, #controls .prev {
text-indent: -9000px;
width: 30px;
height: 30px;
display: block;
}
#controls .prev {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/prev.png) no-repeat;
float: left;
}
#controls .next {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/next.png) no-repeat;
float: right;
}
#featured-slideshow {
position: relative;
height: 250px;
margin: auto;
width: 97.2%;
}
.featured-article {
display: block;
width: 100%;
height: 250px;
text-decoration: none !important;
}
.featured-entry {
position: relative; top: -84px;
overflow: hidden;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/overlay.png);
height: 85px;
color: #a7a7a7;
padding: 0;
display: block;
}
.featured-entry .entry-title {
color: #FFF;
padding: 10px 15px 5px;
display: block;
font-size: 16px;
font-weight: bold;
}
.featured-entry .entry-summary {
padding: 0 15px;
margin: 0;
display: block;
}
.layout-3c-r-fixed .featured, .layout-3c-fixed .featured {
height: 225px;
}
.layout-3c-r-fixed #controls, .layout-3c-r-fixed .featured-article, .layout-3c-fixed #controls, .layout-3c-fixed .featured-article {
width: 480px;
}
.layout-3c-r-fixed .featured-article, .layout-3c-fixed .featured-article {
height: 225px;
}
.layout-3c-r-fixed .featured-entry, .layout-3c-fixed .featured-entry {
height: 100px;
top: 125px;
} #bottom-content-1, #bottom-content-2 {
float: left;
width: 320px;
margin: 0 10px 10px 0;
overflow: hidden;
}
#bottom-content-1 .xoxo, #bottom-content-2 .xoxo {
margin: 0;
}
#bottom-content-1 * .xoxo, #bottom-content-2 * .xoxo {
margin-left: 15px;
}
#bottom-content-1 .widgettitle, #bottom-content-2 .widgettitle {
background: #F0F0F0;
}
.layout-3c-r-fixed #bottom-content-1, .layout-3c-r-fixed #bottom-content-2, .layout-3c-fixed #bottom-content-1, .layout-3c-fixed #bottom-content-2 {
width: 243px;
} .posts-default, .posts-quick, .posts-line {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
margin-right: -8px;
}
#content > ul {
display: block;
width: 101.4%;
}
#content > ul > li {
display: block;
width: 32%
}
.hfeed posts-default clearfix {
margin-left: 2px
}
.hfeed posts-default clearfix >li {
}
.posts-default .post {
float: left;
margin: 0 1.3% 1em 0;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
height: 250px;
padding: 10px;
font-size: 11px;
}
.posts-default img {
float: left;
height: auto;
background: #111;
text-indent: -9000px;
width: 150%;
position: relative;
right: 25%;
}
.posts-default .entry-title {
font-weight: bold;
font-size: 12px;
margin: 10px 0 5px;
line-height: 1.3em;
}
.posts-default .entry-title a:link, .posts-default .entry-title a:visited {
text-decoration: none;
}
.posts-default .entry-title a:hover {
}
.posts-default .entry-summary, .posts-quick .entry-summary {
color: #666;
overflow: hidden;
}
.posts-default .entry-thumbnails {
clear: both;
display: inline-block;
overflow: hidden;
width: 100%;
max-height:110px;
}
.posts-quick {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin: 0 10px 10px 0;
padding: 10px;
}
.posts-quick li {
padding: 10px 0;
border-bottom: 1px dotted #EEE;
}
.posts-quick li:last-child {
border: none;
}
.posts-quick img {
float: left;
margin-right: 15px;
border: 1px solid #CCC; background: #111;
text-indent: -9000px;
}
.posts-quick .entry-title {
font-weight: bold;
font-size: 14px;
margin: 0 0 10px;
line-height: 1.3em;
}
.posts-quick .entry-title a:link, .posts-quick .entry-title a:visited {
text-decoration: none;
}
.posts-quick .entry-title a:hover {
}
.posts-quick .entry-summary {
line-height: 1.5em;
}
.posts-quick .quick-read-more {
padding: 5px 0;
}
.posts-quick .entry-thumbnails {
float: left;
}
.posts-default .entry-meta, .posts-quick .entry-meta {
color: #CCC;
float: left;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/overlay.png);
width: 190px;
height: 25px;
display: block;
margin: -25px 0 0;
font-weight: bold;
}
.posts-quick .entry-meta {
margin: 76px 0 0 -206px;
}
.posts-default .entry-meta a:link, .posts-default .entry-meta a:visited, .posts-quick .entry-meta a:link, .posts-quick .entry-meta a:visited {
color: #FFF;
text-decoration: none;
}
.posts-default .entry-comments, .posts-quick .entry-comments {
float: right;
margin: 5px 5px 0;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/comments.gif) no-repeat left center;
padding: 0 0 0 12px;
}
.posts-default .published, .posts-quick .published {
text-transform: uppercase;
float: left;
margin: 5px 5px 0;
font-size: 10px;
color: #999;
border-bottom: none;
}
.posts-line {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin: 0 10px 10px 0;
padding: 10px;
}
.posts-line li {
padding: 7px 0;
border-bottom: 1px solid #EEE;
}
.posts-line .entry-cat {
float: left;
font-size: 11px;
width: 100px;
overflow: hidden;
color: #848485;
}
.posts-line .entry-title {
float: left;
font-size: 12px;
margin: 0;
}
.posts-line .entry-comments {
float: right;
font-size: 11px;
color: #848485;
}
.layout-3c-r-fixed .posts-default .post, .layout-3c-r-fixed .posts-default img, .layout-3c-r-fixed .posts-default .entry-meta {
width: 223px;
}
.layout-3c-fixed .posts-default .post, .layout-3c-fixed .posts-default img, .layout-3c-fixed .posts-default .entry-meta {
width: 223px;
}
.navigation {
margin: 10px 10px 10px 0;
} .single .post, .single-post { border: 1px solid #CCC;
margin: 0 10px 20px 0;
}
.single .post .entry-title, .single-post .entry-title {
font-size: 21px;
font-weight: bold;
padding: 10px 0 0;
margin: 5px 0;
}
.single .post .entry-title a:link, .single .post .entry-title a:visited, .single-post .entry-title a:link, .single-post .entry-title a:visited {
text-decoration: none;
}
.single .post .entry-title a:hover, .single-post .entry-title a:hover {
}
.single .post .entry-info, .single-post .entry-info {
color: #848485;
}
.single .post .entry-cat, .single-post .entry-cat {
display: block;
color: #848485;
margin: 2px 0;
}
.single .post .entry-author, .single-post .entry-author {
font-weight: bold;
margin: 0 10px 0 0;
color: #848485;
}
.single .post .entry-author address, .single-post .entry-author address {
display: inline;
font-style: normal;
}
.single .post .tags, .single-post .tags {
display: block;
margin: 5px 0;
color: #848485;
}
.single .post .entry-photo, .single-post .entry-photo {
width: 100%;
margin: 0 auto 10px;
border: 1px solid #CCC;
}
.single .post .entry-content, .single-post .entry-content {
margin: 10px 0;
font-size: 12px;
}
.single .post .entry-content p, .single-post .entry-content p {
line-height: 1.75em;
}
.single-post {
padding: 0 10px;
border:none;
}
.layout-3c-r-fixed .post .entry-photo, .layout-3c-r-fixed .single-post .entry-photo, .layout-3c-fixed .post .entry-photo, .layout-3c-fixed .single-post .entry-photo {
width: 480px;
}
.postbar {
list-style: none;
margin: 0 0 10px;
padding: 7px 0;
border: 1px solid #CCC;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x top;
font-size: 11px;
}
.postbar li {
float: left;
padding: 0 10px;
border-left: 1px solid #EEE;
}
.postbar li:first-child {
border-left: 0;
}
.postbar li a:link, .postbar li a:visited {
text-decoration: none;
font-weight: bold;
}
.postbar li a:hover {
}
.postbar .WP-PrintIcon, .postbar .WP-EmailIcon {
display: none;
}
.single-post-meta {
padding: 4px;
margin: 0 10px 10px;
background: #F0F0F0;
}
.single-post-meta-field {
clear: left;
float: left;
width: 15%;
font-weight: bold;
color: #000;
background: #F0F0F0;
}
.single-post-meta-value {
float: left;
width: 80%;
color: #333;
background: #F0F0F0;
}
.module-title, .feed-title {
line-height: 1em;
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 7px 10px;
display: block;
}
.feed-title {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
border-bottom: 0;
}
.gallery {
clear: both;
margin: 10px 0;
}
.gallery-item {
float: left;
margin-right: 10px;
}
.about-author {
border: 1px solid #CCC;
padding: 10px 15px;
margin: 0 0 10px;
line-height: 1.5em;
background: #FFF;
font-size: 11px;
}
.about-author h4 {
font-size: 10px;
margin: 0 0 10px;
text-transform: uppercase;
color: #429600;
font-weight: bold;
}
.about-author img {
float: left;
margin: 0 10px 10px 0;
border: 1px solid #CCC;
padding: 0;
} .gdmultitable {
margin: 0 0 10px !important;
}
.gdmultitable td {
padding: 5px !important;
} .wp-pagenavi {
margin: 0 0 10px;
font-size: 12px;
}
.wp-pagenavi a:link, .wp-pagenavi a:visited {
padding: 3px 4px;
margin: 2px;
text-decoration: none;
background: #FFF;
border: 1px solid #CCC;
}
.wp-pagenavi a:hover {
color: #000;
}
.wp-pagenavi span.pages, .wp-pagenavi span.extend {
padding: 3px 4px;
background: #FFF;
margin: 2px;
border: 1px solid #CCC;
}
.wp-pagenavi span.current {
padding: 3px 4px;
background: #FFF;
margin: 2px;
font-weight: bold;
border: 1px solid #CCC;
}
.wp-pagenavi span.pages {
margin-left: 0;
} #wp125adwrap_2c {
width: 270px !important;
display: inline-block;
padding: 8px 0 2px 8px;
margin: 0 auto !important;
}
#wp125adwrap_2c .wp125ad {
padding: 0 !important;
margin: 0 10px 10px 0 !important;
}
#wp125adwrap_2c:after {
clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
html[xmlns] #wp125adwrap_2c {
display: block;
}
* html #wp125adwrap_2c {
height: 1%;
} #wp-email-required {
color: #CC0000;
}
#wp-email {
margin: 10px;
padding: 10px;
background: #F0F0F0;
}
#wp-email-button {
text-align: left !important;
} #commentlist {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
list-style: none;
padding: 10px;
margin: 0 10px 0 0;
}
#commentlist li {
margin: 0;
padding-bottom: 20px;
overflow: hidden;
}
#commentlist .avatar {
border: 1px solid #CCC;
padding: 1px;
float: left;
margin: 0 5px 10px 0;
}
#commentlist cite {
font-weight: bold;
font-style: normal;
line-height: 14px;
}
#commentlist p {
clear: left;
font-size: 12px;
}
#commentlist .reply {
float: right;
}
#commentlist .reply a, .comments-navigation a, .read-more, .navigation a {
color: #FFF;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/feed-title.jpg) top repeat-x;
text-decoration: none;
padding: 5px 8px;
margin-bottom: 3px;
border: 1px solid #CCC;
font-weight: bold;
zoom: 1;
*display: inline;
display: inline-block;
}
#commentlist .reply a:hover, .comments-navigation a:hover, .navigation a:hover, .read-more:hover {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) top repeat-x;
color: #000;
}
#commentlist .children {
clear: right;
margin: 5px 0 0;
list-style: none;
}
#commentlist .children li {
border-bottom: none;
border-left: 1px dotted #CCC;
padding: 0 0 0 20px;
}
#commentlist #respond {
clear: both;
margin-top: 40px;
padding-top: 10px;
border-top: 1px dotted #CCC;
}
#commentlist .comment-author {
padding: 10px 0 0 10px;
}
#commentlist .comment-content {
padding: 0 10px;
}
#commentlist .comment-node {
background: #FFF;
border: 1px solid #EEE;
}
#commentlist .comment-meta {
text-decoration: none;
color: #999;
font-size: 11px;
}
#commentlist .comment-controls {
background: #FFF;
padding: 5px 10px;
font-weight: bold;
}
#commentlist .comment-controls a:link, #commentlist .comment-controls a:visited {
text-decoration: none;
}
.comments-navigation {
clear: both;
margin: 10px 10px 20px 0;
}
.nocomments {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
padding: 15px 10px;
margin: 0 10px 20px 0;
}
#commentsform {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
margin: 0 10px 10px 0;
padding: 10px 15px;
overflow: hidden;
}
#commentsform textarea {
width: 98%;
height: 100px;
padding: 5px;
}
.pingbacks {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
padding: 15px 10px 15px 30px;
margin: 0 10px 20px 0;
}
.pingbacks li {
padding: 2px 0;
font-weight: bold;
}
.pingbacks a:link, .pingbacks a:visited {
text-decoration: none;
} .search-results h2 {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0 10px 0 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
}
.search-results-content {
border: solid #CCC;
border-width: 0 1px 1px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
margin: 0 10px 10px 0;
padding: 10px;
}
hr {
border-top: 1px solid #BABABA!important
}
#mapp0_layout {
float: left;
border-right: 2px solid #636963!important;
} #footer {
margin: 5px auto 5px;
width: 100%;
background: #ffffff;
padding: 10px;
text-align: center;
float: left;
}
#footer .widgetcontainer {
padding: 5px 10px;
}
#footer .widgettitle {
background: none;
border: none;
text-transform: uppercase;
font-size: 10px;
color: #ffffff;
padding: 0 0 10px;
}
#footer .widgetcontent {
font-size: 11px;
background: none;
padding: 0;
border: none;
}
#footer .footer-message {
border-left: 1px solid #429600;
float: left;
overflow: hidden;
margin: 10px 0 0;
}
#footer .footer-message .widgetcontainer {
width: 215px;
overflow: hidden;
}
#footer-sidebar {
width: 690px;
float: left;
overflow: hidden;
margin: 10px 10px 0;
}
#footer-sidebar .widgetcontainer {
float: left;
margin: 0 0 15px 0;
max-width: 250px;
max-height: 120px;
}
#footer-sidebar ul {
list-style: square;
}
#footer-sidebar li {
margin: 0 0 3px;
}
#footer .widgetcontent a:link, #footer .widgetcontent a:visited {
font-size: 11px;
}
.posts-default .post {
width: 32%;
position: relative;
}
.navbar-fixed-top, #searchbar form {
display: none;
}
#container {
padding-left: 0 !important;
}
.ps-button {
width: 75%;
height: 35px;
margin: 7px;
background: #88C83C;
border: 0;
margin-left: 0px;
}
.ps {
font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
text-transform: uppercase;
font-weight: 100;
color: white;
margin-top: 10px;
font-size: 16px;
}
.size-thumbnail {
}
.entry-photo > a > img {
width: 100%
}
#featured-slideshow > div {
width: 103%!important;
margin-left: -8px
}
.featured-slider img {
width: 100%;
max-height: 250px
}
.side-logo {
width: 75%;
margin: auto;
margin-bottom: 10px;
margin-top: -5px;
}
.side-logo-1 {
color: gray;
text-align: center;
font-size: 12px;
margin-bottom: 0px;
}
.side-logo-2 {
color: gray;
text-align: center;
margin-top: 0px;
font-size:10px;
padding: 0 24px;
}
.sideimage {
width:100%;
}
.sideimage a, .sideimage a:link, .sideimage a:visited {
display:block;width:30%;float:left;margin:0 1.5%;
}
.sideimage a img {
width: auto;
height: auto;
max-height: 50px;
margin:0!important;
max-width:100%;
}
.credentials {
text-align: center;
width: 100%;
height: auto;
margin: auto
}
.credit-pic {
width: 35%;
float: right
}
.credit-pic img {
width:62%!important;
}
.credit-credentials {
width: 65%;
float: left;
margin-top: 10px
}
div.sub-pics > p > a:nth-child(4) > img {
margin-right: 0!important
} .wpcf7-checkbox {
display:block;
margin:0 10px 5px 0;
}
.wpcf7-checkbox input[type=checkbox], .wpcf7-checkbox input[type=radio] {float:left;} @media only screen and (max-width : 768px) {
.wp-caption {
max-width:95%!important;
}
.posts-default .entry-thumbnails {
max-height: 50%;
}
div.sub-pics > p > a:nth-child(2) > img {
margin-right: 0!important
}
.sub-pics p img {
width: 48%!important;
margin-right: 7px!important;
;
margin-top: 7px
}
.feed-title {
margin-top: 10px
}
.sub-pics > .gallery > .gallery-item {
width: 50%!important;
}
.post-left {
width: 100%!important;
float: left
}
.post-right {
width: 100%!important;
float: left!important
}
.credentials {
width: 65%!important;
}
.credit-credentials {
margin-top: 10px;
width:100%;
float:none;
}
.credit-pic {
width: 100%;
float: none;
margin: 0 auto;
}
#header {
margin-top: 40px
}
.header-text h1 {
font-size: 5vw;
}
.header-text h2 {
font-size: 2.35vw;
}
.navbar-right {
float: left!important;
margin: 0!important;
}
.sideimage img {
width: 50%;
margin: 5px 0
}
a img {
width: 100%;
height: auto;
}
.single .post .entry-photo, .single-post .entry-photo {
width: 100%
}
.entry-thumbnails {
width: 100%;
}
#wrapper {
width: 100%!important
}
#nav {
display: none
}
#footer {
display: block;
}
.main-aside, .featured {
width: 100% !important;
height: 100% !important;
float: left !important;
}
.navbar-fixed-top {
display: block;
}
.featured_article {
max-width: 100% !important;
}
#main, #branding {
width: 100% !important;
margin-left: 0 !important;
padding-left: 0 !important;
padding: 0!important;
}
.posts-default .post {
width: 100% !important;
height: auto;
}
ul.posts-default {
width: 100% !important;
height: 100% !important;
}
.posts-default img {
width: 100% !important;
height: 100% !important;
position: inherit;
right: 0;
}
#content {
width: 100% !important;
}
select, input {
width: 100%;
height: 30px;
float: left;
margin: 5px 0px!important;
}
#container {
width: 100% !important;
padding-right: 0 !important;
}
#centercityliving-social {
margin-left: 0 !important;
}
.posts-default .entry-title {
font-size: 16px;
}
.featured-article {
background-size: contain !important;
}
#featured-slideshow {
width: 100%;
height: 100%;
}
.featured-entry, #controls {
width: 100% !important;
}
#featured {
height: 100% !important;
}
#featured_holder {
display: none;
}
input.medium, textarea {
width: 100% !important;
}
.feed-title {
width: 100%
}
.side-logo-1 {
font-size: 3.5vw
}
.side-logo-2 {
font-size: 2vw
}
.side-logo {
width: 50%
}
.navbar-header {
margin: 0px!important;
}
.navbar-toggle {
margin-right: 0px!important
}
#wrapper {
padding: 0px!important
}
.read-more-feat {
position: inherit!important;
margin-top: 1em!important;
right: 0px!important;
}
.header-text h2 {
letter-spacing: 0.1em
}
} @media only screen and (min-width : 768px) and (max-width:992px) {
.posts-default .entry-thumbnails {
max-height: 70%;
}
select, input {
width: 100%;
height: 30px;
float: left;
margin: 5px 0px!important;
}
.credentials {
width: 65%!important;
}
.credit-credentials {
margin-top: 35px
}
.navbar-header {
display: none
}
#footer {
display: block;
}
.navbar-fixed-top {
display: none;
}
#nav {
display: block;
}
#main {
padding-left: 0px!important;
padding-right: 0!important
}
.main-aside {
width: 100%!important
}
.container {
width: 100%!important
}
.posts-default, .posts-quick, .posts-line {
margin-right: -1.4%;
}
.featured {
margin-right: 0px
}
#featured-slideshow > div {
margin-left: -12px
}
#controls {
margin-left: 1px;
width: 101.1%
}
.sideimage img {
width: 50%;
margin: 5px 0;
height: auto
}
.side-logo-1 {
font-size: 3.5vw
}
.side-logo-2 {
font-size: 2vw
}
.side-logo {
width: 50%
}
} .main-pic {
width: 100%
}
.main-pic img {
width: 100%
}
.post-current {
text-align: center;
font-size: 18px;
margin: 20px auto;
}
.sub-pics {
margin-top: 10px
}
.sub-pics > .gallery {
margin-bottom: -5px;
}
.sub-pics > .gallery > .gallery-item {
width: 25%;
margin-right: 0px!important;
margin-bottom: 0px;
}
.sub-pics > .gallery > .gallery-item img {
width: 100%;
height: auto;
float: left;
border: thick white solid;
}
.sub-pics > p {
text-align: center
}
.sub-pics p img {
width: 24%;
height: auto;
margin-right: 5px
}
.post-left {
width: 50%;
float: left
}
.post-right {
width: 50%;
float: right
}
.post-top {
width: 100%;
float: left; }
.post-left > p strong {
color: #429600;
}
.post-top img {
width: 100%;
padding: 10px;
padding-right: 0px
}
.post-middle {
width: 100%;
float: left;
}
.post-middle img {
width: 100%;
padding: 10px;
padding-left: 0px
}
.post-bottom {
width: 100%;
float: left;
}
.post-bottom img {
width: 100%;
padding: 10px;
padding-right: 0px
}
.read-more-feat {
width: 90%;
margin: auto;
text-align: center;
background: #429600;
line-height: 20px;
position: absolute;
bottom: 5px;
right: 5%;
text-transform: uppercase;
display:none;
}
.read-more-feat a {
height: auto;
width: 100%;
font-size: 12px;
color: white;
}
.read-more-feat:hover {
background: #B9EF8E;
border: thin solid #429600;
}
.read-more-feat:hover a {
color: #429600;
text-decoration: none;
}
read-more-feat a:visited {
color: white;
} #breadcrumbs {
display: none;
margin-bottom: 0px;
margin-top: 12px;
padding-left: 0px;
float: right;
width:50%;
}
#breadcrumbs li {
display: inline!important;
}
.separator {
content: "|";
}
.idxprop {
font-size:12px;
}
.widget-content {
position: relative;
overflow: hidden;
padding: 10px 10px 10px 10px; }
.widget-content select {
background: #ffffff; background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ebebeb)); background: -webkit-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -o-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -ms-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 ); width: 100%;
margin: 0px 0px 10px 0px;
padding: 2px;
border: 1px solid #e5e5e5;
box-shadow: inset 0px 0px 0px 1px #fff;
border-radius: 5px;
color: #000;
font-size: 12px;
height: 30px;
padding: 4px 5px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.widget-content select {
padding-right: 18px; }
.widget-content label {
position: relative;
overflow: hidden;
width: auto;
display: block; }
.widget-content label:after {
content: '<>';
font: 11px "Consolas", monospace;
color: #aaa;
-webkit-transform: rotate(90deg);
position: absolute;
right: 9px;
top: 6px;
padding: 0 0 5px;
pointer-events: none;
border-bottom: 1px solid #ddd; } }
input[type="submit"].widget-button {
background: #c0de90; background: -moz-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c0de90), color-stop(100%, #81a64d)); background: -webkit-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -o-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -ms-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: linear-gradient(to bottom, #c0de90 0%, #81a64d 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0de90', endColorstr='#81a64d',GradientType=0 ); height: 35px;
line-height: 35px;
padding: 0px 20px 0px 20px;
border-radius: 10px;
box-shadow: 0px 0px 7px -3px #000, inset 0px 0px 0px 1px #8c8c8c;
text-shadow: 1px 1px 0px #b4d484;
cursor: pointer;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
opacity: 1.0;
float: left;
text-transform: uppercase; 
display:block;
font-size: 12px;
color: #000;
margin: 0px;
border:none;
}
input[type="submit"].widget-button:hover {
opacity: .8; }
input[type="submit"].widget-button:active {
box-shadow: 0px 0px 7px -3px #000, inset 0px 0px 10px 0px #8c8c8c; }#centercityliving-social{text-align: center;height:32px; margin-left:30px;}
#centercityliving-social a{margin-left: 2px;}
.spr-0012_Blogger{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 0; width: 32px; height: 32px;float:left;} 
.spr-facebook-32x32{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -42px; width: 32px; height: 32px;float:left;} 
.spr-foursquare{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -84px; width: 32px; height: 32px;float:left;} 
.spr-googleplus{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -126px; width: 32px; height: 32px;float:left;} 
.spr-linkedin-32x32{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -168px; width: 32px; height: 32px;float:left;} 
.spr-twitter-32x32{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -210px; width: 32px; height: 32px;float:left;} 
.spr-youtube-32x32{background:url(//centercityliving.com/images/centercityliving-spr.png) no-repeat top left;background-position: 0 -252px; width: 32px; height: 32px;float:left;}
#centercityliving-social-footer{text-align: center;height:44px; margin:0 auto; }
#centercityliving-social-footer a{margin-left: 2px;}
.spr-0012_Blogger-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 0; width: 26px; height: 26px;float:left;} 
.spr-facebook-32x32-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -36px; width: 26px; height: 26px;float:left;} 
.spr-foursquare-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -72px; width: 26px; height: 26px;float:left;} 
.spr-googleplus-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -108px; width: 26px; height: 26px;float:left;} 
.spr-linkedin-32x32-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -144px; width: 26px; height: 26px;float:left;} 
.spr-twitter-32x32-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -180px; width: 26px; height: 26px;float:left;} 
.spr-youtube-32x32-footer{background:url(//centercityliving.com/images/centercityliving-spr-footer.png) no-repeat top left;background-position: 0 -216px; width: 26px; height: 26px;float:left;}
.ssba { display: none; } .category-center-city-blog h1.feed-title {
border-bottom: 1px solid rgb(204,204,204);
}
.category-center-city-blog ul.hfeed {
margin: 0;
}
.category-center-city-blog ul.hfeed li {
overflow: hidden;
margin-top: 16px;
padding-bottom: 16px;
border-bottom: 1px solid #ccc;
}
.category-center-city-blog ul.hfeed li .entry-thumbnails {
float: left;
margin-right: 16px;
}
.category-center-city-blog ul.hfeed li .entry-thumbnails.no-featured-img {
overflow: hidden;
width: 190px;
max-height: 250px;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.category-center-city-blog ul.hfeed li .entry-thumbnails.no-featured-img img {
width: 190px;
height: auto;
}
.category-center-city-blog ul.hfeed li .entry-title {
margin-bottom: 8px;
}
.category-center-city-blog ul.hfeed li .entry-summary .entry-date {
margin-bottom: 16px;
color: #666;
}
.category-center-city-blog ul.hfeed li .entry-summary p {
padding-left: 206px;
}
.single .category-center-city-blog .entry-title {
float: left;
width: 50%;
margin-bottom: 0.5em !important;
}
.single .category-center-city-blog .entry-summary {
float: right;
width: 50%;
padding-top: 15px;
text-align: right;
}
.single .category-center-city-blog .entry-summary .entry-date {
line-height: 21px;
color: #666;
}
.single .category-center-city-blog .entry-content {
clear: both;
padding-top: 1.5em;
border-top: 1px solid #ccc;
}
.single .category-center-city-blog .entry-content .mobile-photo {
float: left;
margin: 0 1.5em 1.5em 0;
}
.single .category-center-city-blog .entry-content p br {
display: none;
}
.single .category-center-city-blog .entry-content .ssba {
display: block;
}#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxLoadedContent iframe{display:block; width:100%; height:100%; border:0;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;} #cboxOverlay{background:#000;}
#colorbox{}
#cboxContent{margin-top:20px;}
#cboxLoadedContent{background:#000; padding:5px;}
#cboxTitle{position:absolute; top:-20px; left:0; color:#ccc;}
#cboxCurrent{position:absolute; top:-20px; right:0px; color:#ccc;}
#cboxSlideshow{position:absolute; top:-20px; right:90px; color:#fff;}
#cboxPrevious{position:absolute; top:50%; left:5px; margin-top:-32px; background:url(//centercityliving.com/wp-content/themes/arras-theme/images/controls.png) no-repeat top left; width:28px; height:65px; text-indent:-9999px;}
#cboxPrevious.hover{background-position:bottom left;}
#cboxNext{position:absolute; top:50%; right:5px; margin-top:-32px; background:url(//centercityliving.com/wp-content/themes/arras-theme/images/controls.png) no-repeat top right; width:28px; height:65px; text-indent:-9999px;}
#cboxNext.hover{background-position:bottom right;}
#cboxLoadingOverlay{background:#000;}
#cboxLoadingGraphic{background:url(//centercityliving.com/wp-content/themes/arras-theme/images/loading.gif) no-repeat center center;}
#cboxClose{position:absolute; top:5px; right:5px; display:block; background:url(//centercityliving.com/wp-content/themes/arras-theme/images/controls.png) no-repeat top center; width:38px; height:19px; text-indent:-9999px;}
#cboxClose.hover{background-position:bottom center;}1/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   
-------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* -------------------------------------------------------------- 
   
   typography.css
   * Sets up some sensible default typography.
   
-------------------------------------------------------------- */

/* Default font settings. 
   The font-size percentage is of 16px. (0.75 * 16px = 12px) */
body { 
  font-size: 75%;
  color: #222; 
  background: #fff;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img.left  { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #009; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre 				{ margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
-------------------------------------------------------------- */

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; }
thead th 		{ background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td  { background: #e5ecf9; }
tfoot       { font-style: italic; }
caption     { background: #eee; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

label       { font-weight: bold; }
fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }


/* Form fields
-------------------------------------------------------------- */

input.text, input.title,
textarea, select {
  margin:0.5em 0!important;
  border:1px solid #bbb;
}

input.text:focus, input.title:focus,
textarea:focus, select:focus {
  border:1px solid #666;
}

input.text, 
input.title   { width: 300px; padding:5px; }
input.title   { font-size:1.5em; }
textarea      { width: 390px; height: 250px; padding:5px; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

label.error,
label.notice, 
label.success    { padding: .4em; margin-bottom: 1em; border: 2px solid #ddd; }

label.error      { margin-top: 10px; display: block; background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
label.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
label.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }
 .col-xs-12 {
width: 100%!important;
}
body {
background-color: #ffffff;
color: #333;
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif !important;
height: 100%;
min-height: 100%;
font-size:12px;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
color: #1E1B1A;
}
h4 {
color:#429600;
}
.non {
text-decoration: none!important;
}
.header-text {
width: inherit;
margin: auto;
font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
text-transform: uppercase;
font-weight: 100;
color: white;
padding-top: 1em;
overflow: hidden; }
.header-text h1 {
color: white;
text-align: center;
font-weight: 100;
font-size: 30px;
transform: scale(1.3, 1);
-webkit-transform: scale(1.3, 1);
-moz-transform: scale(1.3, 1);
-ms-transform: scale(1.3, 1);
-o-transform: scale(1.3, 1);
margin-top: 25px;
}
.header-text > h1 > span {
color: #88C83C;
}
.header-text h2 {
color: white;
text-align: center;
font-weight: 100;
font-size: 13px;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
transform: scale(1.3, 1);
-webkit-transform: scale(1.3, 1);
-moz-transform: scale(1.3, 1);
-ms-transform: scale(1.3, 1);
-o-transform: scale(1.3, 1);
letter-spacing: 0.18em;
margin-top: 10px
}
.header-text > h2 > span {
}
.clearfix:after {
clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
:focus {
-moz-outline-style: none;
}
a, a:link, a:visited {
color: #429600;
text-decoration: none;
}
a:hover {
color: #7bc143;
}
p {
line-height: 1.5em;
}
blockquote {
border-left: 2px solid #CCC;
color: #666;
margin: 5px 0 20px;
padding: 5px 10px 1px;
font-style: normal;
}
code {
background: #EAEAEA;
color: #333;
font-family: Consolas, Monaco, Courier, monospace;
font-size: 11px;
margin: 1px 0;
padding: 1px 3px;
}
pre code {
background: #322E2C;
border: 1px solid #635957;
color: #FFF;
display: block;
overflow: scroll;
padding: 1.5em 1.75em;
}
input[type=text], input[type=password], textarea {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/form.jpg) repeat-x top #FFF;
border: 1px solid #CCC;
padding: 3px;
}
input[type=submit], #wp-email-submit {
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/postbar.gif) repeat-x;
border: 1px solid #333;
padding: 5px 10px;
font-size: 12px;
color: #FFF;
margin-top: 10px;
}
input[type=submit]:hover, #wp-email-submit:hover {
border: 1px solid #CCC;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x;
color: #333;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 1px solid #CCC;
}
th, td {
padding: 5px;
border: 1px solid #CCC;
border-width: 1px;
}
th, thead th {
font-weight: bold;
color: #333;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x top #CCC;
}
td, tbody td {
background: #ffffff;
} .aligncenter {
display: block;
margin: 0 auto;
}
.alignright {
float: right;
margin: 0 0 1em 1em;
}
.alignleft {
float: left;
margin: 0 0.9em 1em 0;
}
.floatleft {
float: left;
}
.floatright {
float: right;
}
img.aligncenter, img.alignright, img.alignleft {
border: 3px solid #EEE;
}
.textcenter {
text-align: center;
}
.textright {
text-align: right;
}
.textleft {
text-align: left;
}
.noticebox {
background-color: #fff9d7;
border: 1px solid #e2c822;
color: #333;
margin-bottom: 20px;
padding: 10px;
}
.noticebox a {
color: #000;
}
.sub {
font-size: 11px;
color: #848485;
}
.ui-tabs-hide, .hide {
display: none !important;
}
.wp-caption {
border: 1px solid #DDD;
text-align: center;
background: #F3F3F3;
padding-top: 4px;
margin: 10px
}
.wp-caption img {
margin: 0;
padding: 0;
border: none
}
.wp-caption .wp-caption-text {
font-size: 11px;
line-height: 17px;
padding: 0 4px 5px;
margin: 0
}
.tags a:link, .tags a:visited {
font-weight: bold;
text-decoration: none;
padding: 2px 4px;
background: #FFF;
display: inline-block;
margin-bottom: 3px;
} #wrapper {
min-height: 100%;
position: relative;
max-width: 1035px
}
#main {
padding: 20px;
z-index: 0;
*z-index: -1;
}  #header {
background: #ffffff;
padding: 0 0 15px 0;
background-image: url(https://centercityliving.com/wp-content/uploads/2015/05/header-bg.png);
background-repeat: no-repeat;
background-position: center top;
margin: 0;
}
#branding {
width: 960px;
margin: 0 auto;
}
.logo {
max-width: 590px;
float: left;
margin: 20px 0 0 10px;
}
.blog-name {
font-weight: bold;
font-size: 22px;
margin: 0;
line-height: 1em;
display: block;
text-transform: uppercase;
}
.blog-name a:link, .blog-name a:visited {
color: #FFF;
text-decoration: none;
} .blog-name a:hover {
}
.blog-description {
line-height: 1em;
display: block;
font-size: 11px;
font-weight: bold;
color: #7d716d;
margin: 0;
padding: 5px 0 0;
text-transform: uppercase;
} #nav {
zoom: 1;
max-height: 35px;
max-width: 965px;
margin: auto;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg);
border: solid thin#ccc;
}
#nav-content {
margin: 0 auto;
height: 30px;
width: 610px;
}
.sf-menu {
font-weight: bold;
}
.sf-menu, .sf-menu ul {
float: left;
list-style: none;
line-height: 30px;
padding: 0;
margin: 0;
}
.sf-menu a {
display: block;
text-decoration: none;
padding: 0 15px;
text-transform: uppercase;
color: #666;
font-size: 11px;
transition: color 0.2s ease-in-out;
cursor: pointer;
}
.sf-menu li:hover > a {
color: #88c83c
}
.sf-menu li {
cursor: pointer;
float: left;
padding: 0;
}
.sf-menu ul {
position: absolute;
left: -999em;
height: auto;
width: 150px;
margin: 0;
line-height: 1;
border: none;
}
.sf-menu li li {
width: 148px;
border: solid #CCC;
border-width: 1px 1px 0;
}
.sf-menu li li a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x top #FFF;
padding: 7px 10px;
width: 128px;
font-size: 12px;
text-transform: none;
}
.sf-menu li ul ul {
margin: -27px 0 0 148px;
}
.sf-menu li li:hover {
}
.sf-menu li:hover ul ul, .sf-menu li:hover ul ul ul, .sf-menu li:hover ul ul ul ul, .sf-menu li.sfhover ul ul, .sf-menu li.sfhover ul ul ul, .sf-menu li.sfhover ul ul ul ul {
left: -999em;
}
.sf-menu li:hover ul, .sf-menu li li:hover ul, .sf-menu li li li:hover ul, .sf-menu li li li li:hover ul, .sf-menu li.sfhover ul, .sf-menu li li.sfhover ul, .sf-menu li li li.sfhover ul, .sf-menu li li li li.sfhover ul {
left: auto;
z-index: 2;
}
.sf-menu li ul li:hover a, .sf-menu li ul li li:hover a, .sf-menu li ul li li li:hover a, .sf-menu li ul li li li:hover a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/feed-title.jpg) repeat-x top #004688;
color: #FFF;
}
.sf-menu li:hover li a, .sf-menu li li:hover li a, .sf-menu li li li:hover li a, .sf-menu li li li li:hover li a {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x top #FFF;
color: #666;
}
.rss {
float: right;
list-style: none;
margin: 0;
padding: 0 15px;
}
.rss a:link, .rss a:visited {
display: block;
margin: 0 25px 0 0;
color: #666;
font-size: 11px;
font-weight: bold;
text-decoration: none;
padding: 8px 0 0 0;
float: left;
clear: left;
margin: 0;
}
.rss li {
float: left;
display: inline;
text-transform: uppercase;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/rss.png) no-repeat;
background-position: 0 9px;
padding: 0 0 0 18px;
margin: 0 0 0 10px;
} #searchbar {
height: 155px;
float: right;
overflow: hidden;
padding: 10px;
margin: -37px 0 0;
}
#searchform #s {
font-family: 'Lucida Grande', Arial, Helvetica, sans-serif;
width: 250px;
float: left;
margin: 1px 5px 0 0;
padding: 4px 3px;
}
#searchform #searchsubmit {
font-family: Tahoma, Arial, Helvetica, sans-serif;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/postbar.gif) repeat-x;
border: 1px solid #333;
padding: 5px 10px;
font-size: 12px;
color: #FFF;
float: left;
} .sidebar {
float: right!important;
width: 32%!important;
}
.sidebar .xoxo {
list-style: none;
padding: 0;
margin: 0;
}
.widgetcontainer ul, .widgetcontent .xoxo, .widgetcontainer ol {
list-style: disc;
margin-left: 0px;
padding: 0;
list-style-position: inside;
font-size: 13px;
}
.widgetcontainer li {
margin-bottom: 0px;
}
.widgetcontainer li a:visited, .widgetcontainer li a:link {
text-decoration: none;
font-weight: bold;
font-size: 12px;
}
.widgetcontainer li a:hover {
border-bottom: 1px dotted #635957;
}
.widgetcontainer input[type=text], .widgetcontainer input[type=password] {
width: 100%;
}
.widgettitle {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
}
.widgettitle a {
color: #333;
}
.widgetcontent {
border: solid #CCC;
border-width: 0 1px 1px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
margin-bottom: 10px;
padding: 10px;
float: left;
width: 100%;
}
#multi-sidebar {
}
#multi-sidebar .tabs {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#multi-sidebar .tabs li {
float: left;
background: #0052A3;
padding: 5px;
margin: 0 3px 5px 0;
border: 1px solid #CCC;
}
#multi-sidebar .tabs a:link, #multi-sidebar .tabs a:visited {
text-decoration: none;
font-weight: bold;
color: #FFF;
}
#multi-sidebar .tabs a:hover {
border-bottom: 1px dotted #FFF;
}
#multi-sidebar .tabs .ui-tabs-selected {
background: #FFF;
}
#multi-sidebar .tabs .ui-tabs-selected a:link, #multi-sidebar .tabs .ui-tabs-selected a:visited {
color: #37322F;
}
#multi-sidebar #s-tags a:link, #multi-sidebar #s-tags a:visited {
font-weight: bold;
text-decoration: none;
padding: 2px 4px;
background: #FFF;
display: inline-block;
margin-bottom: 3px;
}
#multi-sidebar .widgetcontainer {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin-bottom: 10px;
padding: 10px;
}
#multi-sidebar .widgetcontainer ul {
list-style: none;
margin: 0 0 0 5px;
}
#multi-sidebar .widgetcontainer li {
margin-bottom: 10px;
} .featured {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
padding: 10px;
margin: 0 0 10px 0;
}
#controls {
position: relative;
float: left;
z-index: 14;
width: 97.5%;
padding-top: 75px;
margin-left: 8px;
}
#controls .next, #controls .prev {
text-indent: -9000px;
width: 30px;
height: 30px;
display: block;
}
#controls .prev {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/prev.png) no-repeat;
float: left;
}
#controls .next {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/next.png) no-repeat;
float: right;
}
#featured-slideshow {
position: relative;
height: 250px;
margin: auto;
width: 97.2%;
}
.featured-article {
display: block;
width: 100%;
height: 250px;
text-decoration: none !important;
}
.featured-entry {
position: relative; top: -84px;
overflow: hidden;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/overlay.png);
height: 85px;
color: #a7a7a7;
padding: 0;
display: block;
}
.featured-entry .entry-title {
color: #FFF;
padding: 10px 15px 5px;
display: block;
font-size: 16px;
font-weight: bold;
}
.featured-entry .entry-summary {
padding: 0 15px;
margin: 0;
display: block;
}
.layout-3c-r-fixed .featured, .layout-3c-fixed .featured {
height: 225px;
}
.layout-3c-r-fixed #controls, .layout-3c-r-fixed .featured-article, .layout-3c-fixed #controls, .layout-3c-fixed .featured-article {
width: 480px;
}
.layout-3c-r-fixed .featured-article, .layout-3c-fixed .featured-article {
height: 225px;
}
.layout-3c-r-fixed .featured-entry, .layout-3c-fixed .featured-entry {
height: 100px;
top: 125px;
} #bottom-content-1, #bottom-content-2 {
float: left;
width: 320px;
margin: 0 10px 10px 0;
overflow: hidden;
}
#bottom-content-1 .xoxo, #bottom-content-2 .xoxo {
margin: 0;
}
#bottom-content-1 * .xoxo, #bottom-content-2 * .xoxo {
margin-left: 15px;
}
#bottom-content-1 .widgettitle, #bottom-content-2 .widgettitle {
background: #F0F0F0;
}
.layout-3c-r-fixed #bottom-content-1, .layout-3c-r-fixed #bottom-content-2, .layout-3c-fixed #bottom-content-1, .layout-3c-fixed #bottom-content-2 {
width: 243px;
} .posts-default, .posts-quick, .posts-line {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
margin-right: -8px;
}
#content > ul {
display: block;
width: 101.4%;
}
#content > ul > li {
display: block;
width: 32%
}
.hfeed posts-default clearfix {
margin-left: 2px
}
.hfeed posts-default clearfix >li {
}
.posts-default .post {
float: left;
margin: 0 1.3% 1em 0;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
height: 250px;
padding: 10px;
font-size: 11px;
}
.posts-default img {
float: left;
height: auto;
background: #111;
text-indent: -9000px;
width: 150%;
position: relative;
right: 25%;
}
.posts-default .entry-title {
font-weight: bold;
font-size: 12px;
margin: 10px 0 5px;
line-height: 1.3em;
}
.posts-default .entry-title a:link, .posts-default .entry-title a:visited {
text-decoration: none;
}
.posts-default .entry-title a:hover {
}
.posts-default .entry-summary, .posts-quick .entry-summary {
color: #666;
overflow: hidden;
}
.posts-default .entry-thumbnails {
clear: both;
display: inline-block;
overflow: hidden;
width: 100%;
max-height:110px;
}
.posts-quick {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin: 0 10px 10px 0;
padding: 10px;
}
.posts-quick li {
padding: 10px 0;
border-bottom: 1px dotted #EEE;
}
.posts-quick li:last-child {
border: none;
}
.posts-quick img {
float: left;
margin-right: 15px;
border: 1px solid #CCC; background: #111;
text-indent: -9000px;
}
.posts-quick .entry-title {
font-weight: bold;
font-size: 14px;
margin: 0 0 10px;
line-height: 1.3em;
}
.posts-quick .entry-title a:link, .posts-quick .entry-title a:visited {
text-decoration: none;
}
.posts-quick .entry-title a:hover {
}
.posts-quick .entry-summary {
line-height: 1.5em;
}
.posts-quick .quick-read-more {
padding: 5px 0;
}
.posts-quick .entry-thumbnails {
float: left;
}
.posts-default .entry-meta, .posts-quick .entry-meta {
color: #CCC;
float: left;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/overlay.png);
width: 190px;
height: 25px;
display: block;
margin: -25px 0 0;
font-weight: bold;
}
.posts-quick .entry-meta {
margin: 76px 0 0 -206px;
}
.posts-default .entry-meta a:link, .posts-default .entry-meta a:visited, .posts-quick .entry-meta a:link, .posts-quick .entry-meta a:visited {
color: #FFF;
text-decoration: none;
}
.posts-default .entry-comments, .posts-quick .entry-comments {
float: right;
margin: 5px 5px 0;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/comments.gif) no-repeat left center;
padding: 0 0 0 12px;
}
.posts-default .published, .posts-quick .published {
text-transform: uppercase;
float: left;
margin: 5px 5px 0;
font-size: 10px;
color: #999;
border-bottom: none;
}
.posts-line {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: 1px solid #CCC;
margin: 0 10px 10px 0;
padding: 10px;
}
.posts-line li {
padding: 7px 0;
border-bottom: 1px solid #EEE;
}
.posts-line .entry-cat {
float: left;
font-size: 11px;
width: 100px;
overflow: hidden;
color: #848485;
}
.posts-line .entry-title {
float: left;
font-size: 12px;
margin: 0;
}
.posts-line .entry-comments {
float: right;
font-size: 11px;
color: #848485;
}
.layout-3c-r-fixed .posts-default .post, .layout-3c-r-fixed .posts-default img, .layout-3c-r-fixed .posts-default .entry-meta {
width: 223px;
}
.layout-3c-fixed .posts-default .post, .layout-3c-fixed .posts-default img, .layout-3c-fixed .posts-default .entry-meta {
width: 223px;
}
.navigation {
margin: 10px 10px 10px 0;
} .single .post, .single-post { border: 1px solid #CCC;
margin: 0 10px 20px 0;
}
.single .post .entry-title, .single-post .entry-title {
font-size: 21px;
font-weight: bold;
padding: 10px 0 0;
margin: 5px 0;
}
.single .post .entry-title a:link, .single .post .entry-title a:visited, .single-post .entry-title a:link, .single-post .entry-title a:visited {
text-decoration: none;
}
.single .post .entry-title a:hover, .single-post .entry-title a:hover {
}
.single .post .entry-info, .single-post .entry-info {
color: #848485;
}
.single .post .entry-cat, .single-post .entry-cat {
display: block;
color: #848485;
margin: 2px 0;
}
.single .post .entry-author, .single-post .entry-author {
font-weight: bold;
margin: 0 10px 0 0;
color: #848485;
}
.single .post .entry-author address, .single-post .entry-author address {
display: inline;
font-style: normal;
}
.single .post .tags, .single-post .tags {
display: block;
margin: 5px 0;
color: #848485;
}
.single .post .entry-photo, .single-post .entry-photo {
width: 100%;
margin: 0 auto 10px;
border: 1px solid #CCC;
}
.single .post .entry-content, .single-post .entry-content {
margin: 10px 0;
font-size: 12px;
}
.single .post .entry-content p, .single-post .entry-content p {
line-height: 1.75em;
}
.single-post {
padding: 0 10px;
border:none;
}
.layout-3c-r-fixed .post .entry-photo, .layout-3c-r-fixed .single-post .entry-photo, .layout-3c-fixed .post .entry-photo, .layout-3c-fixed .single-post .entry-photo {
width: 480px;
}
.postbar {
list-style: none;
margin: 0 0 10px;
padding: 7px 0;
border: 1px solid #CCC;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/topnav.jpg) repeat-x top;
font-size: 11px;
}
.postbar li {
float: left;
padding: 0 10px;
border-left: 1px solid #EEE;
}
.postbar li:first-child {
border-left: 0;
}
.postbar li a:link, .postbar li a:visited {
text-decoration: none;
font-weight: bold;
}
.postbar li a:hover {
}
.postbar .WP-PrintIcon, .postbar .WP-EmailIcon {
display: none;
}
.single-post-meta {
padding: 4px;
margin: 0 10px 10px;
background: #F0F0F0;
}
.single-post-meta-field {
clear: left;
float: left;
width: 15%;
font-weight: bold;
color: #000;
background: #F0F0F0;
}
.single-post-meta-value {
float: left;
width: 80%;
color: #333;
background: #F0F0F0;
}
.module-title, .feed-title {
line-height: 1em;
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 7px 10px;
display: block;
}
.feed-title {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
border-bottom: 0;
}
.gallery {
clear: both;
margin: 10px 0;
}
.gallery-item {
float: left;
margin-right: 10px;
}
.about-author {
border: 1px solid #CCC;
padding: 10px 15px;
margin: 0 0 10px;
line-height: 1.5em;
background: #FFF;
font-size: 11px;
}
.about-author h4 {
font-size: 10px;
margin: 0 0 10px;
text-transform: uppercase;
color: #429600;
font-weight: bold;
}
.about-author img {
float: left;
margin: 0 10px 10px 0;
border: 1px solid #CCC;
padding: 0;
} .gdmultitable {
margin: 0 0 10px !important;
}
.gdmultitable td {
padding: 5px !important;
} .wp-pagenavi {
margin: 0 0 10px;
font-size: 12px;
}
.wp-pagenavi a:link, .wp-pagenavi a:visited {
padding: 3px 4px;
margin: 2px;
text-decoration: none;
background: #FFF;
border: 1px solid #CCC;
}
.wp-pagenavi a:hover {
color: #000;
}
.wp-pagenavi span.pages, .wp-pagenavi span.extend {
padding: 3px 4px;
background: #FFF;
margin: 2px;
border: 1px solid #CCC;
}
.wp-pagenavi span.current {
padding: 3px 4px;
background: #FFF;
margin: 2px;
font-weight: bold;
border: 1px solid #CCC;
}
.wp-pagenavi span.pages {
margin-left: 0;
} #wp125adwrap_2c {
width: 270px !important;
display: inline-block;
padding: 8px 0 2px 8px;
margin: 0 auto !important;
}
#wp125adwrap_2c .wp125ad {
padding: 0 !important;
margin: 0 10px 10px 0 !important;
}
#wp125adwrap_2c:after {
clear: both;
content: ".";
display: block;
height: 0;
line-height: 0;
visibility: hidden;
}
html[xmlns] #wp125adwrap_2c {
display: block;
}
* html #wp125adwrap_2c {
height: 1%;
} #wp-email-required {
color: #CC0000;
}
#wp-email {
margin: 10px;
padding: 10px;
background: #F0F0F0;
}
#wp-email-button {
text-align: left !important;
} #commentlist {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
list-style: none;
padding: 10px;
margin: 0 10px 0 0;
}
#commentlist li {
margin: 0;
padding-bottom: 20px;
overflow: hidden;
}
#commentlist .avatar {
border: 1px solid #CCC;
padding: 1px;
float: left;
margin: 0 5px 10px 0;
}
#commentlist cite {
font-weight: bold;
font-style: normal;
line-height: 14px;
}
#commentlist p {
clear: left;
font-size: 12px;
}
#commentlist .reply {
float: right;
}
#commentlist .reply a, .comments-navigation a, .read-more, .navigation a {
color: #FFF;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/feed-title.jpg) top repeat-x;
text-decoration: none;
padding: 5px 8px;
margin-bottom: 3px;
border: 1px solid #CCC;
font-weight: bold;
zoom: 1;
*display: inline;
display: inline-block;
}
#commentlist .reply a:hover, .comments-navigation a:hover, .navigation a:hover, .read-more:hover {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) top repeat-x;
color: #000;
}
#commentlist .children {
clear: right;
margin: 5px 0 0;
list-style: none;
}
#commentlist .children li {
border-bottom: none;
border-left: 1px dotted #CCC;
padding: 0 0 0 20px;
}
#commentlist #respond {
clear: both;
margin-top: 40px;
padding-top: 10px;
border-top: 1px dotted #CCC;
}
#commentlist .comment-author {
padding: 10px 0 0 10px;
}
#commentlist .comment-content {
padding: 0 10px;
}
#commentlist .comment-node {
background: #FFF;
border: 1px solid #EEE;
}
#commentlist .comment-meta {
text-decoration: none;
color: #999;
font-size: 11px;
}
#commentlist .comment-controls {
background: #FFF;
padding: 5px 10px;
font-weight: bold;
}
#commentlist .comment-controls a:link, #commentlist .comment-controls a:visited {
text-decoration: none;
}
.comments-navigation {
clear: both;
margin: 10px 10px 20px 0;
}
.nocomments {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
padding: 15px 10px;
margin: 0 10px 20px 0;
}
#commentsform {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
margin: 0 10px 10px 0;
padding: 10px 15px;
overflow: hidden;
}
#commentsform textarea {
width: 98%;
height: 100px;
padding: 5px;
}
.pingbacks {
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
border: solid #CCC;
border-width: 0 1px 1px;
padding: 15px 10px 15px 30px;
margin: 0 10px 20px 0;
}
.pingbacks li {
padding: 2px 0;
font-weight: bold;
}
.pingbacks a:link, .pingbacks a:visited {
text-decoration: none;
} .search-results h2 {
color: #333;
font-size: 12px;
font-weight: bold;
margin: 0 10px 0 0;
padding: 6px 10px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/feed-title-white.jpg) repeat-x top #0052a3;
border: 1px solid #CCC;
}
.search-results-content {
border: solid #CCC;
border-width: 0 1px 1px;
background: url(//centercityliving.com/wp-content/themes/arras-theme/images/techblue/content-bg.jpg) repeat-x #FFF;
margin: 0 10px 10px 0;
padding: 10px;
}
hr {
border-top: 1px solid #BABABA!important
}
#mapp0_layout {
float: left;
border-right: 2px solid #636963!important;
} #footer {
margin: 5px auto 5px;
width: 100%;
background: #ffffff;
padding: 10px;
text-align: center;
float: left;
}
#footer .widgetcontainer {
padding: 5px 10px;
}
#footer .widgettitle {
background: none;
border: none;
text-transform: uppercase;
font-size: 10px;
color: #ffffff;
padding: 0 0 10px;
}
#footer .widgetcontent {
font-size: 11px;
background: none;
padding: 0;
border: none;
}
#footer .footer-message {
border-left: 1px solid #429600;
float: left;
overflow: hidden;
margin: 10px 0 0;
}
#footer .footer-message .widgetcontainer {
width: 215px;
overflow: hidden;
}
#footer-sidebar {
width: 690px;
float: left;
overflow: hidden;
margin: 10px 10px 0;
}
#footer-sidebar .widgetcontainer {
float: left;
margin: 0 0 15px 0;
max-width: 250px;
max-height: 120px;
}
#footer-sidebar ul {
list-style: square;
}
#footer-sidebar li {
margin: 0 0 3px;
}
#footer .widgetcontent a:link, #footer .widgetcontent a:visited {
font-size: 11px;
}
.posts-default .post {
width: 32%;
position: relative;
}
.navbar-fixed-top, #searchbar form {
display: none;
}
#container {
padding-left: 0 !important;
}
.ps-button {
width: 75%;
height: 35px;
margin: 7px;
background: #88C83C;
border: 0;
margin-left: 0px;
}
.ps {
font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
text-transform: uppercase;
font-weight: 100;
color: white;
margin-top: 10px;
font-size: 16px;
}
.size-thumbnail {
}
.entry-photo > a > img {
width: 100%
}
#featured-slideshow > div {
width: 103%!important;
margin-left: -8px
}
.featured-slider img {
width: 100%;
max-height: 250px
}
.side-logo {
width: 75%;
margin: auto;
margin-bottom: 10px;
margin-top: -5px;
}
.side-logo-1 {
color: gray;
text-align: center;
font-size: 12px;
margin-bottom: 0px;
}
.side-logo-2 {
color: gray;
text-align: center;
margin-top: 0px;
font-size:10px;
padding: 0 24px;
}
.sideimage {
width:100%;
}
.sideimage a, .sideimage a:link, .sideimage a:visited {
display:block;width:30%;float:left;margin:0 1.5%;
}
.sideimage a img {
width: auto;
height: auto;
max-height: 50px;
margin:0!important;
max-width:100%;
}
.credentials {
text-align: center;
width: 100%;
height: auto;
margin: auto
}
.credit-pic {
width: 35%;
float: right
}
.credit-pic img {
width:62%!important;
}
.credit-credentials {
width: 65%;
float: left;
margin-top: 10px
}
div.sub-pics > p > a:nth-child(4) > img {
margin-right: 0!important
} .wpcf7-checkbox {
display:block;
margin:0 10px 5px 0;
}
.wpcf7-checkbox input[type=checkbox], .wpcf7-checkbox input[type=radio] {float:left;} @media only screen and (max-width : 768px) {
.wp-caption {
max-width:95%!important;
}
.posts-default .entry-thumbnails {
max-height: 50%;
}
div.sub-pics > p > a:nth-child(2) > img {
margin-right: 0!important
}
.sub-pics p img {
width: 48%!important;
margin-right: 7px!important;
;
margin-top: 7px
}
.feed-title {
margin-top: 10px
}
.sub-pics > .gallery > .gallery-item {
width: 50%!important;
}
.post-left {
width: 100%!important;
float: left
}
.post-right {
width: 100%!important;
float: left!important
}
.credentials {
width: 65%!important;
}
.credit-credentials {
margin-top: 10px;
width:100%;
float:none;
}
.credit-pic {
width: 100%;
float: none;
margin: 0 auto;
}
#header {
margin-top: 40px
}
.header-text h1 {
font-size: 5vw;
}
.header-text h2 {
font-size: 2.35vw;
}
.navbar-right {
float: left!important;
margin: 0!important;
}
.sideimage img {
width: 50%;
margin: 5px 0
}
a img {
width: 100%;
height: auto;
}
.single .post .entry-photo, .single-post .entry-photo {
width: 100%
}
.entry-thumbnails {
width: 100%;
}
#wrapper {
width: 100%!important
}
#nav {
display: none
}
#footer {
display: block;
}
.main-aside, .featured {
width: 100% !important;
height: 100% !important;
float: left !important;
}
.navbar-fixed-top {
display: block;
}
.featured_article {
max-width: 100% !important;
}
#main, #branding {
width: 100% !important;
margin-left: 0 !important;
padding-left: 0 !important;
padding: 0!important;
}
.posts-default .post {
width: 100% !important;
height: auto;
}
ul.posts-default {
width: 100% !important;
height: 100% !important;
}
.posts-default img {
width: 100% !important;
height: 100% !important;
position: inherit;
right: 0;
}
#content {
width: 100% !important;
}
select, input {
width: 100%;
height: 30px;
float: left;
margin: 5px 0px!important;
}
#container {
width: 100% !important;
padding-right: 0 !important;
}
#centercityliving-social {
margin-left: 0 !important;
}
.posts-default .entry-title {
font-size: 16px;
}
.featured-article {
background-size: contain !important;
}
#featured-slideshow {
width: 100%;
height: 100%;
}
.featured-entry, #controls {
width: 100% !important;
}
#featured {
height: 100% !important;
}
#featured_holder {
display: none;
}
input.medium, textarea {
width: 100% !important;
}
.feed-title {
width: 100%
}
.side-logo-1 {
font-size: 3.5vw
}
.side-logo-2 {
font-size: 2vw
}
.side-logo {
width: 50%
}
.navbar-header {
margin: 0px!important;
}
.navbar-toggle {
margin-right: 0px!important
}
#wrapper {
padding: 0px!important
}
.read-more-feat {
position: inherit!important;
margin-top: 1em!important;
right: 0px!important;
}
.header-text h2 {
letter-spacing: 0.1em
}
} @media only screen and (min-width : 768px) and (max-width:992px) {
.posts-default .entry-thumbnails {
max-height: 70%;
}
select, input {
width: 100%;
height: 30px;
float: left;
margin: 5px 0px!important;
}
.credentials {
width: 65%!important;
}
.credit-credentials {
margin-top: 35px
}
.navbar-header {
display: none
}
#footer {
display: block;
}
.navbar-fixed-top {
display: none;
}
#nav {
display: block;
}
#main {
padding-left: 0px!important;
padding-right: 0!important
}
.main-aside {
width: 100%!important
}
.container {
width: 100%!important
}
.posts-default, .posts-quick, .posts-line {
margin-right: -1.4%;
}
.featured {
margin-right: 0px
}
#featured-slideshow > div {
margin-left: -12px
}
#controls {
margin-left: 1px;
width: 101.1%
}
.sideimage img {
width: 50%;
margin: 5px 0;
height: auto
}
.side-logo-1 {
font-size: 3.5vw
}
.side-logo-2 {
font-size: 2vw
}
.side-logo {
width: 50%
}
} .main-pic {
width: 100%
}
.main-pic img {
width: 100%
}
.post-current {
text-align: center;
font-size: 18px;
margin: 20px auto;
}
.sub-pics {
margin-top: 10px
}
.sub-pics > .gallery {
margin-bottom: -5px;
}
.sub-pics > .gallery > .gallery-item {
width: 25%;
margin-right: 0px!important;
margin-bottom: 0px;
}
.sub-pics > .gallery > .gallery-item img {
width: 100%;
height: auto;
float: left;
border: thick white solid;
}
.sub-pics > p {
text-align: center
}
.sub-pics p img {
width: 24%;
height: auto;
margin-right: 5px
}
.post-left {
width: 50%;
float: left
}
.post-right {
width: 50%;
float: right
}
.post-top {
width: 100%;
float: left; }
.post-left > p strong {
color: #429600;
}
.post-top img {
width: 100%;
padding: 10px;
padding-right: 0px
}
.post-middle {
width: 100%;
float: left;
}
.post-middle img {
width: 100%;
padding: 10px;
padding-left: 0px
}
.post-bottom {
width: 100%;
float: left;
}
.post-bottom img {
width: 100%;
padding: 10px;
padding-right: 0px
}
.read-more-feat {
width: 90%;
margin: auto;
text-align: center;
background: #429600;
line-height: 20px;
position: absolute;
bottom: 5px;
right: 5%;
text-transform: uppercase;
display:none;
}
.read-more-feat a {
height: auto;
width: 100%;
font-size: 12px;
color: white;
}
.read-more-feat:hover {
background: #B9EF8E;
border: thin solid #429600;
}
.read-more-feat:hover a {
color: #429600;
text-decoration: none;
}
read-more-feat a:visited {
color: white;
} #breadcrumbs {
display: none;
margin-bottom: 0px;
margin-top: 12px;
padding-left: 0px;
float: right;
width:50%;
}
#breadcrumbs li {
display: inline!important;
}
.separator {
content: "|";
}
.idxprop {
font-size:12px;
}
.widget-content {
position: relative;
overflow: hidden;
padding: 10px 10px 10px 10px; }
.widget-content select {
background: #ffffff; background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #ebebeb)); background: -webkit-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -o-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: -ms-linear-gradient(top, #ffffff 0%, #ebebeb 100%); background: linear-gradient(to bottom, #ffffff 0%, #ebebeb 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 ); width: 100%;
margin: 0px 0px 10px 0px;
padding: 2px;
border: 1px solid #e5e5e5;
box-shadow: inset 0px 0px 0px 1px #fff;
border-radius: 5px;
color: #000;
font-size: 12px;
height: 30px;
padding: 4px 5px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none; }
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.widget-content select {
padding-right: 18px; }
.widget-content label {
position: relative;
overflow: hidden;
width: auto;
display: block; }
.widget-content label:after {
content: '<>';
font: 11px "Consolas", monospace;
color: #aaa;
-webkit-transform: rotate(90deg);
position: absolute;
right: 9px;
top: 6px;
padding: 0 0 5px;
pointer-events: none;
border-bottom: 1px solid #ddd; } }
input[type="submit"].widget-button {
background: #c0de90; background: -moz-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c0de90), color-stop(100%, #81a64d)); background: -webkit-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -o-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: -ms-linear-gradient(top, #c0de90 0%, #81a64d 100%); background: linear-gradient(to bottom, #c0de90 0%, #81a64d 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0de90', endColorstr='#81a64d',GradientType=0 ); height: 35px;
line-height: 35px;
padding: 0px 20px 0px 20px;
border-radius: 10px;
box-shadow: 0px 0px 7px -3px #000, inset 0px 0px 0px 1px #8c8c8c;
text-shadow: 1px 1px 0px #b4d484;
cursor: pointer;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
opacity: 1.0;
float: left;
text-transform: uppercase; 
display:block;
font-size: 12px;
color: #000;
margin: 0px;
border:none;
}
input[type="submit"].widget-button:hover {
opacity: .8; }
input[type="submit"].widget-button:active {
box-shadow: 0px 0px 7px -3px #000, inset 0px 0px 10px 0px #8c8c8c; }