/* SpringFree Guidelines
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

Font sizes: 16px base font with 24px line-height
------------------------------------------------
       font-size / line-height / margin-top
------------------------------------------------
40px = 2.5em     / 1.2         / 0.6em
32px = 2em       / 1.5         / 0.75em
24px = 1.5em     / 1           / 1em
20px = 1.25em    / 1.2         / 1.2em
16px = 1em       / 1..5        / 1.5em
14px = 0.875em   / 1.7143      / 1.7143em
13px = 0.8125em  / 1.8462      / 1.8462em
12px = 0.75em    / 2           / 2em
10px = 0.625em   / 2.4         / 2.4em

Equation for font sizing: 
  Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/

/**
 * 0.RESET 
 */

@import "reset.css";

/**
 * 1.GLOBAL
 */

body {
  background:#E9E9E9 url(/sites/all/themes/bskylinev1sf/images/bg-body.gif) repeat-x;
  color: #7F7979;
  font-size: 12px;
  line-height: 1;
  font-family: "Helvetica", "Arial", "sans-serif";
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  /*font-family: 'HelveticaNeueW01-45Ligh';*/
  font-style: normal;
  font-weight: normal;
}

h1, .h1 {
	color: #38B2DF;
	font-size: 2.6em;
	margin-bottom: 10px;
}

h2, .h2 {
  font-size: 1.5em;
  line-height: 1;
  margin-top: 1em;
}

h3, .h3 {
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.5em;
}

p {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

strong {
  font-weight: bolder;
  color:#000000;
}

#sitemap a{
  color: #000000;
}

a { color: #5CC0E5; text-decoration: none; }

a:visited { color: #5CC0E5; }

a:hover, a:active, li a.active  { color: #39f; }

a:focus { outline: thin dotted; }

a:hover, a:active { outline: 0; }

/* apply common styling after reset.css */

li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #666;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: middle; }
th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

/**
 * 2.LAYOUT
 */

#container {
  margin: 0 auto;
  padding: 0 10px;
  width: 970px;
}

/**
 * 3.MAIN
 */

/* 1 column: global values*/

#main {
  display: inline;
  margin: 0;
}

/* 3 columns */

body.two-sidebars #main {
  float: left;
  margin: 0 0 0 240px;
  padding: 0;
  width: 460px;
}

/* 2 columns: sidebar-left */

body.sidebar-left #main {
  float: right;
  margin: 0;
  padding: 10px 0 0 0;
  width: 700px;
}

/* 2 columns: sidebar-right */

body.sidebar-right #main {
  float: left;
  margin: 0;
  padding: 0;
  width: 700px;
}

/**
 * 4.SIDEBARS
 */

/* 3 columns: sidebar-left */

body.two-sidebars #sidebar-left {
  float: left;
  margin: 0 0 0 -700px;
  padding: 0;
  width: 220px;
}

/* 3 columns: sidebar-right */

body.two-sidebars #sidebar-right {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-left */

body.sidebar-left #sidebar-left {
  float: left;
  margin: 0;
  padding: 0;
  width: 220px;
}

/* 2 columns: sidebar-right */

body.sidebar-right #sidebar-right {
  float: right;
  margin: 0;
  padding: 0;
  width: 220px;
}

/**
 * 5.HEADER
 */

#header {
  /*background: url(/springfree/sites/all/themes/bskylinev1sf/images/border-section.png) no-repeat;*/
  margin: 0;
  padding: 2.5em 0 0;
  position: relative;
}

#header #logo {
  float: left;
  margin: 0 1em 1.5em 0;
}

#header #site-name-slogan {
  float: left;
  margin: 0 0 1.5em;
}

#header #site-name {
  background:url(/sites/all/themes/bskylinev1sf/images/slogan.png) no-repeat;
  width: 251px;
  height: 37px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

#header #border-head {
 width:970px;
 height:24px;
 background:url(/sites/all/themes/bskylinev1sf/images/border-head.png) no-repeat;
}

#header #site-name a:hover {
  text-decoration: none;
}

#header #site-slogan {
  margin: 0;
}

#search-theme-form {
  float: right;
  margin: .7em 0 0;
}

/* hides "Search this site:" label from search forms */

