/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* @group Default HTML5 Boilerplate */

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: blue. */
::-moz-selection{ background: #6b7e99; color:#fff; text-shadow: none; }
::selection { background:#6b7e99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;  
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


/* @end */

/* @group Primary Styles */

/* Primary Styles
   Author: Scott Orchard
*/

@font-face {font-family: 'NimbusSanNovCon-Bol';src: url('../webfonts/2E3951_0_0.eot');src: url('../webfonts/2E3951_0_0.eot?#iefix') format('embedded-opentype'),url('../webfonts/2E3951_0_0.woff2') format('woff2'),url('../webfonts/2E3951_0_0.woff') format('woff'),url('../webfonts/2E3951_0_0.ttf') format('truetype');}

body {
    background: url(../images/background.jpg) center 0 no-repeat;
    border-top: 5px solid #365783;
}

a,
a:active,
a:visited { 
    color: #5c998b;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover {
    color: #00285d;
}

#container {
    width: 960px;
    margin: 0 auto;
}

#container header {
    width: 960px;
    height: 200px;
}

/* @group Apply Login Language */

#apply-login-language {
    float: right;
    margin-right: 5px;
}

#apply-login-language-links {
    width: 353px;
    height: 32px;
    padding: 0 5px;
    background: url(../images/nav/apply-login-language.png) 0 0 no-repeat;
}

#apply-login-language-links li {
    display: inline;
    float: left;
}

#apply-btn {
    display: block;
    background: url(../images/nav/apply-login-btn.png) 0 0 no-repeat;
    width: 97px;
    height: 27px;
    margin: 0 5px 0 5px;
    text-indent: -9999px;
}

#login-btn {
    display: block;
    background: url(../images/nav/apply-login-btn.png) -97px 0 no-repeat;
    width: 104px;
    height: 27px;
    margin: 0 5px 0 0;
    text-indent: -9999px;
}

#apply-btn:active {
    background-position: 0 -27px;
    margin-top: 1px;
}

#login-btn:active {
    background-position: -97px -27px;
    margin-top: 1px;
}

#apply-btn:hover {
    background-position: 0 -27px;
}

#login-btn:hover {
    background-position: -97px -27px;
}

#apply-login-language-links li select {
    width: 130px;
    margin: 5px 0;
    font-size: 14px;
}



/* @end */

/* @group Apply Login Language Spanish */

#apply-login-language-sp {
    float: right;
    margin-right: 5px;
}

#apply-login-language-links-sp {
    width: 410px;
    height: 32px;
    padding: 0 5px;
    background: url(../images/nav/apply-login-language-spanish.png) 0 0 no-repeat;
}

#apply-login-language-links-sp li {
    display: inline;
    float: left;
}

#apply-btn-sp {
    display: block;
    background: url(../images/nav/apply-login-btn-spanish.png) 0 0 no-repeat;
    width: 115px;
    height: 27px;
    margin: 0 5px 0 5px;
    text-indent: -9999px;
}

#login-btn-sp {
    display: block;
    background: url(../images/nav/apply-login-btn-spanish.png) -115px 0 no-repeat;
    width: 143px;
    height: 27px;
    margin: 0 5px 0 0;
    text-indent: -9999px;
}

#apply-btn-sp:active {
    background-position: 0 -27px;
    margin-top: 1px;
}

#login-btn-sp:active {
    background-position: -115px -27px;
    margin-top: 1px;
}

#apply-btn-sp:hover {
    background-position: 0 -27px;
}

#login-btn-sp:hover {
    background-position: -115px -27px;
}

#apply-login-language-links-sp li select {
    width: 130px;
    margin: 5px 0;
    font-size: 14px;
}



/* @end */

/* @group Apply Login Language French */

#apply-login-language-fr {
    float: right;
    margin-right: 5px;
}

#apply-login-language-links-fr {
    width: 487px;
    height: 32px;
    padding: 0 5px;
    background: url(../images/nav/apply-login-language-french.png) 0 0 no-repeat;
}

#apply-login-language-links-fr li {
    display: inline;
    float: left;
}

#apply-btn-fr {
    display: block;
    background: url(../images/nav/apply-login-btn-french.png) 0 0 no-repeat;
    width: 185px;
    height: 27px;
    margin: 0 5px 0 5px;
    text-indent: -9999px;
}

#login-btn-fr {
    display: block;
    background: url(../images/nav/apply-login-btn-french.png) -185px 0 no-repeat;
    width: 152px;
    height: 27px;
    margin: 0 5px 0 0;
    text-indent: -9999px;
}

#apply-btn-fr:active {
    background-position: 0 -27px;
    margin-top: 1px;
}

#login-btn-fr:active {
    background-position: -185px -27px;
    margin-top: 1px;
}

#apply-btn-fr:hover {
    background-position: 0 -27px;
}

#login-btn-fr:hover {
    background-position: -185px -27px;
}

#apply-login-language-links-fr li select {
    width: 130px;
    margin: 5px 0;
    font-size: 14px;
}



/* @end */

#logo {
    background: url(../images/jdfactors-logo.png) 0 0 no-repeat;
    text-indent: -9999px;
    width: 125px;
    height: 145px;
    display: block;
    float: left;
    margin: 10px 0 5px 25px;
}

#logo a {
    width: 125px;
    height: 145px;
    display: block;
}

#tagline {
    background: url(../images/jdfactors-tagline.png) 0 -5px  no-repeat;
    text-indent: -9999px;
    width: 440px;
    height: 100px;
    display: block;
    float: left;
    margin-top: 50px;
}

#tagline-sp {
    background: url(../images/jdfactors-tagline-spanish.png) 0 -5px  no-repeat;
    text-indent: -9999px;
    width: 440px;
    height: 100px;
    display: block;
    float: left;
    margin-top: 28px;
}

#tagline-fr {
    background: url(../images/jdfactors-tagline-french.png) 0 -5px  no-repeat;
    text-indent: -9999px;
    width: 440px;
    height: 100px;
    display: block;
    float: left;
    margin-top: 28px;
}

/* @group Navigation */

#navigation {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
    background: url(../images/nav/navigation.png) 0 0 no-repeat;
    margin: 0 10px;
}

#navigation ul {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
}

