/* CSS RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input[type="file"] > input[type="button"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner {
    border: 0;
}
.clear {
    clear: both;
}
.hide {
    display: none;
}
.required:after {
    content: ' *';
    color: #FF0000;
}
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

.justify {
    text-align: justify;
}

.mc {
    color: #F03D25 !important;
}

.mcb {
    background-color: #F03D25 !important;
}

.mcbb {
    border-color: #F03D25 !important;
}

.parallax {
    background-size: cover !important;
    background-attachment: fixed !important;
}

body {
    background: #FFF;
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #2B333B;
}

b, strong {
    font-weight: 400;
}

#no-script {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    color: white;
    background: red;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

#js-loader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #FFF;
}

#js-loader > div {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 20px;
    width: 400px;
    margin-left: -200px;
    margin-top: -10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

header > div {
    position: fixed;
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
}

header .bg {
    position: relative;
    height: 90px;
    width: 100%;
    top: 0;
    left: 0;
    background: #2B333B;
    z-index: 1200;
}

header .bg > div {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    height: 90px;
}

header .logo {
    float: left;
    width: 238px;
    padding-top: 10px;
}

header .logo img {
    float: left;
}

header .logo img.scc {
    margin: 13px 0 0 15px;
}

header .search {
    float: right;
    width: 40px;
    height: 90px;
    border-left: #363D45 1px solid;
    border-right: #363D45 1px solid;
    background: url(../images/search-button.png) center center no-repeat;
    cursor: pointer;
}

header .search:hover {
    background-color: #363D45;
}

header .search.open, header .search.open:hover {
    background-color: #363D45;
}

header .search span {
    display: none;
}

header .search-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 51px;
    background: #363D45;
    z-index: 11;
    border-top: #3D4448 1px solid;
}

header .search-box .search-inner {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    height: 40px;
}

header .search-box .search-inner form {
    float: right;
    display: block;
    padding-top: 10px;
    color: #888;
}

header .search-box .search-inner .search-clear {
    float: left;
    width: 30px;
    height: 30px;
    border: 0;
    margin: 0;
    padding: 0;
    background: url(../images/search-clear.png) center center no-repeat #F03D25;
    cursor: pointer;
    outline: none;
}

header .search-box .search-inner .search-clear span {
    display: none;
}

header .search-box .search-inner .search-text {
    float: left;
    width: 550px;
    padding: 0 10px;
    height: 30px;
    border: 0;
    margin: 0;
    background: #2B333B;
    outline: none;
    display: block;
    color: #FFF;
}

header .search-box .search-inner .search-text:focus {
    background: #3D4448;
}

header .search-box .search-inner label {
    float: left;
    display: block;
    color: #888;
    padding: 5px 135px 0 0;
}

nav {
    float: right;
}

nav ul {
    float: right;
    height: 90px;
}

nav li {
    float: left;
    line-height: 1;
    border-bottom: transparent 2px solid;
}

nav a {
    display: inline-block;
    padding: 35px 15px 0 15px;
    text-decoration: none;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    color: #F0F0F0;
    line-height: 1;
    height: 90px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-left: #363D45 1px solid;
}

nav li.active a {
    border-bottom: #F03D25 2px solid;
    background: #363D45;
}

nav a:hover {
    background: #363D45;
}

.slide {
    position: relative;
    width: 100%;
    height: 800px;
    z-index: 1;
    overflow: hidden;
    margin-top: 90px;
    background: url(../images/red.png) 0 0 repeat-x #2B333B;
}

.slide-inner {
    position: relative;
    max-width: 1920px;
    height: 800px;
    overflow: hidden;
    margin: 0 auto;
}

.slide img {
    position: absolute;
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: 800px;
    z-index: 2;
    overflow: hidden;
}

.slide-overlay-centered {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 300px;
    margin-top: -150px;
    display: none;
}

.slide-overlay-background {
    background: #1A2225;
    opacity: 0.5;
}

.slide-overlay-text {
    padding: 80px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.slide-overlay-text p {
    text-align: center;
    line-height: 140%;
    font-family: 'PT Sans Narrow', sans-serif;
}

.slide-overlay-text .p {
    font-size: 30px;
    color: #FFF;
}

.slide-overlay-text .h {
    font-size: 60px;
    color: #FFF;
    font-weight: 700;
}

.slide-overlay-bubbles {
    position: absolute;
    width: 100%;
    text-align: center;
    height: 10px;
    left: 0;
    bottom: -10px;
}

.slide-overlay-bubbles span {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #AEAEAE;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.slide-overlay-bubbles span.current {
    background: #F03D25;
}

.slide-overlay-bubbles span.last {
    margin-right: 0;
}

section > div, footer > div {
    position: relative;
    width: 100%;
    text-align: center;
}

section > div > div {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

footer > div > div {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

h2 {
    color: #F03D25;
    font-size: 14px;
    font-weight: 400;
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

h3 {
    color: #2B333B;
    font-size: 40px;
    margin: 15px 300px;
    font-weight: 400;
    line-height: 120%;
    font-family: 'PT Sans Narrow', sans-serif;
}

hr {
    margin: 20px 550px;
    background-color: #F03D25;
    color: #F03D25;
    border: 0;
    border-top: #F03D25 1px solid;
}

.wide-fill {
    margin: 0 100px;
    font-size: 18px;
    line-height: 140%;
    color: #888;
}

.why-us-reasons {
    position: relative;
    float: left;
    width: 25%;
    text-align: center;
    height: 207px;
    overflow: hidden;
}

.why-us-reasons > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-top: 130px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.why-us-reasons h4 {
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}

.why-us-reasons p {
    padding: 20px 45px 0 45px;
    line-height: 140%;
    color: #888;
}

.why-us-reasons .justice-house {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 50px;
    left: 50%;
    margin-left: -33px;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
}

.why-us-reasons .justice-house span {
    position: relative;
    display: block;
    background: #00396C;
    text-align: center;
    height: 52px;
    width: 52px;
}

.why-us-reasons .justice-house span img {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    left: 5px;
    top: 5px;
}

.practice-areas {
    background: url(../images/pillars.jpg) center center no-repeat;
}

.practice-areas h2 {
    color: #F03D25;
}

.practice-areas h3 {
    color: #FFF;
}

.practice-areas .wide-fill {
    color: #FFF;
}

.practice-areas-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 60px;
}

.practice-area {
    position: relative;
    overflow: hidden;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.practice-area h4 {
    word-spacing: 50px;
}

.practice-area h4 a {
    position: relative;
    color: #FFF;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    line-height: 140%;
    padding: 70px 0 21px 0;
    margin: 0 20px;
    display: block;
    border-bottom-color: #F03D25;
    border-bottom-style: solid;
}

.practice-area h4 a span {
    position: absolute;
    background-image: url(../images/practice-areas.png);
    background-repeat: no-repeat;
    display: block;
    width: 50px;
    height: 50px;
    top: 0;
    left: 50%;
    margin-left: -25px;
}

.practice-area .desc {
    display: none;
}

.what-we-do-service {
    position: relative;
    float: left;
    width: 400px;
    margin-top: 50px;
    height: 250px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.what-we-do-service > div {
    position: absolute;
    left: 50px;
    bottom: 0;
    width: 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 100px 10px 10px 10px;
    height: 100%;
    background-color: #00396C;
    background-position: 0 0;
    background-repeat: no-repeat;
}

.what-we-do-service.s1 {
    padding-left: 50px;
}

.what-we-do-service.s1 > div {
    background-image: url(../images/portfolio-monitoring-bg.jpg);
}

.what-we-do-service.s3 {
    padding-left: 50px;
}

.what-we-do-service.s2 > div {
    margin: 0 auto;
    background-image: url(../images/corporate-governance-reform-bg.jpg);
}

.what-we-do-service.s3 > div {
    background-image: url(../images/case-evaluation-bg.jpg);
}

.what-we-do-service .inner {
    position: absolute;
    left: 9px;
    bottom: 9px;
    text-align: center;
    padding: 15px 0 25px 0;
    width: 280px;
    height: 135px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #FFF;
    overflow: hidden;
}

.what-we-do-service.s2 .inner {
    padding: 15px 15px 25px 15px;
}

.what-we-do-service.s3 .inner {
    padding: 15px 30px 25px 30px;
}

.what-we-do-service h4 {
    font-size: 18px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'PT Sans Narrow', sans-serif;
}

.what-we-do-service .desc {
    line-height: 120%;
    padding-top: 10px;
    color: #888;
}

.what-we-do-service .more {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.what-we-do-service .more a {
    display: inline-block;
    text-transform: uppercase;
    color: #FFF;
    text-decoration: none;
    padding: 15px 35px;
    background: #F03D25;
}

.what-we-do-service .more a:hover {
    opacity: 0.8;
}

.take-action {
    height: 312px;
    background: url(../images/take-action-bg.jpg) center center no-repeat;
}

section > div.take-action > div {
    padding: 50px 0 0 0;
}

.take-action h2 {
    color: #FFF;
    text-transform: none;
    font-size: 28px;
    font-family: 'PT Sans Narrow', sans-serif;
}

.take-action h3 {
    position: absolute;
    left: 50%;
    bottom: 25px;
    margin: 0;
    font-size: 14px;
}

.take-action h3 a {
    color: #FFF;
    font-size: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    border: #F03D25 1px solid;
    padding: 10px 15px 10px 35px;
    font-family: 'PT Sans', sans-serif;
    background: url(../images/hammer.png) 10px center no-repeat transparent;
    display: block;
    text-decoration: none;
}

.take-action h3 a:hover {
    background-color: #F03D25;
}

.take-action p {
    line-height: 150%;
    color: #CCC;
}

.take-action .s1 h3 {
    margin-left: -70px;
}

.take-action .s2 h3 {
    margin-left: -80px;
}

.take-action .s3 h3 {
    margin-left: -98px;
}

.take-action-section {
    position: relative;
    float: left;
    width: 400px;
    height: 172px;
    bottom: 0;
    margin-top: 20px;
}

.take-action-section .take-action-overlay {
    background: #000;
    opacity: 0.5;
}

.take-action-section .take-action-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px 40px;
    color: #FFF;
}

.take-action-section.s1 .take-action-content {
    padding: 25px 30px;
}

.take-action-section > div {
    position: absolute;
    width: 300px;
    height: 172px;
    bottom: 0;
    left: 50%;
    margin-left: -150px;
}

.current-cases {
    background: #EEE;
}

.scr-holder {
    position: relative;
    margin: 50px 100px 0 100px;
    overflow-x: hidden;
    border: #AEAEAE 1px solid;
}

.scr-holder .scr {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 1000px;
    height: auto;
}

.scr-holder .scr-article {
    position: relative;
    width: 500px;
    border-right: #AEAEAE 1px solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 25px 25px 70px;
    text-align: left;
    float: left;
}

.scr-holder .scr-article.odd {
    background-color: #FFF;
}

.scr-holder .scr-article.last {
    border-right: 0;
}

.scr-holder .scr-article h4 {
    text-transform: uppercase;
    font-size: 15px;
    color: #F03D25;
    font-weight: 400;
}

.scr-holder .scr-article-text {
    margin-top: 15px;
    line-height: 140%;
}

.scr-holder .scr-article-date {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 10px;
    top: 10px;
    color: #FFFFFF;
    background-color: #2B333B;
    text-align: center;
    padding-top: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.scr-holder .scr-article-date span {
    clear: both;
    display: block;
    font-size: 13px;
    line-height: 120%;
}

.scr-holder .scr-article-holder {
    position: absolute;
    left: 70px;
    bottom: 10px;
    padding-top: 10px;
}

.scr-holder .scr-article-assigned-attorneys {
    font-size: 15px;
    padding-top: 10px;
}

.scr-holder .scr-article-assigned-attorneys img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
}

.scr-holder .scr-article-assigned-attorneys a {
    color: #333;
    text-decoration: none;
}

.scr-holder .scr-article-assigned-attorneys a:hover {
    text-decoration: underline;
}

.scr-holder .scr-article-take-action, .scr-holder .scr-article-more {
    margin-top: 20px;
    font-size: 14px;
    text-transform: uppercase;
}

.scr-holder .scr-article-take-action a {
    float: left;
    display: block;
    color: #FFF;
    white-space: nowrap;
    padding: 10px 12px 10px 38px;
    font-family: 'PT Sans', sans-serif;
    background: url(../images/hammer.png) 10px center no-repeat #F03D25;
    text-decoration: none;
}

.scr-holder .scr-article-take-action a:hover {
    opacity: 0.8;
}

.scr-holder .scr-article-more a {
    float: left;
    display: block;
    color: #FFF;
    white-space: nowrap;
    padding: 10px 12px 10px 38px;
    font-family: 'PT Sans', sans-serif;
    background: url(../images/read-more.png) 10px center no-repeat #F03D25;
    text-decoration: none;
}

.scr-holder .scr-article-take-action .time-left-label {
    float: left;
    display: block;
    white-space: nowrap;
    line-height: 1;
    text-transform: none;
    font-weight: 700;
    padding: 14px 0 0 20px;
}

.scr-holder .scr-article-take-action .time-left {
    float: left;
    display: block;
    white-space: nowrap;
    line-height: 1;
    font-size: 20px;
    background: url(../images/time-left-to-join-action.png) 10px center no-repeat;
    font-weight: 700;
    padding: 9px 12px 9px 38px;
}

.scr-holder .scr-article-take-action .time-left span {
    font-size: 10px;
    line-height: 1;
}

.scr-switcher {
    text-align: center;
    padding-top: 10px;
    height: 10px;
}

.scr-switcher span {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #AEAEAE;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.scr-switcher span.current {
    background: #F03D25;
}

.scr-switcher span.last {
    margin-right: 0;
}

.our-attorneys-holder {
    margin: 50px 0 0 0;
}

.attorney {
    position: relative;
    float: left;
    width: 33.33%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.attorney > div {
    width: 300px;
    padding: 10px;
    cursor: pointer;
    margin: 0 auto;
}

.attorney > div.active {
    background: #FFF;
}

.attorney > div > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    background: #00396C;
}

.attorney .attorney-photo img {
    height: 300px;
    display: block;
}

.attorney .attorney-data {
    padding: 15px 0;
}

.attorney h4 {
    color: #FFF;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
}

.attorney h4 a {
    color: #FFF;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
}

.attorney .attorney-desc {
    color: #FFF;
}

.attorney .attorney-desc span {
    display: none;
}

.attorney .attorney-contact {
    display: none;
}

.our-attorneys-details {
    border-top: #AEAEAE 1px solid;
    width: auto;
    margin: 0;
    background: #EEE;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.our-attorneys-details > div {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.attorney-pointer {
    position: absolute;
    top: -27px;
    left: 222px;
    width: 56px;
    height: 27px;
    background: url(../images/our-attorneys-pointer.png) 0 0 no-repeat;
    z-index: 1;
}

.attorney-pointer-cover {
    position: absolute;
    left: 0;
    top: -50px;
    height: 50px;
    width: 100%;
    background: #EEE;
    z-index: 2;
}

.attorney-details {
    margin: 0 14%;
    display: none;
}

.attorney-details.a1 {
    text-align: left;
}

.attorney-details.a2 {
    text-align: center;
}

.attorney-details.a3 {
    text-align: right;
}

.attorney-details h4 {
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
}

.attorney-details p {
    margin-top: 20px;
    line-height: 140%;
}

.attorney-details a {
    text-decoration: none;
    color: #F03D25;
}

.attorney-details a:hover {
    text-decoration: underline;
    color: #000;
}

.court-praises {
    height: 381px;
    background: url(../images/court-praises.jpg) center bottom no-repeat;
}

.court-praises > div {
    height: 270px;
}

.court-praises h2 {
    color: #FFF;
    text-transform: none;
    font-size: 28px;
    font-family: 'PT Sans Narrow', sans-serif;
}

.court-praise {
    position: absolute;
    left: 0;
    top: 130px;
    width: 100%;
    height: 200px;
    display: none;
}

.court-praise.active {
    display: block;
}

.court-praise p {
    margin: 0 50px;
}

.court-praise .praise {
    color: #FFF;
    font-size: 28px;
}

.court-praise .court {
    margin-top: 25px;
    color: #FFF;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 17px;
}

.court-praise-switcher {
    position: absolute;
    width: 100%;
    bottom: 30px;
    text-align: center;
    height: 10px;
    line-height: 1;
}

.court-praise-switcher span {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: #AEAEAE 1px solid;
    background: #EEE;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.court-praise-switcher span.current {
    background: #F03D25;
    border: #F03D25 1px solid;
}

.court-praise-switcher span.last {
    margin-right: 0;
}

.latest-publications > div > div {
    margin: 50px 100px 0 100px;
}

.featured-news {
    float: left;
    width: 640px;
    height: 360px;
}

.featured-news-item {
    position: relative;
    border-bottom: #E1E1E1 1px solid;
    border-right: #E1E1E1 1px solid;
    height: 90px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 30px 50px 70px;
    width: 640px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.featured-news-item.last {
    border-bottom: none;
}

.featured-news-item h4 a {
    color: #2B333B;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.featured-news-item h4 a:hover {
    text-decoration: underline;
}

.featured-news-item .news-date {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: #2B333B;
    color: #FFF;
}

.featured-news-item .attorneys {
    position: absolute;
    left: 70px;
    bottom: 10px;
    max-width: 440px;
    display: none;
}

.featured-news-item .attorneys span {
    font-weight: 400;
    color: #00396C;
}

.featured-news-item .attorneys a {
    color: #2B333B;
    text-decoration: none;
}

.featured-news-item .attorneys a:hover {
    text-decoration: underline;
}

.featured-news-item .more {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.featured-news-item .more a {
    color: #F03D25;
    text-decoration: none;
}

.featured-news-item .more a:hover {
    text-decoration: underline;
}

.featured-news-item .news-date span {
    display: block;
    text-align: center;
}

.featured-news-item .news-date span.day {
    font-size: 18px;
    margin-top: 4px;
}

.latest-blog-posts {
    float: right;
    width: 340px;
    text-align: left;
}

.latest-blog-posts h4 {
    color: #FFF;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: #F03D25 2px solid;
}

.latest-blog-posts h4 span {
    background: #F03D25;
    display: inline-block;
    padding: 3px 6px;
}

.blog-post {
    padding: 10px;
}

.blog-post-image {
    position: relative;
    float: left;
    width: 60px;
    height: 50px;
}

.attorney-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    z-index: 1;
}

.attorney-image-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    z-index: 2;
    background: url(../images/attorney-blog-post-image-overlay.png) 0 0 no-repeat;
}

.blog-post h5 a {
    font-size: 15px;
    font-weight: 400;
    font-family: 'PT Sans', sans-serif;
    color: #2B333B;
    text-decoration: none;
}

.blog-post h5 a:hover {
    text-decoration: underline;
}

.blog-post p {
    color: #ADADAD;
    margin-top: 5px;
}

.social-networks {
    float: right;
    width: 340px;
    height: 80px;
    text-align: left;
    clear: both;
    margin-top: 20px;
}

.social-networks h4 {
    color: #FFF;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: #00396C 2px solid;
}

.social-networks h4 span {
    background: #00396C;
    display: inline-block;
    padding: 3px 6px;
}

.social-networks p {
    margin-top: 10px;
}

.social-networks p a {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    background-image: url(../images/social-networking-icons2.png);
    background-repeat: no-repeat;
}

.social-networks-facebook {
    background-position: 0 0;
}

.social-networks-twitter {
    background-position: -34px 0;
}

.social-networks-linkedin {
    background-position: -68px 0;
}

.social-networks-youtube {
    background-position: -102px 0;
}

.social-networks-pinterest {
    background-position: -136px 0;
}

.social-networks-instagram {
    background-position: -170px 0;
}

.social-networks p a span {
    display: none;
}

.our-offices {
    position: relative;
    background: url(../images/our-offices.jpg) center center no-repeat;
    color: #FFF;
    overflow: hidden;
}

.our-offices > div {
    padding: 50px 0 60px 0;
}

.office-marker {
    position: absolute;
    width: 55px;
    height: 29px;
    background: url(../images/our-offices-pointer.png) 0 0 no-repeat;
    bottom: -60px;
    left: 72px;
    padding: 0;
    display: none;
}

.our-offices h2 {
    color: #F03D25;
}

.our-offices h3 {
    color: #FFF;
}

.our-offices-holder {
    position: relative;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.office {
    margin: 0 50px;
    cursor: pointer;
    width: 100px;
}

.office h4 {
    padding-top: 85px;
    color: #CCC;
    font-weight: 400;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    background-repeat: no-repeat;
    background-position: 0 0;
    line-height: 1;
}

.office-1 h4 {
    background-image: url(../images/office-NY.png);
}

.office-2 h4 {
    background-image: url(../images/office-CA.png);
}

.office-3 h4 {
    background-image: url(../images/office-GA.png);
}

.office-4 h4 {
    background-image: url(../images/office-PA.png);
}

.office .office-info {
    display: none;
}

.our-offices-maps {
    position: relative;
    border-top: #2B333B 5px solid;
    height: 330px;
    overflow: hidden;
}

.office-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
}

.office-map {
    position: relative;
    width: 100%;
    height: 330px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.office-map p {
    display: none;
}

.our-offices-maps .office-information-content {
    position: relative;
    width: 1100px;
    padding: 0;
}

.our-offices-maps > div.office-information-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background: #2B333B;
    opacity: 0.9;
    padding: 0;
}

.office-information {
    position: relative;
    z-index: 2;
    color: #ADADAD;
    padding-top: 15px;
}

.office-information .oi {
    float: left;
    padding-left: 45px;
    height: 40px;
    text-align: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.office-information .address {
    padding-top: 3px;
    background: url(../images/office-address-icon.png) 0 center no-repeat;
}

.office-information .phone {
    font-size: 18px;
    padding-top: 7px;
    margin-left: 45px;
    background: url(../images/office-phone-icon.png) 0 center no-repeat;
}

.office-information .fax {
    font-size: 18px;
    padding: 7px 0 0 55px;
    margin-left: 45px;
    background: url(../images/office-fax-icon.png) 0 center no-repeat;
}

.office-information .send-message {
    float: right;
}

.office-information .send-message button {
    border: #F03D25 1px solid;
    background: transparent;
    margin: 0;
    color: #FFF;
    font-weight: 400;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 15px;
    cursor: pointer;
}

.office-information .send-message button:hover {
    background-color: #F03D25;
}

.footer {
    background: #2B333B;
    color: #ACACAC;
    padding-bottom: 40px;
}

.footer a {
    font-family: 'PT Sans Narrow', sans-serif;
    color: #F03D25;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 20px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .menu {
    padding-top: 20px;
    line-height: 1;
}

.footer .copyright {
    border-top: #585858 1px solid;
    margin-top: 20px;
    padding-top: 20px;
}

.footer a img {
    display: inline-block;
    padding: 0;
    margin: 0 5px 0 0;
    border: 0;
    vertical-align: middle;
}

.footer a span {
    display: inline-block;
    vertical-align: middle;
}

@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}

.image-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
}

.image-loader .loader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFF;
}

.image-loader .loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 80px;
    margin-left: -100px;
    margin-top: -40px;
    font-size: 20px;
    text-align: center;
}

.heading-container {
    margin-top: 90px;
}

.heading-container > div {
    position: relative;
    margin: 0 auto;
    width: 1200px;
}

.heading-container hr {
    margin-top: 0;
    margin-bottom: 0;
}

.heading-container h1 {
    text-align: center;
    color: #FFF;
    font-size: 40px;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    padding-top: 65px;
    line-height: 125%;
    text-overflow: ellipsis;
    height: 70px;
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
    width: 1200px;
    margin: 0;
}

.sub-page-title {
    position: absolute;
    min-width: 100px;
    left: 50%;
    margin-left: -50px;
    top: 115px;
    border-top: #F03D25 1px solid;
    color: #FFF;
    padding-top: 10px;
}

body.page-static .heading-container,
body.page-practice-area .heading-container,
body.page-about .heading-container {
    background: url(../images/static-page-heading.jpg) center center no-repeat #000;
    height: 220px;
}

.page-intro {
    background-color: #EEE;
}

.page-intro > div {
    padding: 30px 100px 50px 100px;
    line-height: 150%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'PT Sans Narrow', sans-serif;
}

.page-intro > div > p {
    margin-top: 20px;
    color: #888;
    font-family: 'PT Sans', sans-serif;
}

.page-intro > div > p a {
    color: #F03D25;
}

.page-intro > div > p strong {
    color: #000;
    text-transform: uppercase;
    font-size: 120%;
}

.page-intro > div > p a:hover {
    text-decoration: none;
}

.page-content > div {
    padding: 50px 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.practice-areas-selector {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.pa-selector {
    position: relative;
    display: table-cell;
    height: 130px;
    border: #F03D25 1px solid;
}

.pa-selector a {
    position: relative;
    word-spacing: 100px;
    display: block;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'PT Sans Narrow', sans-serif;
    height: 130px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 65px;
}

.pa-selector a span {
    position: absolute;
    width: 50px;
    height: 50px;
    cursor: pointer;
    top: 5px;
    left: 50%;
    margin-left: -25px;
    background-image: url(../images/practice-areas.png);
    background-repeat: no-repeat;
}

.pa-selector.active a {
    background-color: #F03D25;
    color: #FFF;
}

.pa-selector.pa-1 a span {
    background-position: 0 0;
}
.pa-selector.pa-2 a span {
    background-position: 0 -50px;
}
.pa-selector.pa-3 a span {
    background-position: 0 -100px;
}
.pa-selector.pa-4 a span {
    background-position: 0 -150px;
}
.pa-selector.pa-5 a span {
    background-position: 0 -200px;
}
.pa-selector.pa-6 a span {
    background-position: 0 -250px;
}
.pa-selector.pa-7 a span {
    background-position: 0 -300px;
}
.pa-selector.pa-8 a span {
    background-position: 0 -350px;
}
.pa-selector.pa-1.active a span {
    background-position: -50px 0;
}
.pa-selector.pa-2.active a span {
    background-position: -50px -50px;
}
.pa-selector.pa-3.active a span {
    background-position: -50px -100px;
}
.pa-selector.pa-4.active a span {
    background-position: -50px -150px;
}
.pa-selector.pa-5.active a span {
    background-position: -50px -200px;
}
.pa-selector.pa-6.active a span {
    background-position: -50px -250px;
}
.pa-selector.pa-7.active a span {
    background-position: -50px -300px;
}
.pa-selector.pa-8.active a span {
    background-position: -50px -350px;
}

.pa-selector .pa-marker {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 10px;
    top: 130px;
    background: url(../images/pa-marker.png) 0 0 no-repeat;
    display: none;
}

.pa-selector.active .pa-marker {
    display: block;
}

.practice-area-content {
    margin-top: 30px;
    text-align: justify;
}

.practice-area-content p {
    color: #888;
    margin-top: 15px;
    line-height: 130%;
}

.practice-area-content p a {
    color: #F03D25;
    text-decoration: none;
}

.practice-area-content p b,
.practice-area-content p strong {
    color: #000;
}

.practice-area-content p a:hover {
    text-decoration: underline;
}

.practice-area-content p.practice-area-name {
    color: #000;
    font-size: 15px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}

.popup-page {
    margin: 0 20px 20px 20px;
}

.popup-page p {
    margin-top: 20px;
}

.popup-page p strong {
    text-transform: uppercase;
    color: #000;
    font-size: 18px;
    font-family: 'PT Sans Narrow', sans-serif;
}

.about-col {
    float: left;
    width: 33.33%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 25px 0 25px;
}
.about-col h2 {
    color: #000;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}
.about-col p {
    color: #888;
    font-size: 14px;
    line-height: 130%;
    margin-top: 20px;
    font-family: 'PT Sans', sans-serif;
}

.static-page-menu {
    width: 100%;
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.static-page-menu-item {
    position: relative;
    display: table-cell;
    border: #F03D25 1px solid;
}

.static-page-menu-item a {
    position: relative;
    display: block;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'PT Sans Narrow', sans-serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 13px 0;
    line-height: 1;
}

.static-page-menu-item.active a {
    background-color: #F03D25;
    color: #FFF;
}

.menu-item-marker {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 10px;
    top: 40px;
    background: url(../images/pa-marker.png) 0 0 no-repeat;
    display: none;
}

.active .menu-item-marker {
    display: block;
}

.static-page-content {
    margin-top: 50px;
    text-align: justify;
    color: #888;
    line-height: 130%;
}

.static-page-content.static-page-content-without-menu {
    margin-top: 0;
}

.plain-text-content {
    text-align: justify;
    color: #888;
    line-height: 130%;
}

.plain-text-content h2 {
    margin-top: 30px;
}

.plain-text-content p:first-child {
    margin-top: 0;
}

.plain-text-content p {
    margin-top: 20px;
}

.user-page-content {
    text-align: justify;
    color: #888;
    line-height: 130%;
}

.static-page-content p, .user-page-content p {
    margin-top: 15px;
}

.static-page-content a, .user-page-content a {
    color: #F03D25;
    text-decoration: none;
}

.static-page-content b,
.static-page-content strong,
.user-page-content b,
.user-page-content strong {
    color: #000;
}

.user-page-content strong {
    font-size: 130%;
}

.static-page-content a:hover, .user-page-content a:hover {
    text-decoration: underline;
}

.static-page-content p.static-page-name {
    color: #000;
    font-size: 15px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}

.static-page-content ul, .user-page-content ul {
    margin: 10px 0 0 15px;
    list-style: disc;
}

.static-page-content li em, .user-page-content li em {
    font-style: normal;
}

.do-you-need-legal-assistance {
    background: url(../images/do-you-need-legal-assistance.jpg) center center no-repeat;
    height: 240px;
}

section > div.do-you-need-legal-assistance > div {
    padding: 30px 0;
}

.do-you-need-legal-assistance h2 {
    color: #FFF;
    text-transform: none;
    font-size: 28px;
    font-family: 'PT Sans Narrow', sans-serif;
}

.do-you-need-legal-assistance .say {
    color: #CCC;
    font-size: 18px;
    margin-top: 45px;
}

.do-you-need-legal-assistance .phones {
    margin-top: 30px;
    color: #FFF;
    font-size: 18px;
    line-height: 1;
}

.do-you-need-legal-assistance .phones span {
    border: #F03D25 1px solid;
    padding: 10px 20px;
}

.page-home h1 {
    display: none;
}

.form-container button, .form-container input, .form-container select, .form-container textarea,
.take-action-form button, .take-action-form input, .take-action-form select, .take-action-form textarea {
     display: block;
 }

.form-container input.hide, .form-container select.hide, .take-action-form input.hide, .take-action-form select.hide {
    display: none;
}

.label-area, .label-file, .label-checkbox-group, .label-choice, .label-text, .label-date, .label-checkbox,
.label-state, .label-country, .label-yesno, .label-signature-pad, .label-subscribe {
    position: relative;
    display: block;
    text-align: left;
    color: #888;
    font-style: italic;
    padding-bottom: 6px;
}

.label-checkbox, .label-subscribe {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 15px;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.label-checkbox.emphasized, .label-subscribe {
    color: #000;
    font-style: normal;
}

.label-checkbox.checked span, .label-subscribe.checked span {
    background: url(../images/search-checkbox.png) -1px -1px no-repeat #F03D25;
}

.label-checkbox span, .label-subscribe span {
    position: absolute;
    left: 0;
    top: 9px;
    height: 18px;
    width: 18px;
    border: #ccc 2px solid;
    border-radius: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.take-action-form form > div ul.checkbox-group-options {
    padding: 0;
    color: inherit;
    line-height: 1;
}

ul.checkbox-group-options li {
    position: relative;
}

.form-control-checkbox-group ul.checkbox-group-options label {
    font-style: normal;
    padding-top: 10px;
}

.form-control-checkbox-group {
    text-align: left;
}

.take-action-form input.control-checkbox-group {
    display: inline-block;
    vertical-align: middle;
}

.take-action-form input.control-checkbox,
.take-action-form input.control-subscribe {
    position: absolute;
    left: -65000px;
}

.form-control-checkbox-group label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.form-container form > div {
    padding-bottom: 15px;
    position: relative;
    width: 500px;
    margin: 0 auto;
}

.take-action-form {
    float: left;
    width: 400px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 50px 0 0 0;
}

.take-action-form.consumer-fraud {
    margin: 0;
    float: none;
    width: auto;
}

.take-action-form form {
    margin-top: 25px;
}

.take-action-form.consumer-fraud .form-errors {
    text-align: left;
    color: #ff0000;
}

.take-action-container {
    float: left;
    margin-left: 50px;
}

.take-action-details {
    margin-top: 50px;
}

.take-action-details.take-action-details-counsel h2 {
    padding-bottom: 0;
}

.take-action-details.take-action-details-counsel p {
    margin-top: 25px;
}

.take-action-container.no-form {
    margin-left: 0;
}

.take-action-container.no-form .take-action-details {
    float: left;
    margin-right: 50px;
}

.take-action-container.no-form.has-counsel div.take-action-details:last-of-type {
    margin-right: 0;
}

.take-action-container.no-form.no-docs p {
    float: left;
    margin-right: 35px;
}

.take-action-container.no-form.no-docs p:last-of-type {
    margin-right: 0;
}

.take-action-send-information {

}

.take-action-form h2 {
    font-size: 130%;
}

.take-action-form p.thank-you {
    border: none;
    text-align: left;
    padding: 0;
    margin-top: 20px;
    font-size: 110%;
    line-height: 140%;
}

.take-action-send-information {
    margin-top: 35px;
    color: #888;
    text-align: left;
}

.take-action-send-information p {
    font-size: 110%;
}

.take-action-details h2, .take-action-send-information h2 {
    padding-bottom: 25px;
    font-size: 130%;
}

.take-action-details p {
    text-align: left;
    line-height: 160%;
    color: #888;
}

.take-action-details p a, .take-action-send-information p a {
    color: #F03D25;
    text-decoration: none;
}

.take-action-details p a:hover, .take-action-send-information p a:hover {
    text-decoration: underline;
}

.take-action-details p strong {
    color: #666;
}

.take-action-details p em {
    font-style: normal;
}

.take-action-form .form-title {
    text-align: left;
    margin-top: 30px;
}

.take-action-form .form-title strong {
    color: #F03D25;
    text-transform: uppercase;
}

.case-attorney span {
    display: block;
}

.case-attorney strong {
    font-size: 120%;
}

.take-action-form form > div {
    padding-bottom: 15px;
    position: relative;
    clear: both;
    float: left;
    width: 100%;
}

.take-action-form form > div.form-control-captcha {
    padding-bottom: 25px;
    padding-top: 10px;
}

.take-action-form form > div .g-recaptcha > div {
    margin: 0;
}

.take-action-form form > div ul {
    color: #FF0000;
    padding: 5px 0 10px 0;
    text-align: left;
}

.join-action-notice {
    text-align: left;
    font-size: 11px;
}

.take-action-form h2, .take-action-details h2, .take-action-send-information h2 {
    text-align: left;
    color: #000;
    text-transform: none;
}

.form-container form > div > ul {
    text-align: left;
    color: #F03D25;
    height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.control-text, .control-choice, .control-area, .control-file, .control-choice-overlay, .label-file .clicky, .control-date {
    width: 400px;
    height: 30px;
    background-color: #EEE;
    border: #EEE 1px solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #2B333B;
    text-align: left;
    outline: none;
}

.control-date {
    background: url(../images/control-date.png) right top no-repeat #EEE;
}

.form-container form > div .control-text, .page-aside .control-text,
.form-container form > div .control-choice, .page-aside .control-choice,
.form-container form > div .control-area, .page-aside .control-area,
.form-container form > div .control-file, .page-aside .control-file,
.form-container form > div .control-choice-overlay, .page-aside .control-choice-overlay,
.form-container form > div .label-file .clicky {
    width: 100%;
}

.control-area {
    width: 100%;
}

.label-file .clicky {
    display: block;
    margin-top: 6px;
    height: 34px;
    cursor: pointer;
}

.label-file .red {
    color: #FF0000;
}

.control-choice {
    position: relative;
    z-index: 1;
}

.control-choice-overlay {
    position: absolute;
    margin-left: -250px;
    left: 50%;
    padding: 0;
}

.control-choice-overlay-label {
    position: absolute;
    left: 0;
    top: 0;
    height: 28px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #2B333B;
    text-align: left;
    cursor: pointer;
    z-index: 1;
}

.control-choice-overlay-label:hover {
    background-color: #ddd;
}

.control-choice-overlay-selector {
    position: absolute;
    right: 0;
    top: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: url(../images/dropdown-arrow.png) center center no-repeat;
}

.control-choice-overlay-selector:hover, .control-choice-overlay-selector.active {
    background-color: #ddd;
}

.control-choice-overlay-dropdown {
    position: absolute;
    left: 1px;
    top: 30px;
    overflow-y: auto;
    z-index: 33;
    border: #ddd 1px solid;
    display: none;
}

.take-action-form .control-choice-overlay-label {
    width: 370px;
}

.take-action-form .control-choice-overlay-dropdown {
    width: 368px;
}

.take-action-form.consumer-fraud .control-choice-overlay {
    margin-left: 0;
    left: 0;
}

.take-action-form .control-choice-overlay {
    margin-left: -200px;
}

.control-choice-overlay-dropdown.active {
    display: block;
}

.control-choice-overlay-dropdown-item {
    width: 100%;
    height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 8px;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 1;
    color: #2B333B;
    text-align: left;
    background-color: #eee;
    cursor: pointer;
}

.control-choice-overlay-dropdown-item:hover {
    background-color: #ddd;
}

.control-text::-webkit-input-placeholder,
.control-text:-moz-placeholder,
.control-text::-moz-placeholder,
.control-text:-ms-input-placeholder,
.control-text::-ms-input-placeholder,
.control-text::placeholder,
.control-text:placeholder-shown {
    color: #888;
    font-style: italic;
}

.control-area {
    height: 100px;
    resize: none;
    line-height: 120%;
}

.control-area::-webkit-input-placeholder,
.control-area::-moz-placeholder,
.control-area:-ms-input-placeholder,
.control-area:-moz-placeholder,
.control-area::-ms-input-placeholder,
.control-area::placeholder {
    opacity: 0;
}

.control-text:focus, .control-choice:focus, .control-area:focus {
    outline: none;
    border: #000 1px solid;
}

.control-button {
    width: 150px;
    height: 42px;
    padding: 0;
    border: 0;
    text-transform: uppercase;
    line-height: 1;
    background-color: #F03D25;
    color: #FFF;
    font-size: 14px;
    font-family: 'PT Sans', sans-serif;
    margin: 0 auto;
}

.take-action-form .control-button {
    margin: 0;
}

.form-control-captcha label {
    display: none;
}

.form-control-button {
    margin-top: 30px;
}

.g-recaptcha > div {
    margin: 0 auto;
}

.form-container form > div.form-errors ul {
    border: #F03D25 1px solid;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    color: inherit;
    height: auto;
}

.form-container form > div.form-control-captcha ul {
    text-align: center;
}

.search-result-highlight {
    background: #FEFA9F !important;
    padding: 0 1px;
}

.search-form {
    float: left;
    width: 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px 20px 20px;
    background: #F03D25;
    text-align: left;
}

.search-form label.h2 {
    text-transform: uppercase;
    color: #FFF;
    font-family: 'PT Sans Narrow', sans-serif;
}

.search-form p {
    margin-top: 20px;
}

.search-form .search-text {
    width: 100%;
    height: 30px;
    border: 0;
    padding: 0;
    background: #EEE;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 20px 0 0 0;
    display: block;
}

.search-form .search-filters {
    float: left;
    clear: both;
    display: block;
    padding: 0 20px 0 0;
    text-transform: uppercase;
    color: #FFF;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 14px;
    background: url(../images/search-filters-toggle.png) right 0 no-repeat;
    line-height: 1;
}

.search-form .search-filters.open {
    background: url(../images/search-filters-toggle.png) right -14px no-repeat;
}

.search-form button {
    display: block;
    margin: 10px 0 0 0;
    border: 0;
    padding: 10px 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #F03D25;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.search-form button:hover {
    color: #F03D25;
    background: #EEE;
}

.checkbox-label {
    position: relative;
    color: #FFF;
    font-family: 'PT Sans Narrow', sans-serif;
    display: block;
    z-index: 2;
    margin: 3px 0 0 0;
    line-height: 1;
    height: 16px;
    padding-left: 23px;
    background: url(../images/search-checkbox.png) 0 -16px no-repeat #F03D25;
}

.checkbox-label.checked {
    background: url(../images/search-checkbox.png) 0 0 no-repeat #F03D25;
}

.checkbox-label:hover {
    text-decoration: underline;
}

.search-checkbox {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.search-checkboxes {
    position: relative;
    height: 0;
    overflow: hidden;
}

.search-results {
    width: 670px;
    float: right;
}

.search-results h2, .search-results p {
    text-align: left;
}

.search-results h2 {
    color: #000;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 130%;
}

.search-results p {
    color: #888;
}

.search-result-item-category {
     float: left;
    margin-top: 15px;
}

.search-results p .search-result-item-category-label {
    color: #F03D25;
}

.search-result-item-content {
    margin-top: 20px;
}

.search-result-item-more {
    float: right;
    margin-top: 15px;
}

.search-result-item-more a {
    color: #F03D25;
    text-decoration: none;
}

.search-result-item-more a:hover {
    text-decoration: underline;
}

.search-result-item-separator {
    clear: both;
    height: 40px;
}

.user-page-content {
    text-align: justify;
    color: #888;
    line-height: 130%;
}

.page-aside {
    position: relative;
    float: left;
    width: 300px;
    background-color: #F03D25;
    padding: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.static-page-content ul.listing-filters {
    list-style: none;
    margin: 0;
    color: #FFF;
}

.static-page-content ul.listing-filters li {
    padding: 10px;
    line-height: 1;
    border-top: #EEE 1px solid;
    cursor: pointer;
}

.static-page-content ul.listing-filters li.selected,
.static-page-content ul.listing-filters li:hover {
    background: url(../images/aside-arrow.png) 245px center no-repeat #EEE;
    color: #F03D25;
    border-top: #F03D25 1px solid;
}

.static-page-content ul.listing-filters li:first-child {
    border-top: 0;
}

.page-aside p {
    position: relative;
    margin-top: 20px;
}

.page-aside p.submit-button {
    margin-top: 35px;
}

.page-aside p.submit-button .loader {
    background: #EEE;
    color: #F03D25;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0;
    display: block;
}

.page-aside p label {
    display: block;
    color: #EEE;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    height: 28px;
}

.page-aside p .control-choice-overlay {
    margin: 0;
    left: 0;
    top: 28px;
}

.page-aside .control-button {
    width: 100%;
    background: #EEE;
    color: #F03D25;
    height: 36px;
}

.page-navigation {
    float: right;
    width: 650px;
    height: 60px;
    padding-top: 10px;
}

.page-navigation p.m {
    margin-top: 2px;
    float: left;
    font-size: 15px;
    color: #000;
}

.page-navigation p.p {
    margin-top: 0;
    float: right;
}

.page-navigation p.p a {
    display: inline-block;
    border: #F03D25 1px solid;
    padding: 3px 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 5px;
    text-decoration: none;
    font-size: 10px;
    color: #000;
    line-height: 1;
}

.page-navigation p.p a:hover, .page-navigation p.p a.active {
    color: #FFF;
    background-color: #F03D25;
}

.page-navigation p.p a:first-child {
    margin-left: 0;
}

.page-main-side {
    float: right;
    width: 650px;
}

.page-main-side-item {
    margin-bottom: 35px;
}

.page-main-side-item h2 {
    font-size: 15px;
    color: #000;
    font-family: 'PT Sans', sans-serif;
    line-height: 130%;
}

.page-main-side-item-date, .page-main-side-item-photo {
    float: left;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #FFF;
    background-color: #2B333B;
    margin-right: 15px;
    padding-top: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

.page-main-side-item-photo {
    padding: 0;
}

.page-main-side-item-photo img {
    border: 0;
    margin: 0;
    padding: 0;
}

.page-main-side-item-date span {
    clear: both;
    display: block;
    font-size: 12px;
    line-height: 120%;
}

.page-main-side-item-date .day {
    font-size: 16px;
}

.blog-post p.page-main-side-item-desc {
    color: #888;
    line-height: 140%;
    margin-left: 65px;
}

.page-main-side-item-author {
    font-style: italic;
    margin-left: 65px;
}

.blog-post .page-main-side-item-attorney-office {
    margin-left: 65px;
}

.page-main-side-item-attorney-office {
    float: left;
    width: 450px;
}

.page-main-side-item-attorney-office-news {
    float: left;
    width: 450px;
}

.page-main-side-item-attorney-office span, .page-main-side-item-attorney-office-news span {
    color: #F03D25;
}

.blog-post .page-main-side-item-more {
    text-transform: uppercase;
}

.page-main-side-item-more {
    float: right;
}

.page-main-side-item-more a {
    color: #F03D25;
    text-decoration: none;
}

.page-main-side-item-more a:hover {
    text-decoration: underline;
}

.our-attorneys-listing-item {
    position: relative;
    float: left;
    width: 50%;
    height: 150px;
}

.our-attorneys-listing-item .photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin-top: 0;
}

.our-attorneys-listing-item .photo > a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100px;
    display: block;
}

.our-attorneys-listing-item .photo > a > span {
    display: none;
}

.our-attorneys-listing-item h2 {
    color: #000;
    font-size: 17px;
    margin: 0 0 0 125px;
}

.our-attorneys-listing-item .position {
    margin: 7px 0 0 125px;
    font-size: 13px;
}

.our-attorneys-listing-item .position span {
    color: #F03D25;
    font-size: 15px;
}

.blog-blurbs h2 {
    margin-top: 20px;
}

.blog-attorney-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: #CCC 1px solid;
    text-align: justify;
    color: #888;
    line-height: 130%;
}

.blog-attorney-info strong {
    font-size: 130%;
    color: #000;
}

.blog-attorney-info > a, .blog-attorney-info > strong {
    float: right;
    width: 130px;
    overflow: hidden;
    margin-left: 20px;
    display: block;
}

.blog-attorney-info .attorney-data {
    display: block;
    text-align: right;
}

.blog-tags {
    float: left;
    margin-right: 50px;
    width: 500px;
}

.blog-tags span {
    color: #F03D25;
}

.blog-share-links {
    height: 40px;
}

.share-links, .share-links > strong {
    display: block;
    float: left;
}

.share-links a {
    float: left;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    display: block;
    background-image: url(data:image/png;base64,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);
}

.share-links a.facebook-button {
    background-position: -20px 0;
}

.share-links a.google-plus-button {
    background-position: -100px 0;
}

.share-links a.twitter-button {
    background-position: 0 0;
}

.share-links a.linked-in-button {
    background-position: -40px 0;
}

.share-links a span {
    display: none;
}

.post-date {
    float: right;
    display: block;
}

.assigned-attorney {
    padding-top: 50px !important;
}

.assigned-attorney .att {
    float: left;
}

.assigned-attorney p {
    line-height: 150%;
    height: 100%;
}

.assigned-attorney a {
    float: left;
    display: block;
    overflow: hidden;
    margin-right: 20px;
    width: 150px;
    max-height: 150px;
    text-align: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.assigned-attorney a.social {
    float: none;
    display: inline;
    overflow: hidden;
    margin-right: 0;
    width: auto;
    height: auto;
    text-align: left;
    text-decoration: none;
    color: #F03D25;
}

.assigned-attorney a.social:hover {
    text-decoration: underline;
    color: #000;
}

.assigned-attorney a span {
    display: none;
}

.assigned-attorney p {
    text-align: left;
    font-size: 100%;
}

.assigned-attorney strong.n {
    font-size: 130%;
    color: #F03D25;
    text-transform: uppercase;
}

.assigned-attorney strong.p {
    color: #000;
    text-transform: none;
}

.assigned-attorney.multi a, .assigned-attorney.alot a {
    float: none;
    margin: 0 auto;
    clear: both;
}

.assigned-attorney.multi p, .assigned-attorney.alot p {
    text-align: center;
}

.assigned-attorney.multi strong, .assigned-attorney.alot strong {
    display: block;
    clear: both;
}

.assigned-attorney.multi p span, .assigned-attorney.multi p br,
.assigned-attorney.alot p span, .assigned-attorney.alot p br {
    display: none;
}

.assigned-attorney.multi strong.n {
    margin-top: 20px;
}

.assigned-attorney.alot strong.n {
    margin-top: 7%;
}

.assigned-attorney.alot a {
    width: 75%;
}

.assigned-attorney.alot p {
    font-size: 12px;
}

p.thank-you {
    margin-top: 30px;
    padding: 20px;
    border: #F03D25 1px dashed;
    font-size: 130%;
}

p.thank-you a {
    color: #F03D25;
}

p.thank-you a:hover {
    text-decoration: none;
}

.signature-page-content {
    padding: 20px;
}

.signature-page-content p {
    margin-top: 20px;
    font-size: 13px;
    text-align: justify;
}

.signature-page-content ul {
    margin-top: 20px;
    text-align: justify;
}

.signature-page-content b {
    font-weight: 700;
}

.signature-pad {
    border: #ccc 1px solid;
    cursor: url(../images/pen.png), auto;
}

.signature-pad-erase img {
    cursor: pointer;
}

.signature-page-form {
    position: relative;
}

.signature-page-form ul {
    margin: 5px 0;
    color: #F03D25;
}

.signature-page-form form > div {
    margin-top: 20px;
    float: left;
    clear: left;
    width: 400px;
    text-align: left;
}

.signature-page-form .control-choice-overlay {
    left: 0;
    margin-left: 0;
}

.signature-page-form form > div.form-control-signature-pad {
    float: right;
}

.place-signature-notice {
    font-style: italic;
}

.agreement-signed > div p {
    font-size: 120%;
    height: 50px;
}

.agreement-signed p {
    font-size: 13px;
    line-height: 140%;
}

.agreement-signed p strong {
    font-weight: bold;
}

.agreement-signed p a {
    color: #F03D25;
}

.agreement-signed p a:hover {
    text-decoration: none;
}

.agreement-signed p a.print-agreement {
    display: inline-block;
    padding: 15px 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    background-color: #F03D25;
    border-radius: 2px;
    font-size: 130%;
}

span.att {
    color: #F03D25;
}

.cf-image-horizontal {
    display: block;
    clear: both;
    margin: 0 0 20px 0;
}

.cf-image-vertical {
    position: absolute;
    width: 300px;
    height: auto;
    top: 65px;
    right: 100px;
    display: none;
}

.practice-areas-cases {
    position: relative;
}

.practice-areas-case {
    position: relative;
    float: left;
    width: 300px;
    margin: 50px 50px 0 0;
    background-color: #EEE;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.practice-areas-case.item-2 {
    margin-right: 0;
}

.practice-areas-case > div {
    background-color: #FFF;
    padding: 20px;
    height: 180px;
}

.practice-areas-case h2 {
    font-size: 18px;
    color: #000;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    overflow: hidden;
    height: 20px;
}

.practice-areas-case h3 {
    font-size: 14px;
    color: #F03D25;
    font-weight: 400;
    margin: 5px 0 0 0;
}

.practice-areas-case p {
    margin-top: 20px;
    text-align: justify;
    color: #888;
}

.practice-areas-case p.read-more {
    margin: 0;
    text-align: right;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.practice-areas-case a {
    color: #F03D25;
    text-decoration: none;
}

.practice-areas-case a:hover {
    color: #F03D25;
    text-decoration: underline;
}

#sitemap-p {
    text-align: center;
}

.sitemap-content {
    margin-top: 50px;
}

.sitemap-content > li {
    padding-top: 15px;
}

.sitemap-content > li > a {
    font-size: 18px;
    font-family: 'PT Sans Narrow', sans-serif;
    color: #000;
    text-decoration: none;
}

.sitemap-content > li > a:hover {
    text-decoration: underline;
}

.sitemap-content > li > ul {
    padding-top: 5px;
}

.sitemap-content > li > ul a {
    font-size: 15px;
    color: #F03D25;
    text-decoration: none;
}

.sitemap-content > li > ul a:hover {
    text-decoration: underline;
}

.heading-container.sub-heading h1 {
    padding-top: 50px;
    line-height: 1;
}

.heading-container.sub-heading h2 {
    text-align: center;
    color: #FFF;
    font-style: italic;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 18px;
    text-transform: none;
    font-weight: 400;
    margin-top: 15px;
}

.page-content > div.attorney-profile-content {
    padding: 50px 0;
}

.page-content > div.attorney-profile-content.adjust-v {
    padding: 50px 0 0 0;
}

.attorney-profile-content h3 {
    margin: 15px 0;
}

.attorney-profile {
    position: relative;
    margin: 30px 100px 0 100px;
    height: 370px;
}

.adjust-v .attorney-profile {
    height: 340px;
    overflow: hidden;
}

.profile-photo {
    position: absolute;
    left: 180px;
    width: 300px;
    height: 420px;
}

.adjust-v .profile-photo {
    bottom: 0;
}

.profile-info {
    position: absolute;
    display: block;
    right: 180px;
    padding-left: 45px;
    text-align: right;
    font-size: 18px;
    color: #888;
    background-image: url(../images/attorney-profile-icons-2.png);
    background-repeat: no-repeat;
    height: 30px;
}

.profile-phone {
    top: 65px;
    background-position: 0 0;
}

.profile-fax {
    top: 135px;
    background-position: 0 -31px;
}

.profile-mail {
    top: 205px;
    background-position: 0 -61px;
}

.profile-social {
    top: 275px;
}

.profile-social-facebook {
    background-position: 0 -92px;
}
.profile-social-linkedin {
    background-position: 0 -128px;
}
.profile-social-youtube {
    background-position: 0 -160px;
}

.profile-social a {
    text-decoration: none;
    color: #F03D25;
}

.profile-social a:hover {
    text-decoration: underline;
    color: #000;
}

.attorney-profile-details {
    background-color: #EEE;
}

.attorney-profile-details p {
    text-align: justify;
    color: #888;
    line-height: 130%;
    margin: 10px 0 0 0;
}

.attorney-profile-details > div > p {
    margin: 15px 165px 0 165px;
}

.attorney-profile-details p a {
    color: #F03D25;
    text-decoration: none;
}

.attorney-profile-details p a:hover {
    color: #F03D25;
    text-decoration: underline;
}

.attorney-profile-details p strong {
    color: #000;
}

.attorney-profile-education {
    float: left;
    width: 50%;
    clear: left;
    padding: 0 25px 0 165px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.attorney-profile-education.nothing-aside {
    float: none;
    width: 100%;
    clear: none;
}

.attorney-profile-publications, .attorney-profile-awards, .attorney-profile-cases {
    float: right;
    width: 50%;
    clear: right;
    padding: 0 165px 0 25px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.attorney-profile-section {
    text-align: left;
}

.attorney-profile-section h3 {
    font-size: 16px;
    color: #000;
    margin: 25px 0 0 0;
    text-transform: uppercase;
}

.attorney-profile-section ul, .attorney-profile-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.attorney-profile-section ul li, .attorney-profile-details ul li {
    padding-top: 10px;
    color: #888;
}

.attorney-profile-section ul li a, .attorney-profile-details ul li a {
    color: #888;
    text-decoration: none;
}


.attorney-profile-section ul li a:hover, .attorney-profile-details ul li a:hover {
    color: #F03D25;
    text-decoration: underline;
}

.attorney-profile-section ul li::before, .attorney-profile-details ul li::before {
    content: '\2022  ';
    color: #F03D25;
}

.attorney-profile-details > div > ul {
    margin: 0 165px;
}

.attorney-profile-details > div > ul li {
    text-align: left;
}

.page-content > div.praise-from-courts-container {
    position: relative;
    padding-top: 0;
    color: #888;
}

.page-content > div.praise-from-courts-container.pad {
    padding-top: 10px;
}

.praise-from-courts {
    margin: 0 150px;
    color: #2B333B;
    line-height: 130%;
    font-size: 16px;
}

.praise-from-courts:before {
    content: ' ';
    background: url(../images/quote-top-left.png) 0 0 no-repeat;
    padding: 0 10px;
}

.praise-from-courts:after {
    content: ' ';
    background: url(../images/quote-bottom-right.png) right bottom no-repeat;
    padding: 0 10px;
}

.praise-from-courts-signature {
    margin: 15px 100px 0 100px;
    font-style: italic;
}

.praise-from-courts-signature span {
    color: #F03D25;
}

.page-content > div.praise-from-courts-container hr {
    background-color: #eee;
    margin: 30px 100px;
    color: #eee;
    border: 0;
    border-top: #eee 1px solid;
}

.office-highlights {
    background-color: #EEE;
}

.latest-postings-menu {
    position: relative;
    margin: 0 auto;
    width: 600px;
    padding-top: 50px;
}

.latest-postings-menu li {
    position: relative;
    width: 150px;
    background: #FFF;
    border-right: #F03D25 1px solid;
    border-bottom: #F03D25 1px solid;
    border-top: #F03D25 1px solid;
    color: #000;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 0;
    line-height: 1;
    cursor: default;
    height: 40px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}

.latest-postings-menu li.first {
    border-left: #F03D25 1px solid;
}

.latest-postings-menu li.active {
    background: #F03D25;
    color: #FFF;
    border: 0;
}

.highlights-tab {
    display: none;
}

.highlights-tab.active {
    display: block;
}

.back-to-top {
    position: fixed;
    left: 0;
    bottom: 0;
    background: #F03D25;
    cursor: pointer;
    z-index: 65535;
    display: none;
    padding: 5px 10px;
}

.back-to-top a {
    color: #FFF;
    margin: 0;
    outline: none;
}

.back-to-top a:hover {
    text-decoration: none;
}

.page-with-video {
    background-color: #EEE;
    margin-top: 90px;
}

.page-with-video > div {
    box-sizing: border-box;
    font-family: 'PT Sans Narrow', sans-serif;
    padding: 50px 100px;
}

.page-with-video h1 {
    text-align: left;
    font-weight: normal;
    font-size: 36px;
}

#video-container {
    padding-top: 50px;
}

#video-container > iframe {
    display: block;
    margin: 0 auto;
}

.video-content > div {
    text-align: left;
    color: #888;
}

.video-content h2 {
    padding-bottom: 16px;
}

#video-author {
    margin-top: 50px;
    text-align: left;
}

#video-author > p span {
    float: left;
    display: block;
    color: #888;
}

#video-author > p a, #video-author > p strong {
    font-size: 120%;
    color: #000;
    text-decoration: none;
}

#video-author > p a:hover {
    text-decoration: underline;
}

.attorney-profile-videos {
    text-align: left;
    margin: 15px 165px 0 165px;
}

.attorney-profile-videos h3 {
    font-size: 16px;
    color: #000;
    margin: 25px 0 0 0;
    text-transform: uppercase;
}

.attorney-profile-video {
    width: 25%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding-bottom: 20px;
}

.attorney-profile-video h4 {
    font-weight: 400;
    width: 168px;
    margin-top: 5px;
}

.attorney-profile-videos-container {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    flex-wrap: wrap;
}

.attorney-badges {
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    margin: 30px 165px 0 165px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.attorney-badges > div {
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
}

.attorney-badges > div > div, .attorney-badges > div > a, .attorney-badges > div > img {
    align-self: center;
    -webkit-align-self: center;
}

.announcements {
    margin-top: 90px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    background: rgba(238, 238, 238, 0.9);
}

.announcements > div {
    position: relative;
    z-index: 1000;
    padding: 10px 20px;
    text-align: center;
    margin: 8px 10%;
    background: #fff3d9;
    box-shadow: #2B333B3D -1px 1px 5px;
    align-self: center;
    -webkit-align-self: center;
    font-size: 130%;
    flex-grow: 1;
}

.announcements a {
    color: #F03D25;
}

.announcements a:hover {
    text-decoration: none;
}

.slide.has-announcements {
    margin-top: 0;
}

.indent {
    padding-left: 30px;
    line-height: 200%;
}

.footer-images-container {
    display: flex;
    flex-direction: column;
}

.footer-images-left {
    text-align: center;
}

.footer-images-right {
    text-align: center;
    flex-grow: 1;
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.attorney-data a {
    text-decoration: none;
    color: #F03D25;
}

.attorney-data a:hover {
    text-decoration: underline;
    color: #000;
}

.table-container {
    margin-top: 15px;
}

.table-container table th {
    color: #000;
    font-weight: normal;
}

.table-container table td, .table-container table th {
    padding: 7px 0;
}

.take-action-form form > div.form-control-stock {

}

.take-action-form form > div.form-control-stock .stock-purchases,
.take-action-form form > div.form-control-stock .stock-sales {
    text-align: left;
    padding: 10px;
    border: #CCC 1px dashed;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.take-action-form form > div.form-control-stock p {
    font-weight: bold;
    position: relative;
}

.take-action-form form > div.form-control-stock p span {
    position: absolute;
    top: 0;
    right: 0;
    color: #F03D25;
    cursor: pointer;
}

.take-action-form form > div.form-control-stock p span:hover {
    text-decoration: underline;
}

.take-action-form form > div.form-control-stock .stock-row {
    margin-top: 10px;
}

.take-action-form form > div.form-control-stock .stock-row select {
    width: 100%;
    box-sizing: border-box;
}

.take-action-form form > div.form-control-stock .stock-elements {
    display: flex;
    flex-direction: column;
}

.take-action-form form > div.form-control-stock .stock-element {
    box-sizing: border-box;
    padding-top: 5px;
}

.take-action-form form > div.form-control-stock .stock-element input {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
}

.take-action-form form > div.form-control-stock .stock-row a {
    color: #F03D25;
    text-decoration: none;
}
.take-action-form form > div.form-control-stock .stock-row a:hover {
    color: #000;
}

#ui-datepicker-div {
    z-index: 999 !important;
}

.mt-8 {
    margin-top: 1rem;
}