div#edit-search-theme-form-1-wrapper label, 
div#edit-search-block-form-1-wrapper label {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * 6.NAVIGATION
 */

#navigation {
  clear: both;
  margin: 0;
  padding: 0;
  /*border: 1px solid black;*/
}

#navigation ul#main-menu {
  clear: both;
  list-style: none;
  font-family: 'HelveticaNeueW01-45Ligh';
  font-size: 20px;
  margin: 0;
  padding: 0;
 width:600px;
  /*border:1px solid black;*/
}

#navigation ul#main-menu li {
  float: left;
  margin: 5px;
  padding:0;
}

#navigation ul#main-menu li a {
  display: block;
  color:#000000;
  background:url(/sites/all/themes/bskylinev1sf/images/navc.png) repeat-x;
  padding: 7px 13px 7px 13px;
  border-radius: 5px; 
 -moz-border-radius: 5px; 
 -webkit-border-radius: 5px; 
 border: 1px solid #D1D1D1;
}
#navigation ul#main-menu li a.active, #navigation ul#main-menu li.active-trail a {
  display: block;
  color:#ffffff;
  background:url(/sites/all/themes/bskylinev1sf/images/nava.png) repeat-x;
  padding: 7px 13px 7px 13px;
  border-radius: 5px; 
 -moz-border-radius: 5px; 
 -webkit-border-radius: 5px; 
 /*border: 3px solid #000000;*/
}

#navigation ul#secondary-menu {
  clear: both;
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation ul#secondary-menu li a {
  display: block;
  padding: 0 2em 0 0;
}

.breadcrumb {
  clear: both;
  padding: 1.5em 0 0;
}

#skip-link {
  position: absolute;
}

/* menus and item lists */

.item-list ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}

.item-list ul li {
  margin: 0;
  padding: 0;
}

ul.links li {
  margin: 0;
  padding: 0;
}

ul.inline {
  clear: both;
}

ul.inline li {
  margin: 0;
  padding: 0 1em 0 0;
}

/* admin tabs */

.tabs-wrapper {
  border-bottom: 1px solid #333;
  margin: 0 0 1.4375em;
}

ul.primary {
  border: none;
  margin: 0;
  padding: 0;
}

ul.primary li a {
  border: none;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0;
  padding: 0 1em;
}

ul.primary li a:hover, ul.primary li a.active {
  background: #666;
  border: none;
  color: #fff;
}

ul.primary li a:hover {
  background: #888;
  text-decoration: none;
}

ul.secondary {
  background: #666;
  border-bottom: none;
  clear: both;
  margin: 0;
  padding: 0;
}

ul.secondary li {
  border-right: none;
}

ul.secondary li a, ul.secondary li a:link {
  border: none;
  color: #ccc;
  display: block;
  float: left;
  line-height: 1.5em;
  padding: 0 1em;
}

ul.secondary li a:hover, ul.secondary li a.active {
  background: #888;
  color: #fff;
  text-decoration: none;
}

ul.secondary a.active {
  border-bottom: none;
}

/**
 * 7.NODES
 */

.node {
  margin-bottom: 1.5em;
}

/* tags */

.terms {
  margin: 0 0 1.5em;
}

.terms span {
  font-weight: bold;
}

/* profile */

.profile {
  margin: 1.5em 0;
}

.profile h3 {
  border: none;
}

.profile dt {
  margin-bottom: 0;
}

.profile dd {
  margin-bottom: 1.5em;
}

/**
 * 8.COMMENTS
 */

#comments {
  clear: both;
  margin-top: 1.5em;
}

.comment {
  margin-bottom: 1.5em;
}

.comment .new {
  color: red;
  text-transform: capitalize;
  margin-left: 1em;
}

/**
 * 9.BLOCKS
 */

.block {
  margin-bottom: 1.5em;
  position: relative;
}