#navigation ul li,
#navigation ul li a {
    float: left;
    display: inline;
    font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    /*padding: 4px;*/
    letter-spacing: 1px;
    text-shadow: 0 1px 1px #999;
    text-align: center;
}

#navigation ul li a {
    background: url(../images/nav/navigation.png) 0 0 no-repeat;
    height: 20px;
}

#navigation #home a {
    width: 54px;
    padding: 9px 11px 10px 12px;
    background-position: 0 0;
}
#navigation #home a:hover {
    background-position: 0 -40px;
}

#navigation #about a {
    width: 90px;
    padding: 9px 11px 10px;
    background-position: -77px 0;
}
#navigation #about a:hover {
    background-position: -77px -40px;
}

#navigation #factoring a {
    width: 149px;
    padding: 9px 11px 10px;
    background-position: -189px 0;
}
#navigation #factoring a:hover {
    background-position: -189px -40px;
}

#navigation #services a {
    width: 125px;
    padding: 9px 11px 10px;
    background-position: -360px 0;
}
#navigation #services a:hover {
    background-position: -360px -40px;
}

#navigation #management a {
    width: 176px;
    padding: 9px 11px 10px;
    background-position: -507px 0;
}
#navigation #management a:hover {
    background-position: -507px -40px;
}

#navigation #referrals a {
    width: 89px;
    padding: 9px 11px 10px;
    background-position: -705px 0;
}
#navigation #referrals a:hover {
    background-position: -705px -40px;
}

#navigation #contact a {
    width: 100px;
    padding: 9px 13px 10px 11px;
    background-position: -816px 0;
}
#navigation #contact a:hover {
    background-position: -816px -40px;
}

#navigation ul li {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
}

#navigation li ul {
    z-index: 100;
    color: #333;    
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
}

#navigation li ul li a {
    color: #333;
}

#navigation li:hover ul,
#navigation li.sfhover ul,
#navigation ul li:hover > ul { 
    background: #aac6bd;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    display: block;
}


#navigation li#about:hover ul { 
    background: #aac6bd;
    width: 112px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation li#factoring:hover ul { 
    background: #aac6bd;
    width: 172px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation li#services:hover ul { 
    background: #aac6bd;
    width: 148px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation li#referrals:hover ul { 
    background: #aac6bd;
    width: 112px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation li:hover ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    -moz-transition: color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#navigation li#about:hover ul li a { 
    width: 90px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation li#factoring:hover ul li a { 
    width: 150px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation li#services:hover ul li a { 
    width: 126px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation li#management:hover ul li a { 
    width: 176px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation li#referrals:hover ul li a { 
    width: 90px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation li#about:hover ul li a:hover,
#navigation li#factoring:hover ul li a:hover,
#navigation li#services:hover ul li a:hover,
#navigation li#management:hover ul li a:hover,
#navigation li#referrals:hover ul li a:hover { 
    color: #fff;
    background: #8cb2a5;
}

/* @end */

/* @group Navigation Spanish */

#navigation-sp {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
    background: url(../images/nav/navigation-spanish.png) 0 0 no-repeat;
    margin: 0 10px;
}

#navigation-sp ul {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
}

#navigation-sp ul li,
#navigation-sp ul li a {
    float: left;
    display: inline;
    font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    /*padding: 4px;*/
    letter-spacing: 1px;
    text-shadow: 0 1px 1px #999;
    text-align: center;
}

#navigation-sp ul li a {
    background: url(../images/nav/navigation-spanish.png) 0 0 no-repeat;
    height: 20px;
}

#navigation-sp #home a {
    width: 52px;
    padding: 9px 11px 10px;
    background-position: 0 0;
}
#navigation-sp #home a:hover {
    background-position: 0 -40px;
}

#navigation-sp #about a {
    width: 137px;
    padding: 9px 11px 10px;
    background-position: -74px 0;
}
#navigation-sp #about a:hover {
    background-position: -74px -40px;
}

#navigation-sp #factoring a {
    width: 168px;
    padding: 9px 11px 10px;
    background-position: -233px 0;
}
#navigation-sp #factoring a:hover {
    background-position: -233px -40px;
}

#navigation-sp #services a {
    width: 84px;
    padding: 9px 11px 10px;
    background-position: -423px 0;
}
#navigation-sp #services a:hover {
    background-position: -423px -40px;
}

#navigation-sp #management a {
    width: 132px;
    padding: 9px 11px 10px;
    background-position: -529px 0;
}
#navigation-sp #management a:hover {
    background-position: -529px -40px;
}

#navigation-sp #referrals a {
    width: 105px;
    padding: 9px 11px 10px;
    background-position: -683px 0;
}
#navigation-sp #referrals a:hover {
    background-position: -683px -40px;
}

#navigation-sp #contact a {
    width: 108px;
    padding: 9px 11px 10px;
    background-position: -810px 0;
}
#navigation-sp #contact a:hover {
    background-position: -810px -40px;
}

#navigation-sp li ul {
    position: absolute;
    left: -9999px;
    /*top: 200px;*/
    z-index: 100;
    color: #333;
}

#navigation-sp li ul li a {
    color: #333;
}

#navigation-sp li:hover ul,
#navigation-sp li.sfhover ul { 
    background: #aac6bd;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    display: block;
    left: auto;
    margin-top: 39px;
}


#navigation-sp li#about:hover ul { 
    background: #aac6bd;
    width: 159px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-sp li#factoring:hover ul { 
    background: #aac6bd;
    width: 189px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-sp li#services:hover ul { 
    background: #aac6bd;
    width: 124px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-sp li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-sp li#referrals:hover ul { 
    background: #aac6bd;
    width: 162px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-sp li:hover ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    -moz-transition: color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#navigation-sp li#about:hover ul li a { 
    width: 137px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-sp li#factoring:hover ul li a { 
    width: 167px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-sp li#services:hover ul li a { 
    width: 102px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-sp li#management:hover ul li a { 
    width: 176px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-sp li#referrals:hover ul li a { 
    width: 140px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-sp li#about:hover ul li a:hover,
#navigation-sp li#factoring:hover ul li a:hover,
#navigation-sp li#services:hover ul li a:hover,
#navigation-sp li#management:hover ul li a:hover,
#navigation-sp li#referrals:hover ul li a:hover { 
    color: #fff;
    background: #8cb2a5;
}