#block-block-7{
margin-bottom: 0px !important;
}
#block-block-7 .content{
padding-bottom: 0px !important;
}
#block-block-7 .content, #block-block-7 .content a{
font-family: "HelveticaNeueETW01-45Lt";
font-size:18px;
color:#38B2DF !important;
}
#block-block-8 {
margin-bottom: 0px !important;
}
#block-block-8 .content{
padding-bottom: 0px !important;
}
#block-block-8 .content, #block-block-8 .content a{
font-family: "HelveticaNeueETW01-45Lt";
font-size:14px;
color:#38B2DF !important;
}
#block-block-9{
margin-bottom: 0px !important;
}
#block-block-9 .content{
padding-bottom: 0px !important;
}
#block-block-9 .content, #block-block-9 .content a{
font-family: "HelveticaNeueETW01-45Lt";
font-size:14px;
color:#38B2DF !important;
}

#block-easy_breadcrumb-0{
margin-bottom: 0px !important;
}
#block-easy_breadcrumb-0 .content{
padding-bottom: 0px !important;
}
#block-easy_breadcrumb-0 .content, #block-easy_breadcrumb-0 .content a{
font-family: "HelveticaNeueETW01-45Lt";
font-size:14px;
color:#38B2DF !important;
}

.node-inner {
padding-top:10px;
}

/* login block */
#user-login-form {
  padding: 0;
  text-align: left;
}

#user-login-form .form-item {
  margin: 1em 0;
}

#user-login-form .item-list ul li {
  background: none;
  margin: 1em 0;
  padding: 0;
}

/* block configuration links */

section.block div.edit {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  display: none;
  font-size: 9px;
  margin: 0;
  overflow: hidden;
  padding: 2px 0 2px 10px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 40;
}

section.block:hover div.edit {
  display:block;
}

section.block div.edit a {
  color: #999;
  margin-right: 10px;
}

section.block div.edit:hover a {
  color: #000;
}

/* views configuration links */

div.view {
  position: relative;
}

div.view div.views-hide-hover,
div.view:hover div.views-hide,
div.view div.views-admin-links,
div.view div.views-admin-links-hover,
div.view div.views-admin-links:hover {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 9px;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

div.view div.views-admin-links li a {
  color: #999;
}

/**
 * 10.FOOTER
 */

#footer {
  background: url(/sites/all/themes/bskylinev1sf/images/border-section.png) no-repeat;
  clear: both;
  padding: 1em 0;
  position: relative;
}

#footer a.feed-icon {
  position: absolute;
  right: 0;
  top: 1.6667em;
}

/* support drupal */
#footer #block-system-0 {
  position: absolute;
  right: 25px;
  top: 1.6667em;
}

#footer .holder {
overflow: hidden;
overflow-x: hidden;
overflow-y: hidden;
padding: 0 0 24px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 24px;
padding-left: 0px;
}
#footer .add-nav {
float: left;
margin: 0;
padding: 0;
list-style: none;
font-size: 11px;
line-height: 14px;
}
#footer .add-nav li {
float: left;
margin: 0 7px 0 0;
padding: 0 0 0 13px;
background: url(/sites/all/themes/bskylinev1sf/images/bullet-2.gif) no-repeat 0 6px;
}
#footer .copy {
float: right;
color: #5E5E5E;
font-size: 11px;
line-height: 14px;
}

/**
 * 11.CSS SUPPORT
 */

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user.
 */

.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */

.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */

.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */

* html .clearfix {
  height: 1%;
}

/* IE7 */

*:first-child + html .clearfix {
  min-height: 1%;
}

/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }

#horlogin{
position:absolute;
right:0px;
top:75px;

}

/*Menu Block 1 & 2*/
#block-menu_block-1 ul, #block-menu_block-1 ul{
list-style-type:none;
list-style: none;
list-style-image: none;
padding:0px;
margin:0px;
}
#block-menu_block-1 li.leaf, li.collapsed, li.expanded, #block-menu_block-2 li.leaf, li.collapsed, li.expanded{
list-style-image: none;
list-style: none;
list-style-type: none;
border-bottom: 1px dotted #868686;
padding-top:12px;
padding-bottom:12px;
padding-left:5px;
font-family: "Helvetica", "Arial", "sans-serif";
font-size: 12px;
}
#block-menu_block-1 li.expanded, #block-menu_block-2 li.expanded{

}

#block-menu_block-1 li.expanded .leaf{
border-bottom: 0px dotted #868686 !important;
padding-top:15px !important;
padding-bottom:0px !important;
}