/* @end */

/* @group Navigation French */

#navigation-fr {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
    background: url(../images/nav/navigation-french.png) 0 0 no-repeat;
    margin: 0 10px;
}

#navigation-fr ul {
    float: left;
    width: 940px;
    height: 40px;
    display: inline;
}

#navigation-fr ul li,
#navigation-fr ul li a {
    float: left;
    display: inline;
    font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    /*padding: 4px;*/
    letter-fracing: 1px;
    text-shadow: 0 1px 1px #999;
    text-align: center;
}

#navigation-fr ul li a {
    background: url(../images/nav/navigation-french.png) 0 0 no-repeat;
    height: 20px;
}

#navigation-fr #home a {
    width: 64px;
    padding: 9px 11px 10px;
    background-position: 0 0;
}
#navigation-fr #home a:hover {
    background-position: 0 -40px;
}

#navigation-fr #about a {
    width: 137px;
    padding: 9px 11px 10px;
    background-position: -86px 0;
}
#navigation-fr #about a:hover {
    background-position: -86px -40px;
}

#navigation-fr #factoring a {
    width: 202px;
    padding: 9px 11px 10px;
    background-position: -245px 0;
}
#navigation-fr #factoring a:hover {
    background-position: -245px -40px;
}

#navigation-fr #services a {
    width: 100px;
    padding: 9px 11px 10px;
    background-position: -469px 0;
}
#navigation-fr #services a:hover {
    background-position: -469px -40px;
}

#navigation-fr #management a {
    width: 123px;
    padding: 9px 11px 10px;
    background-position: -591px 0;
}
#navigation-fr #management a:hover {
    background-position: -591px -40px;
}

#navigation-fr #referrals a {
    width: 68px;
    padding: 9px 11px 10px;
    background-position: -736px 0;
}
#navigation-fr #referrals a:hover {
    background-position: -736px -40px;
}

#navigation-fr #contact a {
    width: 92px;
    padding: 9px 11px 10px;
    background-position: -826px 0;
}
#navigation-fr #contact a:hover {
    background-position: -826px -40px;
}

#navigation-fr li ul {
    position: absolute;
    left: -9999px;
    /*top: 200px;*/
    z-index: 100;
    color: #333;
}

#navigation-fr li ul li a {
    color: #333;
}

#navigation-fr li:hover ul,
#navigation-fr li.sfhover ul { 
    background: #aac6bd;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    display: block;
    left: auto;
    margin-top: 39px;
}


#navigation-fr li#about:hover ul { 
    background: #aac6bd;
    width: 159px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-fr li#factoring:hover ul { 
    background: #aac6bd;
    width: 223px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-fr li#services:hover ul { 
    background: #aac6bd;
    width: 122px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-fr li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-fr li#referrals:hover ul { 
    background: #aac6bd;
    width: 136px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

#navigation-fr li:hover ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-fracing: 0;
    text-align: left;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease;
    -moz-transition: color 0.3s ease, background-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#navigation-fr li#about:hover ul li a { 
    width: 137px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-fr li#factoring:hover ul li a { 
    width: 200px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-fr li#services:hover ul li a { 
    width: 100px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-fr li#management:hover ul li a { 
    width: 176px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-fr li#referrals:hover ul li a { 
    width: 114px;
    height: 14px;
    padding: 6px;
    margin: 6px 5px 0;
    background: #aac6bd;
}

#navigation-fr li#about:hover ul li a:hover,
#navigation-fr li#factoring:hover ul li a:hover,
#navigation-fr li#services:hover ul li a:hover,
#navigation-fr li#management:hover ul li a:hover,
#navigation-fr li#referrals:hover ul li a:hover { 
    color: #fff;
    background: #8cb2a5;
}

/* @end */

#main {
    margin: 20px 10px 0;
}

/* @group Hero Container */

#main header {
    width: 930px;
    height: 270px;
    margin-bottom: 20px;
    border: 5px solid #fff;
}

.slideshow {
    width: 655px;
    height: 270px;
    float: left;
    border-right: 5px solid #fff;
    overflow: hidden;
}

.slideshow-message {
    width: 270px;
    height: 270px;
    float: left;
    background: url(../images/slideshow/slideshow-message.jpg) 0 0 no-repeat;
}

.slideshow-message p {
    font: 26px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
    color: #00285d;
    margin: 165px 0 0 20px;
}

/* @end */

/* @group Home Content */

#home-content {
    width: 540px;
    margin-left: 60px;
    padding-right: 60px;
    float: left;
}

#home-content h1 {
    text-transform: uppercase;
    color: #00285d;
    margin-bottom: 12px;
    font: 24px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#home-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #333333;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#home-content .intro-copy {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #619080;
    font-style: italic;
}

#home-sidebar {
    float: left;
    width: 270px;
    padding-left: 10px;
}

/* @group Social Media Buttons */

#social-media-buttons {
    width: 208px;
    margin: 35px auto
}

#social-media-buttons li {
    list-style: none;
}

#social-media-buttons li a {
    width: 208px;
    height: 58px;
    display: block;
    text-indent: -9999px;
    margin: 5px 0;
}

.facebook-btn a {
    background: url(../images/social-media-btn.png) 0 0 no-repeat;
}

.facebook-btn a:active {
    background-position: 0 -58px;
    /*margin-top: 6px;*/
}

.facebook-btn a:hover {
    background-position: 0 -58px;
}

.twitter-btn a {
    background: url(../images/social-media-btn.png) -208px 0 no-repeat;
}

.twitter-btn a:active {
    background-position: -208px -58px;
    /*margin-top: 6px;*/
}

.twitter-btn a:hover {
    background-position: -208px -58px;
}

.linkedin-btn a {
    background: url(../images/social-media-btn.png) -416px 0 no-repeat;
}

.linkedin-btn a:active {
    background-position: -416px -58px;
    /*margin-top: 6px;*/
}

.linkedin-btn a:hover {
    background-position: -416px -58px;
}

/* @end */

/* @group Social Media Buttons Spanish */

#social-media-buttons-sp {
    width: 208px;
    margin: 35px auto
}

#social-media-buttons-sp li {
    list-style: none;
}