#block-menu_block-1 li a, #block-menu_block-2 li a{
color: #5c5c5c;
}
#block-menu_block-1 li a.active, #block-menu_block-2 li a.active{
color: #5cc0e5;
}

#block-menu_block-2 .leaf.menu-mlid-234 a{
color: #5cc0e5 !important;
}

/*Image Gallery*/
.gallery-list ul{
  list-style-type : none;
  margin : 0;
  padding : 0;
}
.gallery-list ul li {
  float : left;
  margin : 1em;
  background: transparent none;
  list-style: none;
}
.gallery-cover-view {
width: 150px;
}

.gallery-images-list ul {
list-style-type : none;
  margin : 0;
  padding : 0;
}

.gallery-images-list ul li {
float : left;
  margin : 1em;
  background: transparent none;
  list-style: none;
}

.image-thumbnail {
padding-top:0px;
}

.content #imgdownload  a{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
background:url(/sites/all/themes/bskylinev1sf/images/imgdbutton.png) no-repeat;
margin-top: 20px;
padding-top: 15px;
padding-left:0px;
color: #ffffff;
width: 185px;
height: 42px;
}

.content #imgdownload  a:hover{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
background:url(/sites/all/themes/bskylinev1sf/images/imgdbuttong.png) no-repeat;
margin-top: 20px;
padding-top: 15px;
padding-left:0px;
color: #ffffff;
width: 185px;
height: 42px;
}
.content #imgdownload-2  a{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
background:url(/sites/all/themes/bskylinev1sf/images/imgdbutton.png) no-repeat;
margin-top: 20px;
padding-top: 12px;
padding-left:0px;
color: #ffffff;
width: 185px;
height: 42px;
}

.content #imgdownload-2  a:hover{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
background:url(/sites/all/themes/bskylinev1sf/images/imgdbuttong.png) no-repeat;
margin-top: 20px;
padding-top: 12px;
padding-left:0px;
color: #ffffff;
width: 185px;
height: 42px;
}


.content #welcome {
font-family: 'HelveticaNeueW01-UltLt';
color:#38B2DF;
font-size:72px;
padding-bottom: 25px;
font-style: normal;
font-weight: normal;
}
.content #welcomecontent {
font-size:17px;
}

table.image-navigator td {
background-color: transparent none;
}


/*
.block #user-login-form { text-align: left; }
.block #user-login-form #edit-name-wrapper { float: left; margin-right: 10px; }
.block #user-login-form #edit-pass-wrapper { float: left; margin-right: 10px; }
.block #user-login-form #edit-submit { float: left; margin-top: 25px; }
.block #user-login-form .item-list { clear: both; text-align: right; }
#block-user-0 h2{
display:none;
}
#block-user-0 .item-list{
display:none;
}
*/
/*
.form-item label {
display:inline;
float:left;
font-weight:bold;
}
.form-item {
float:left;
margin-bottom:1em;
margin-top:0 !important;
width:200px;
}
#user-login-form {
text-align:left;
}
form#user-login-form ul li{
	display:inline;
}
form#user-login-form ul{
	width:300px;
}
form#user-login-form .item-list {
float:left;
margin-left:55px;
margin-top:-20px;
width:300px;
}
.block.block-user h2 {
background:#DAEFFA url(images/module-h3.png) repeat-x scroll 0% 0%;
border-color:#B7ECF5;
border-style:solid;
border-width:1px 3px;
color:#02576B;
float:left;
font-family:Tahoma,Helvetica,Arial Narrow;
font-size:120%;
margin:-7px 6pt 10px;
padding:5px 0pt 5px 8px;
width:100px;
}
*/