#social-media-buttons-sp li a {
    width: 208px;
    height: 58px;
    display: block;
    text-indent: -9999px;
    margin: 5px 0;
}

.facebook-btn-sp a {
    background: url(../images/social-media-btn-spanish.png) 0 0 no-repeat;
}

.facebook-btn-sp a:active {
    background-position: 0 -58px;
    /*margin-top: 6px;*/
}

.facebook-btn-sp a:hover {
    background-position: 0 -58px;
}

.twitter-btn-sp a {
    background: url(../images/social-media-btn-spanish.png) -208px 0 no-repeat;
}

.twitter-btn-sp a:active {
    background-position: -208px -58px;
    /*margin-top: 6px;*/
}

.twitter-btn-sp a:hover {
    background-position: -208px -58px;
}

.linkedin-btn-sp a {
    background: url(../images/social-media-btn-spanish.png) -416px 0 no-repeat;
}

.linkedin-btn-sp a:active {
    background-position: -416px -58px;
    /*margin-top: 6px;*/
}

.linkedin-btn-sp a:hover {
    background-position: -416px -58px;
}

/* @end */

/* @group Social Media Buttons French */

#social-media-buttons-fr {
    width: 208px;
    margin: 35px auto
}

#social-media-buttons-fr li {
    list-style: none;
}

#social-media-buttons-fr li a {
    width: 208px;
    height: 58px;
    display: block;
    text-indent: -9999px;
    margin: 5px 0;
}

.facebook-btn-fr a {
    background: url(../images/social-media-btn-french.png) 0 0 no-repeat;
}

.facebook-btn-fr a:active {
    background-position: 0 -58px;
    /*margin-top: 6px;*/
}

.facebook-btn-fr a:hover {
    background-position: 0 -58px;
}

.twitter-btn-fr a {
    background: url(../images/social-media-btn-french.png) -208px 0 no-repeat;
}

.twitter-btn-fr a:active {
    background-position: -208px -58px;
    /*margin-top: 6px;*/
}

.twitter-btn-fr a:hover {
    background-position: -208px -58px;
}

.linkedin-btn-fr a {
    background: url(../images/social-media-btn-french.png) -416px 0 no-repeat;
}

.linkedin-btn-fr a:active {
    background-position: -416px -58px;
    /*margin-top: 6px;*/
}

.linkedin-btn-fr a:hover {
    background-position: -416px -58px;
}

/* @end */

/* @group Membership Icons */

#membership-icons {
    width: 160px;
    margin: 0 auto;
}

#membership-icons li {
    list-style: none;
}

#membership-icons li a {
    width: 160px;
    height: 55px;
    display: block;
    text-indent: -9999px;
    margin: 0 10px 15px;
}

.cfa-logo a {
    background: url(../images/memberships.png) 0 0 no-repeat;
}

.ifa-logo a {
    background: url(../images/memberships.png) 0 -55px no-repeat;
}

.afa-logo a {
    background: url(../images/memberships.png) 0 -110px no-repeat;
}

/* @end */



/* @end */

/* @group Internal Content */

#internal-content {
    width: 580px;
    padding: 30px 20px 20px;
    float: left;
    background: #fff;
    min-height: 400px;
}

#internal-content h1 {
    text-transform: uppercase;
    color: #00285d;
    margin-bottom: 10px;
    font: 24px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#internal-content h2 {
    text-transform: uppercase;
    color: #00285d;
    margin: 0 0 6px 0;
    font: 20px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#internal-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #333333;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#internal-content .intro-copy {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #619080;
    font-style: italic;
}

#internal-content .spacer {
    height: 100px;
}

#internal-content .spacer-medium {
    height: 200px;
}

#internal-content .spacer-large {
    height: 300px;
}

#internal-content ul {
    margin: 16px 0 16px 20px;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#internal-content li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
    color: #6b7e99;
}

#internal-content ul.pdf-download {
    height: 60px;
    margin: 16px 0 8px 0;
    list-style-type: none;
}
#internal-content ul.pdf-download span.application-title {
    width: 270px;
    height: 30px;
    padding: 3px 0 0 0;
    display: block;
    float: left;
}

#internal-content ul.pdf-download .pdf-icon {
    width: 64px;
    height: 30px;
    background: url(../images/pdf-icon.png) 0 0 no-repeat;
    padding: 3px 0 0 30px;
    display: block;
    float: left;
}

#internal-content p.small-notes {
    font-size: 12px;
    line-height: 16px;
    float: left;
    font-style: italic;
}

#internal-sidebar {
    float: left;
    width: 280px;
    position: relative;
}

#internal-sidebar ul {
    margin: 68px 0 0 55px;
}

#internal-navigation li {
    width: 200px;
    height: 30px;
    list-style: none;
    margin: 0 0 12px 0;
}

#internal-navigation li a {
    width: 188px;
    height: 27px;
    display: block;
    padding: 9px 0 3px 20px;
    background: url(../images/nav/internal-navigation.png) 0 0 no-repeat;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px #999;
}

#internal-navigation li a:hover,
#internal-navigation li.selected a {
    background: url(../images/nav/internal-navigation.png) 0 -38px no-repeat;
    text-decoration: none;
}

#internal-bottom-icons {
    float: left;
    width: 150px;
    height: 85px;
    position: relative;
    top: -100px;
    left: -210px;
    margin-bottom: -100px;
    /*margin: -100px 0 0 -300px;*/
}

ul#social-media-icons {
    width: 130px;
    height: 42px;
    margin: 0 0 0 10px;
}

ul#membership-icons-small {
    width: 150px;
    height: 25px;
    margin: 0 0 15px 0;
}

#social-media-icons li,
#membership-icons-small li {
    list-style: none;
    float: left;
}

#social-media-icons li a {
    width: 32px;
    height: 32px;
    display: block;
    text-indent: -9999px;
    margin: 5px;
}

.facebook-icon a {
    background: url(../images/social-media-icon.png) 0 0 no-repeat;
}

.twitter-icon a {
    background: url(../images/social-media-icon.png) -32px 0 no-repeat;
}

.linkedin-icon a {
    background: url(../images/social-media-icon.png) -64px 0 no-repeat;
}

#membership-icons-small li a {
    width: 50px;
    height: 25px;
    display: block;
    text-indent: -9999px;
    margin: 0 0px 0px;
    float: left;
}