/*Added by pankaj for spring New Page*/
.content { color:#5c5c5c; padding-bottom:30px; }
.content h1,.content h2,.content h3,.content h4,.content h5,.content h6 { font-family: "HelveticaNeueETW01-45Lt"; font-size:18px; color:#38B2DF; margin-bottom:10px;}
.content h2,.content h3,.content h4,.content h5 { margin-top:36px; margin-bottom:0px;}
.content h6 {font-family: "HelveticaNeueETW01-45Lt"; font-size:12px; color:#38B2DF; font-weight:normal;}
.content p span { padding-right:60px;}
p.sub-head-p { margin-bottom:2px; font-style:italic;}
.two-col-div { margin-top:10px;}
.two-col-div div.head { background:#e7e7e7; line-height:36px; color:#000; padding:0 10px; border-radius:5px;}
.two-col-div .col-01 { float:left; margin-right:10px; border-right:solid 1px #aeaeae; width:335px;}
.two-col-div .col-02 { float:left; width:334px; }
.two-col-div .col-03 { float:left; width:100%; }
.wid-330 { min-height:230px !important}
.wid-250 { min-height:250px !important}

.two-col-div div.data-box-1 { border-bottom:solid 1px #aeaeae}
.two-col-div div.data-box-1 UL { list-style:none; padding:10px; margin:0;}
.two-col-div div.col-02 UL { padding-left:0px !important;}
.two-col-div div.data-box-1 UL li { list-style:NONE; line-height:1.7;}
.two-col-div .col-01 { float:left; margin-right:10px; border-right:solid 1px #aeaeae; width:335px;}
.two-col-div .col-02 { float:left; width:334px; }
.two-col-div div.data-box-1 .col-01 { float:left; margin-right:10px; border-right:solid 1px #aeaeae; width:345px;}
.two-col-div div.data-box-1 .two-col-div .col-02 { float:left; width:334px; }

.content .h1 {font-size:18px; color:#38B2DF; margin-bottom:10px; font-weight:normal}
.content .h2 {font-size:18px; color:#38B2DF; margin-bottom:5px; font-weight:normal}
.content ul { list-style:none; margin:0; padding:0; line-height:18px; margin-bottom:18px;}
.two-col-div .col-04 { float:left; width:100%; margin-bottom:18px; }
.two-col-div div.head01 { background:#e7e7e7; line-height:36px; color:#000; padding:0 10px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; margin-left:-10px; margin-bottom:10px;}

table.table-data { border-collapse:collapse;}
table.table-data thead th { padding:0; border:0; font-weight:normal; }
table.table-data .table-div1 { background:#e7e7e7;line-height:36px; color:#000; padding:0 10px; border-radius:5px 0 0 5px; border-right:solid 1px #aeaeae;  -webkit-border-radius:5px 0 0 5px; -moz-border-radius:5px 0 0 5px; }
table.table-data .table-div02 { background:#e7e7e7;line-height:36px; color:#000; padding:0 10px; border-right:solid 1px #aeaeae;}
table.table-data .table-div2 { background:#e7e7e7;line-height:36px; color:#000; padding:0 10px; border-radius:0 5px 5px 0;  -webkit-border-radius:0 5px 5px 0; -moz-border-radius:0 5px 5px 0; }
table.table-data td { padding:10px; line-height:18px; vertical-align:top;}
table.table-data td strong { display:block; color:#000; font-weight:normal;}
table.table-data td span { color:#5cc0e5;}
table.table-data tbody { border-bottom:solid 1px #aeaeae; border-top:0;}


/*For Styling Webfrm */
#webform-client-form-32 {
display: block;
padding-left:230px;
width:700px;
}

#webform-client-form-32 field {
display: block;
/*border: 5px solid black;*/
float: left;
width: 640px;
}
#webform-client-form-32 .form-text {
padding-bottom: 5px;
padding-top: 5px;
}

#webform-client-form-32 .webform-component {
padding-bottom: 12px;
}

#webform-client-form-32 label {
font-weight: normal;
padding-top:5px;
float:left;
width: 90px;
}

#webform-client-form-32 textarea {
display: block;
float: left;
width: 470px;
margin-left:12px;
}

/*#webform-component-comments label {
float: left;
margin-right: 11px;
}*/

.captcha {
display: block;
float: left;
width: 440px;
margin-left:100px;
}

.captcha .description {
display: none;
}

 .recaptchatable .recaptcha_image_cell, #recaptcha_table {
    background-color:'''#f4f4f4''' !important; ''//reCaptcha widget background color''
  }
  
  #recaptcha_table {
    border-color: '''#f4f4f4''' !important; ''//reCaptcha widget border color''
  }
  
  #recaptcha_response_field {
    border-color: '''#f4f4f4''' !important; ''//Text input field border color''
    background-color:'''#f4f4f4''' !important; ''//Text input field background color''
  }
  
#webform-client-form-32 .form-submit {
display: block;
background:url(/sites/all/themes/bskylinev1sf/images/login2bg.png) no-repeat;
width:145px;
height: 46px;
font-size:0px;
color:#FFFFFF;
float: left;
margin-left: 300px;
border: 0px solid blue;
margin-top:10px;
padding-bottom: 150px;
}

/* User Login 2 */
#block-user-02 {
padding-left: 300px;
}
#block-user-0 #user-login-form input.form-submit {
  width: 145px;
  height: 46px;
  margin-top: -1px;
  margin-left: 10px;
  padding: 0em .5em .1em .5em;
  font-size:.9em;
  border:0px solid #999;
  background:url(/sites/all/themes/bskylinev1sf/images/login2bg.png) no-repeat;
  /*background-color:#009bc4;*/
  color: #ffffff;
  font-size:0px;
  cursor:pointer;
}

#block-user-0 h2 {
color:#38B2DF;
font-size: 30px;
padding-bottom: 21px;
}
#block-user-0 .item-list {
display: none;
}

#main h1 { font-family: "HelveticaNeueETW01-45Lt"; font-size:18px; color:#38B2DF; margin-bottom:0px;}

#block-block-10 .form-submit {
display: block;
/*background:url(/sites/all/themes/bskylinev1sf/images/nava.png) repeat-x;*/
background:url(/sites/all/themes/bskylinev1sf/images/accept.png) no-repeat;
width:149px;
height: 47px;
color:#FFFFFF;
font-size: 0px;
float: left;
/*border-radius: 5px;*/
padding-bottom: 8px;
margin-left: 0px;
border: 0px solid blue;
}

#block-block-10 .form-exit {
display: block;
/*background:url(/sites/all/themes/bskylinev1sf/images/nava.png) repeat-x;*/
background:url(/sites/all/themes/bskylinev1sf/images/do-not-accept.png) no-repeat;
text-align: center;
width:149px;
height: 47px;
color:#FFFFFF;
font-size: 0px;
float: left;
padding-bottom: 8px;
margin-left: 10px;
border: 0px solid blue;
}

#legal-login .form-submit{
display: block;
background:url(/sites/all/themes/bskylinev1sf/images/confirm.png) no-repeat;
width:149px;
height: 47px;
color:#FFFFFF;
font-size: 0px;
float: left;
padding-bottom: 8px;
margin-left: 0px;
border: 0px solid blue;
}

html.js #block-user-0 {display: block;height: 250px; padding-left:235px; margin: 0;position: relative; width:500px;}
#block-user-0 {height: 6em;margin-top: -35px;}
#block-user-0 .content {padding: 0;margin: -10px 0 0 0;}
#block-user-0 h2.title {display: none;}
#block-user-0 #edit-pass-wrapper {display: block;float: left;margin-left: 0px;margin-right: 10px;}
/*#horlogin #block-userloginbar-0 #user-login-form {margin: 0;padding: 0;}*/
html.js #block-user-0 #user-login-form label {color: #38B2DF; font-family: 'HelveticaNeueW01-45Ligh'; font-size: 20px;font-weight: normal;margin-left: 7px;position: absolute;text-align: left; padding-top:6px;}
#block-user-0 #user-login-form label {position: static;margin-left: 2px; text-align: left;}
#block-user-0 #user-login-form input.form-text {border: 1px solid #959595; padding: 1px;width: 450px; height:30px;}
#block-user-0 #edit-name-wrapper {display: block;float: left;}
html.js #block-user-0 #user-login-form input.form-submit,#block-user-0 #user-login-form input.form-submit {clear: none; margin: 12px 0 0 0;}
##block-user-0 #user-login-form input.form-submit {clear: none;margin: 30px 0 0 0;}
html.js #block-user-0 .item-list,#block-user-0 .item-list {float: none;margin: 2px 0 -15px 0;padding: 5px 0 0 0;text-align: left;width: auto;}
#block-user-0 .item-list {float: right;margin: -17px 105px -15px 0;}
#block-user-0 .item-list ul {margin: 0;padding: 0;}
#block-user-0 .item-list li {margin: 0;padding: 0 0 0 20px;list-style: none;font-size: 77%;}