.cfa-logo-sm a {
    background: url(../images/memberships-small.png) 0 0 no-repeat;
}

.ifa-logo-sm a {
    background: url(../images/memberships-small.png) -50px 0 no-repeat;
}

.afa-logo-sm a {
    background: url(../images/memberships-small.png) -100px 0 no-repeat;
}

/* @end */

 
/* @group Contact Form */

.formular {
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#form p {
    font-size: 14px;
    line-height: 18px;
}

#form .form-notes {
    font-size: 12px;
    line-height: 16px;
    float: left;
    margin-left: 150px;
    font-style: italic;
}

#form .form-notes-important {
    font-size: 12px;
    line-height: 16px;
    float: left;
    margin-left: 150px;
    font-weight: bold;
    font-style: italic;
    color: #FF0000;
}

#form li {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
    color: #6b7e99;
}

/*fieldset {
    margin: 20px 0;
}*/

#form.contact-page {
    margin: 20px 0 0 0;
}

.fieldset {
    position: relative;
    padding: 20px;
    border: 1px solid #6b7e99;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.fieldset.broker,
.fieldset.weblinks,
.fieldset.what-we-do {
    position: relative;
    padding: 20px;
    margin-top: 40px;
    border: 1px solid #6b7e99;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; 
}

.apply-now fieldset {
    position: relative;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #6b7e99;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.apply-now fieldset fieldset {
    position: relative;
    padding: 20px;
    margin: 10px 0;
    border: 1px solid #8cb2a5;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

legend span {
    position: absolute;
    /*width: 130px;*/
    color: #6b7e99;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    top: -1em; 
    left: 1em;
    padding: 3px 5px;
    background: #fff;
}

.inner-fieldset legend span {
    position: static;
    /*width: 130px;*/
    color: #6b7e99;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    top: -1em; 
    left: 1em;
    padding: 3px 5px;
    background: #fff;
}

.second-inner-fieldset legend span {
    position: static;
    /*width: 130px;*/
    color: #8cb2a5;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    top: -1em;
    left: 1em;
    padding: 3px 5px;
    background: #fff;
}

label {
    display: block;
    color: #6b7e99;
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    height: 18px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-text-size-adjust: none;
    float: left;
    width: 140px;
    text-align: right;
    margin: 5px 10px 5px 0;
}

.broker label,
.weblinks label,
.what-we-do label {
    width: 170px;
}

.contact-page label {
    width: 180px;
}

.apply-now label {
    width: 240px;
}

label.two-line {
    height: 28px;
    margin-top: -2px;
}

label.own-label {
    width: 30px;
    text-align: left;
    margin: -5px 0 10px 250px;
    float: left;
}
.radio.own-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -5px 0 10px 10px;
    float: left;
}
label.rent-label {
    width: 30px;
    text-align: left;
    margin: -5px 0 10px 10px;
    float: left;
}
.radio.rent-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -5px 80px 10px 10px;
    float: left;
}

label.yes-label {
    width: 25px;
    text-align: left;
    margin: 10px 0 10px 0px;
    float: left;
}
.radio.yes-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: 10px 0 10px 10px;
    float: left;
}
label.no-label {
    width: 20px;
    text-align: left;
    margin: 10px 0 10px 10px;
    float: left;
}
.radio.no-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: 10px 100px 10px 10px;
    float: left;
}

.select {
    font-size: 14px;
    line-height: 16px;
    float: left;
    display: block;
    width: 230px;
    margin: 5px 0 10px 0;
    height: 20px;
}

.broker .select,
.weblinks .select,
.what-we-do .select {
    font-size: 16px;
    float: left;
    display: block;
    width: 230px;
    margin: 5px 0 10px 0;
}

.apply-now .select {
    font-size: 14px;
    float: left;
    display: block;
    width: 230px;
    margin: 5px 0 10px 0;
}

#signature-check {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 20px;
    height: 30px;
    margin-right: 220px;
    margin: 2px 0 2px 0;
}

#remember {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 220px;
    margin: 4px 220px 2px 0;
}

span.captcha-image-text {
    width: 240px;
    height: 28px;
    margin: 0 0 10px;
    padding: 3px 4px 3px 0;
    float: left;
}

span.captcha-image-text img {
    height: 18px;
    padding: 3px 4px;
    float: left;
}

span.captcha-image-text a {
    margin: 0 0 10px;
    padding: 3px 4px;
}

#form .required {
    margin: 0 5px;
    font-size: 16px;
    color: #619080;
}

#form fieldset fieldset .required {
    margin: 0 2px 0 5px;
    font-size: 16px;
    color: #619080;
}

#form .required-text {
    margin: 0;
    color: #619080;
}

#form .required-select {
    margin: 5px 145px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

#form.client .required-select {
    margin: 5px 145px 11px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

#form.weblinks .required-select,
#form.what-we-do .required-select {
    margin: 5px 105px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

#form.apply-now .required-select {
    margin: 5px 45px 8px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

#form.apply-now .required-checkbox {
    margin: 2px 260px 15px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

#form .required-textarea {
    margin: 5px 105px 0 5px;
    font-size: 16px;
    color: #619080;
    float: right;
}

input.input-text, input.password, textarea {
    font-size: 16px;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
    width: 220px;
    height: 18px;
}
 
input.input-text, input.password, textarea {
    display: ;
    background: transparent url(/images/input-bg.png) no-repeat 0 0;
    margin: 0 0 10px;
    padding: 3px 4px;
    border: 1px solid #bbb;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
    font: 12px/18px;
    text-shadow: 0 0 1px #fff;
    color: #999;
    position: relative;
    z-index: 2;
    line-height: 18px;
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}
 
form input.input-text:focus, form textarea:focus {
    outline: none;
    border-color: #999;
    color: #333;
    padding: 2px 3px;
    border: 2px solid #6b7e99;
}

#form textarea {
    height: 66px;
}
 
.button {
    background: #222 url(../images/overlay-button.png) repeat-x 0 0;
    display: inline-block;
    padding: 5px 15px 6px;
    color: #fff !important;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(0,0,0,0.25);
    position: relative;
    cursor: pointer;
    overflow: visible;
    width: auto;
    float: left;
    margin-left: 180px;
}

#reset.button {
    margin-left: 20px;
}
 
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
 
.button:hover {
    background-color: #111;
    color: #fff;
    text-decoration: none;
}
 
.button:active {
    top: 1px;
}
 
.small.button {
    font-size: 14px;
}
 
.secondary.button {
    background: #fff url(../images/36px-black.png) repeat-x 0 0;
    color: #555 !important;
    text-shadow: 0 1px 1px rgba(255,255,255,0.5);
    border: 1px solid #bbb;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
 
.secondary.button:hover {
    background-color: #c4cfdf;
    color: #444 !important;
    border-color: #999
}
 
.super.button {
    background-image: url(../images/36px-blended.png);
    padding: 5px 14px 6px;
    border: 1px solid rgba(0,0,0,.25);
    border-bottom-color: rgba(0,0,0,.35);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
 
.small.super.button {
    font-size: 14px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.button.client {
    margin-left: 150px;
}

.button.apply-now {
    margin-left: 100px;
}

.button.contact-page {
    margin-left: 190px;
}

/* @end */

/* @group Map Content */

#map-content {
    width: 560px;
    padding: 30px 20px 20px;
    float: left;
    background: #fff;
    margin: 0 0 0 40px;
}

#map-content h1 {
    text-transform: uppercase;
    color: #00285d;
    margin-bottom: 10px;
    font: 24px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#map-content h2 {
    text-transform: uppercase;
    color: #00285d;
    margin: 0 0 6px 0;
    font: 20px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#map-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 16px;
    color: #333333;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#map-content .intro-copy {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #619080;
    font-style: italic;
}

#jdfactors-map {
    width: 520px;
    height: 480px;
    margin: 20px;
}

#map-sidebar {
    float: left;
    width: 260px;
    position: relative;
    margin: 36px 0 0 40px;
}

#map-sidebar h2 {
    text-transform: uppercase;
    color: #00285d;
    margin: 0 0 6px 0;
    font: 16px "NimbusSanNovCon-Bol", "HelveticaNeueBoldCondensed", "HelveticaNeue-Bold-Condensed", "Helvetica Neue Bold Condensed", Helvetica, Arial, Geneva, sans-serif;
    letter-spacing: 1px;
}

#map-sidebar p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 14px;
    color: #333333;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
}

#map-sidebar a {
    color: #5c998b;
    -webkit-transition: color 0.3s ease;
}

#map-sidebar a:hover {
    color: #00285d;
}

.office-photo-wrap {
    width: 250px;
    height: 170px;
    margin: 0 0 20px -10px;
    border: 5px solid #fff;
    z-index: 2;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.office-photo img {
    
}

.google-map-wrap {
    width: 250px;
    height: 145px;
    margin: 0 0 20px -10px;
    border: 5px solid #fff;
    z-index: 10;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.25);
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.google-map {
    
}

.google-map-shadow,
.office-photo-shadow {
    display: none;
}

.map_canvas {
    width: 250px;
    height: 145px;
}

.maine-office,
.bc-office,
.boston-office,
.norcal-office, 
.calgary-office,
.southwest-office,
.houston-office, 
.arkansas-office, 
.florida-office, 
.tampa-office, 
.southeast-office, 
.south-office,
.chicago-office, 
.northeast-office, 
.toronto-office, 
.quebec-office,
.tennessee-office {
    display: none;
}

.corporate-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 380px 0 0 160px;
    cursor: pointer;
}

.southwest-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 390px 0 0 170px;
    cursor: pointer;
}

.norcal-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 339px 0 0 150px;
    cursor: pointer;
}

.bc-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 243px 0 0 168px;
    cursor: pointer;
}

.calgary-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 242px 0 0 216px;
    cursor: pointer;
}

.arkansas-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 390px 0 0 335px;
    cursor: pointer;
}

.florida-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 420px 0 0 400px;
    cursor: pointer;
}

.tampa-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 440px 0 0 420px;
    cursor: pointer;
}

.tennessee-marker 
{
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 369px 0 0 392px;
    cursor: pointer;
}

.chicago-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 320px 0 0 360px;
    cursor: pointer;
}

.northeast-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 320px 0 0 445px;
    cursor: pointer;
}

.houston-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 428px 0 0 318px;
    cursor: pointer;
}

.maine-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 275px 0 0 465px;
    cursor: pointer;
}

.toronto-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 294px 0 0 409px;
    cursor: pointer;
}

.quebec-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 270px 0 0 435px;
    cursor: pointer;
}

.qbc-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 267px 0 0 437px;
    cursor: pointer;
}

.boston-marker {
    position: absolute;
    z-index: 1000;
    width: 12px;
    height: 12px;
    margin: 295px 0 0 463px;
    cursor: pointer;
}

/* @end */

/* @group Footer */

footer {
    background: url(../images/nav/footer-bkgd.png);
    height: 30px;
}

footer ul {
    margin: 0 auto;
    width: 960px;
    list-style: none;
    padding: 5px 0;
}

footer ul li {
    display: inline;
    font-family: "ff-meta-serif-web-pro-1","ff-meta-serif-web-pro-2", Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 1px #999;
}

footer ul li.copyright {
    padding-left: 70px;
}

footer ul li a,
footer ul li a:active,
footer ul li a:visited {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* @end */

/* @end */

/* @group Media Queries (with print) */







/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust */
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } 
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/* @end */

/* @group Internet Explorer Corrections */
/* ie8, ie7, ie6 corrections specificed by class name */

.ie8 #navigation li ul {
    position: absolute;
    left: -9999px;
    top: 200px;
    z-index: 100;
    color: #333;
}

.ie8 #navigation li:hover ul,
.ie8 #navigation li.sfhover ul { 
    background: #aac6bd;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    display: block;
    left: auto;
    margin-top: 4px;
}

.ie8 legend,
.ie7 legend,
.ie6 legend {
    padding-bottom: 10px;
}

.ie8 .office-photo-wrap,
.ie7 .office-photo-wrap,
.ie6 .office-photo-wrap {
    border: 0;
    margin: 20px 0 30px 0px;
    padding-bottom: 10px;
}

.ie8 .office-photo-wrap img,
.ie7 .office-photo-wrap img,
.ie6 .office-photo-wrap img {
    position: absolute;
    z-index: 50;
    border: 5px solid #fff;
    margin: 0 0 20px -10px;
}

.ie8 .office-photo-shadow,
.ie7 .office-photo-shadow,
.ie6 .office-photo-shadow {
    width: 270px;
    height: 190px;
    margin: -10px 0 20px -20px;
    z-index: 1;
    display: block;
    position: absolute;
    background: #000;
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5', MakeShadow='true', ShadowOpacity='0.15');
}

.ie8 .google-map-wrap,
.ie7 .google-map-wrap,
.ie6 .google-map-wrap {
    border: 0;
    margin: 0 0 20px 0px;
    padding-bottom: 20px;
}

.ie8 .google-map,
.ie7 .google-map,
.ie6 .google-map {
    position: absolute;
    z-index: 50;
    border: 5px solid #fff;
    margin: 0 0 20px -10px;
}

.ie8 .google-map-shadow,
.ie7 .google-map-shadow,
.ie6 .google-map-shadow {
    width: 270px;
    height: 165px;
    margin: -10px 0 20px -20px;
    z-index: 1;
    display: block;
    position: absolute;
    background: #000;
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='5', MakeShadow='true', ShadowOpacity='0.15');
}

.ie7 #navigation li#about:hover ul { 
    background: #aac6bd;
    width: 112px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -112px;
}

.ie7 #navigation li#factoring:hover ul { 
    background: #aac6bd;
    width: 172px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -172px;
}

.ie7 #navigation li#services:hover ul { 
    background: #aac6bd;
    width: 148px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -148px;
}

.ie7 #navigation li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -198px;
}

.ie7 #navigation li#referrals:hover ul { 
    background: #aac6bd;
    width: 112px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -112px;
}

.ie7 #navigation-sp li#about:hover ul { 
    background: #aac6bd;
    width: 160px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -160px;
}

.ie7 #navigation-sp li#factoring:hover ul { 
    background: #aac6bd;
    width: 190px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -190px;
}

.ie7 #navigation-sp li#services:hover ul { 
    background: #aac6bd;
    width: 124px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -108px;
}

.ie7 #navigation-sp li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -198px;
}

.ie7 #navigation-sp li#referrals:hover ul { 
    background: #aac6bd;
    width: 162px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -128px;
}


.ie7 #navigation-fr li#about:hover ul { 
    background: #aac6bd;
    width: 160px;
    height: 72px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -160px;
}

.ie7 #navigation-fr li#factoring:hover ul { 
    background: #aac6bd;
    width: 225px;
    height: 104px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -225px;
}

.ie7 #navigation-fr li#services:hover ul { 
    background: #aac6bd;
    width: 124px;
    height: 167px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -124px;
}

.ie7 #navigation-fr li#management:hover ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -198px;
}

.ie7 #navigation-fr li#referrals:hover ul { 
    background: #aac6bd;
    width: 140px;
    height: 103px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    margin-left: -90px;
}


.ie6 #navigation li ul {
    position: absolute;
    display: none;
    top: 220px;
    left: 100%;
    width: 100%;
    z-index: 100;
}

.ie6 #navigation li.sfhover ul { 
    background: #aac6bd;
    display: block;
    left: 0;
    margin-top: 4px;
}

.ie6 #navigation li ul li,
.ie6 #navigation li ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
}

.ie6 #navigation li#about ul { 
    background: #aac6bd;
    width: 112px;
    height: 72px;
    margin-left: 194px;
}

.ie6 #navigation li#factoring ul { 
    background: #aac6bd;
    width: 172px;
    height: 104px;
    margin-left: 305px;
}

.ie6 #navigation li#services ul { 
    background: #aac6bd;
    width: 148px;
    height: 167px;
    margin-left: 478px;
}

.ie6 #navigation li#management ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    margin-left: 625px;
}

.ie6 #navigation li#referrals ul { 
    background: #aac6bd;
    width: 112px;
    height: 103px;
    margin-left: 820px;
}



.ie6 #navigation-sp li ul {
    position: absolute;
    display: none;
    top: 198px;
    left: 100%;
    width: 100%;
    z-index: 100;
}

.ie6 #navigation-sp li.sfhover ul { 
    background: #aac6bd;
    display: block;
    left: 0;
    margin-top: 4px;
}

.ie6 #navigation-sp li ul li,
.ie6 #navigation-sp li ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
}

.ie6 #navigation-sp li#about ul { 
    background: #aac6bd;
    width: 160px;
    height: 72px;
    margin-left: 190px;
}

.ie6 #navigation-sp li#factoring ul { 
    background: #aac6bd;
    width: 172px;
    height: 104px;
    margin-left: 350px;
}

.ie6 #navigation-sp li#services ul { 
    background: #aac6bd;
    width: 160px;
    height: 167px;
    margin-left: 540px;
}

.ie6 #navigation-sp li#management ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    margin-left: 625px;
}

.ie6 #navigation-sp li#referrals ul { 
    background: #aac6bd;
    width: 140px;
    height: 103px;
    margin-left: 800px;
}


.ie6 #navigation-fr li ul {
    position: absolute;
    display: none;
    top: 198px;
    left: 100%;
    width: 100%;
    z-index: 100;
}

.ie6 #navigation-fr li.sfhover ul { 
    background: #aac6bd;
    display: block;
    left: 0;
    margin-top: 4px;
}

.ie6 #navigation-fr li ul li,
.ie6 #navigation-fr li ul li a { 
    display: block;
    background: #aac6bd;
    color: #333;
    float: left;
    font-size: 12px;
    text-shadow: none;
    font-weight: normal;
    letter-spacing: 0;
    text-align: left;
}

.ie6 #navigation-fr li#about ul { 
    background: #aac6bd;
    width: 160px;
    height: 72px;
    margin-left: 202px;
}

.ie6 #navigation-fr li#factoring ul { 
    background: #aac6bd;
    width: 172px;
    height: 104px;
    margin-left: 362px;
}

.ie6 #navigation-fr li#services ul { 
    background: #aac6bd;
    width: 130px;
    height: 167px;
    margin-left: 584px;
}

.ie6 #navigation-fr li#management ul { 
    background: #aac6bd;
    width: 198px;
    height: 327px;
    margin-left: 625px;
}

.ie6 #navigation-fr li#referrals ul { 
    background: #aac6bd;
    width: 150px;
    height: 103px;
    margin-left: 850px;
}

.ie6 #home-content {
    width: 540px;
    margin-left: 30px;
    padding-right: 60px;
    float: left;
}

.ie6 #map-content {
    width: 520px;
    margin-left: 20px;
    padding-right: 40px;
    float: left;
}

.ie6 #jdfactors-map {
    width: 520px;
    height: 480px;
    margin: 10px;
}

.ie8 #remember {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2px 245px 12px 0;
}

.ie8 #signature-check {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 15px;
    height: 15px;
    margin: 2px 0 0 0;
}

.ie8 #form.apply-now .required-checkbox,
.ie7 #form.apply-now .required-checkbox {
    margin: 2px 255px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie7 #form.apply-now .select {
    font-size: 14px;
    width: 230px;
    margin: -30px 0 10px 250px;
}

.ie7 #form.apply-now .required-select {
    margin: -30px 125px 10px 485px;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie7 #form.client .required-select {
    margin: -25px 140px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie7 label.own-label,
.ie7 .apply-now fieldset fieldset label.own-label {
    width: 30px;
    text-align: left;
    margin: 0 0 10px 250px;
    float: left;
}
.ie7 .radio.own-radio,
.ie7 .apply-now fieldset fieldset .radio.own-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -25px 0 10px 280px;
    float: left;
}
.ie7 label.rent-label,
.ie7 .apply-now fieldset fieldset label.rent-label {
    width: 30px;
    text-align: left;
    margin: -25px 0 10px 5px;
    float: left;
}
.ie7 .radio.rent-radio,
.ie7 .apply-now fieldset fieldset .radio.rent-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -25px 0 10px 5px;
    float: left;
}

.ie7 label.yes-label {
    width: 25px;
    text-align: left;
    margin: 10px 0 10px 0px;
    float: left;
}
.ie7 .radio.yes-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: 10px 0 10px 10px;
    float: left;
}
.ie7 label.no-label {
    width: 20px;
    text-align: left;
    margin: -28px 0 10px 310px;
    float: left;
}
.ie7 .radio.no-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: -28px 50px 10px 10px;
    float: left;
}

.ie7 #remember {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2px 245px 12px 0;
}

.ie7 #signature-check {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 15px;
    height: 15px;
    margin: 2px 0 9px 0;
}

.ie7 #form.apply-now .required-checkbox {
    margin: 2px 255px 9px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie7 #form.contact-page .required-textarea {
    margin: -85px 105px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie7 #form.apply-now span.captcha-image-text {
    width: 240px;
    height: 28px;
    margin: -30px 0 0 250px;
    padding: 3px 4px 3px 0;
    float: left;
}

.ie7 #form.broker span.captcha-image-text {
    width: 240px;
    height: 28px;
    margin: -30px 0 0 190px;
    padding: 3px 4px 3px 0;
    float: left;
}

.ie6 #form .form-notes {
    font-size: 12px;
    line-height: 16px;
    float: left;
    margin: 0 0 16px 20px;
    font-style: italic;
}

.ie6 .client input {
    width: 160px;
    font-size: 12px;
}

.ie6 .client select {
    width: 160px;
    font-size: 12px;
    margin: -25px 0 16px 80px;
}

.ie6 #remember {
    font-size: 14px;
    font-weight: bold;
    float: left;
    display: block;
    width: 20px;
    height: 20px;
    margin: 2px 205px 22px 0;
}

.ie6 .contact-page label {
    width: 180px;
    font-size: 12px;
}

.ie6 .contact-page input {
    width: 180px;
    font-size: 12px;
}

.ie6 .contact-page textarea {
    width: 180px;
    font-size: 12px;
    margin: 0 0 16px 0;
}

.ie6 #form.contact-page .required-textarea {
    margin: -25px 140px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie6 #form.client .required-select {
    margin: -25px 90px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie6 .apply-now label {
    width: 160px;
    font-size: 12px;
    font-weight: normal;
}

.ie6 .apply-now label.three-line {
    width: 180px;
    font-size: 12px;
    font-weight: normal;
}

.ie6 .apply-now .select {
    font-size: 14px;
    float: left;
    display: block;
    width: 220px;
    margin: -25px 0px 10px 90px;
}

.ie6 #form.apply-now .required-select {
    margin: -25px 20px 10px 0;
    font-size: 16px;
    color: #619080;
    float: right;
}

.ie6 #form.apply-now span.captcha-image-text {
    width: 240px;
    height: 28px;
    margin: -30px 0 0 170px;
    padding: 3px 4px 3px 0;
    float: left;
}

.ie6 #form.broker span.captcha-image-text {
    width: 240px;
    height: 28px;
    margin: -30px 0 0 190px;
    padding: 3px 4px 3px 0;
    float: left;
}

.ie6 .apply-now fieldset fieldset label {
    width: 120px;
}

.ie6 label.own-label,
.ie6 .apply-now fieldset fieldset label.own-label {
    width: 30px;
    text-align: left;
    margin: -5px 0 10px 80px;
    float: left;
}
.ie6 .radio.own-radio,
.ie6 .apply-now fieldset fieldset .radio.own-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -5px 0 10px 5px;
    float: left;
}
.ie6 label.rent-label,
.ie6 .apply-now fieldset fieldset label.rent-label {
    width: 30px;
    text-align: left;
    margin: -5px 0 10px 5px;
    float: left;
}
.ie6 .radio.rent-radio,
.ie6 .apply-now fieldset fieldset .radio.rent-radio {
    width: 30px;
    height: 18px;
    text-align: left;
    margin: -5px 40px 10px 5px;
    float: left;
}

.ie6 label.yes-label {
    width: 25px;
    height: 18px;
    text-align: left;
    margin: 10px 0 10px 0px;
    float: left;
}
.ie6 .radio.yes-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: 10px 0 10px 10px;
    float: left;
}
.ie6 label.no-label {
    width: 20px;
    height: 18px;
    text-align: left;
    margin: 10px 0 10px 10px;
    float: left;
}
.ie6 .radio.no-radio {
    width: 18px;
    height: 18px;
    text-align: left;
    margin: 10px 0px 10px 10px;
    float: left;
}

/* @end */

