/**
 * Author Dan Partac
 * Copyright (C) 2005 - 2012 Dan Partac. All rights reserved.
 * @license	commercial
 * Template Typography Styling
 */
 
 /* text allignments */
.align-justify {text-align:justify;}
.align-left {text-align:left;}
.align-right {text-align:right;}
.align-center {text-align:center;}


/* Pre, Code ---*/
pre {
	background-image: url(../img/pre.png);
	background-repeat: repeat;
	background-position: left 9px;
	font: 1em/1.5 Monaco, Consolas, "Courier News", monospace !important;
	margin: 0 0 3em !important; padding: 1.5em 15px !important; overflow-x: auto;
}

pre ul,
pre ol,
pre p {margin:0}

code {padding: 0 7px !important; background-color: #ddd }

/* Inline Words Hilite ---*/
span.highlight, .highlight {
	background: #666; color: #fff; font-weight:normal;
	padding: 0px 5px;
}

/* Dropcap ---*/
.dropcap {
	display: block;
	float: left;
	font: 40px/20px Arial, Helvetica, sans-serif;
	font-weight:bold;
	padding: 7px 8px 0 0;
	color:inherit;
}


/* list styles */
ol, ul, dl {margin: 1.5em 0; padding: 0}
ul li {/*margin-left:5px; fix*/ line-height: 1.5 }

ol li {
    line-height: 1.5em;
    list-style: decimal inside none;
    margin-left: 0;
}

/*ul li[class=""], */
ul:not([class]) > li {
	background: url(../img/bullet.png) no-repeat 0 7px;
    padding-left: 10px;
}

dl dt {font-style: italic}
dl dd {padding-left: 10px}

/* Special list style ---*/
ul.typo-icons {line-height:1.5; margin: 1.5em 0;}

ul.typo-icons li {
	background: none !important;
	margin-left: 0/*8px*/;
	padding: 0 !important;
	position: relative;
	overflow: hidden !important;
	line-height: 1.5;
}

/* FONTAWESOME */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/icons/fontawesome-webfont.eot');
  src: url('../fonts/icons/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/icons/fontawesome-webfont.woff') format('woff'),
    url('../fonts/icons/fontawesome-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*  Font Awesome styles
    ------------------------------------------------------- */
[class^="icon-"], [class*=" icon-"] { background: none !important; /*margin: 0*/ }	
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
}
/* more sprites.less reset */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"] {
  background-image: none;
}
a [class^="icon-"], a [class*=" icon-"] {
  display: inline-block;
  text-decoration: inherit;
}
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: top;
  font-size: 1.3333333333333333em;
}
.btn [class^="icon-"], .btn [class*=" icon-"] {
  /* keeps button heights with and without icons the same */
  line-height: .9em;
  background: none; /*width: 1.2em;*/ text-align:left;
}
.btn-large [class^="icon-"], .btn-large [class*=" icon-"] {
    width: 1.2em;
}
.btn-small [class^="icon-"], .btn-small [class*=" icon-"] {
    line-height: 1.2em !important; height: 1.2em 
}
li [class^="icon-"], li [class*=" icon-"] {
  display: inline-block;
  text-align: center;
  /*width: 1.4em; vertical-align:middle;*/
  font-size: 14px; 
}
ul.the-icons li [class^="icon-"], ul.the-icons li [class*=" icon-"] {
  vertical-align:middle; width: 1.5em; height: 1.5em; line-height: 1.2em; color: #aaa
}
ul.the-icons li:hover [class^="icon-"], ul.the-icons li:hover [class*=" icon-"] {
  color: #333
}
li .btn [class^="icon-"], li  .btn[class*=" icon-"] {}
li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
  /* 1.5 increased font size for icon-large * 1.25 width */

  width: 1.875em;
}
li[class^="icon-"], li[class*=" icon-"] {
  margin-left: 0;
  list-style-type: none;
}
li[class^="icon-"]:before, li[class*=" icon-"]:before {
  text-indent: -2em;
  text-align: center;
}
li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
  text-indent: -1.3333333333333333em;
}

.icon-spin {
  display: inline-block;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% { -moz-transform: rotate(0deg); }
  100% { -moz-transform: rotate(359deg); }
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); }
}
@-o-keyframes spin {
  0% { -o-transform: rotate(0deg); }
  100% { -o-transform: rotate(359deg); }
}
@-ms-keyframes spin {
  0% { -ms-transform: rotate(0deg); }
  100% { -ms-transform: rotate(359deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}
@-moz-document url-prefix() {
  .icon-spin {
   
  }
  .btn .icon-spin {
    height: 1em;
    line-height: 1em !important;
    width: 0.88em;
  }
  .icon-spin.icon-large {
    height: 1.25em;
  }
  .btn .icon-spin.icon-large {
    height: .75em;
  }
}

/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
    readers do not read off random characters that represent icons */
.icon-glass:before                { content: "\f000"; }
.icon-music:before                { content: "\f001"; }
.icon-search:before               { content: "\f002"; }
.icon-envelope:before             { content: "\f003"; }
.icon-heart:before                { content: "\f004"; }
.icon-star:before                 { content: "\f005"; }
.icon-star-empty:before           { content: "\f006"; }
.icon-user:before                 { content: "\f007"; }
.icon-film:before                 { content: "\f008"; }
.icon-th-large:before             { content: "\f009"; }
.icon-th:before                   { content: "\f00a"; }
.icon-th-list:before              { content: "\f00b"; }
.icon-ok:before                   { content: "\f00c"; }
.icon-remove:before               { content: "\f00d"; }
.icon-zoom-in:before              { content: "\f00e"; }

.icon-zoom-out:before             { content: "\f010"; }
.icon-off:before                  { content: "\f011"; }
.icon-signal:before               { content: "\f012"; }
.icon-cog:before                  { content: "\f013"; }
.icon-trash:before                { content: "\f014"; }
.icon-home:before                 { content: "\f015"; }
.icon-file:before                 { content: "\f016"; }
.icon-time:before                 { content: "\f017"; }
.icon-road:before                 { content: "\f018"; }
.icon-download-alt:before         { content: "\f019"; }
.icon-download:before             { content: "\f01a"; }
.icon-upload:before               { content: "\f01b"; }
.icon-inbox:before                { content: "\f01c"; }
.icon-play-circle:before          { content: "\f01d"; }
.icon-repeat:before               { content: "\f01e"; }

/* \f020 doesn't work in Safari. all shifted one down */
.icon-refresh:before              { content: "\f021"; }
.icon-list-alt:before             { content: "\f022"; }
.icon-lock:before                 { content: "\f023"; }
.icon-flag:before                 { content: "\f024"; }
.icon-headphones:before           { content: "\f025"; }
.icon-volume-off:before           { content: "\f026"; }
.icon-volume-down:before          { content: "\f027"; }
.icon-volume-up:before            { content: "\f028"; }
.icon-qrcode:before               { content: "\f029"; }
.icon-barcode:before              { content: "\f02a"; }
.icon-tag:before                  { content: "\f02b"; }
.icon-tags:before                 { content: "\f02c"; }
.icon-book:before                 { content: "\f02d"; }
.icon-bookmark:before             { content: "\f02e"; }
.icon-print:before                { content: "\f02f"; }

.icon-camera:before               { content: "\f030"; }
.icon-font:before                 { content: "\f031"; }
.icon-bold:before                 { content: "\f032"; }
.icon-italic:before               { content: "\f033"; }
.icon-text-height:before          { content: "\f034"; }
.icon-text-width:before           { content: "\f035"; }
.icon-align-left:before           { content: "\f036"; }
.icon-align-center:before         { content: "\f037"; }
.icon-align-right:before          { content: "\f038"; }
.icon-align-justify:before        { content: "\f039"; }
.icon-list:before                 { content: "\f03a"; }
.icon-indent-left:before          { content: "\f03b"; }
.icon-indent-right:before         { content: "\f03c"; }
.icon-facetime-video:before       { content: "\f03d"; }
.icon-picture:before              { content: "\f03e"; }

.icon-pencil:before               { content: "\f040"; }
.icon-map-marker:before           { content: "\f041"; }
.icon-adjust:before               { content: "\f042"; }
.icon-tint:before                 { content: "\f043"; }
.icon-edit:before                 { content: "\f044"; }
.icon-share:before                { content: "\f045"; }
.icon-check:before                { content: "\f046"; }
.icon-move:before                 { content: "\f047"; }
.icon-step-backward:before        { content: "\f048"; }
.icon-fast-backward:before        { content: "\f049"; }
.icon-backward:before             { content: "\f04a"; }
.icon-play:before                 { content: "\f04b"; }
.icon-pause:before                { content: "\f04c"; }
.icon-stop:before                 { content: "\f04d"; }
.icon-forward:before              { content: "\f04e"; }

.icon-fast-forward:before         { content: "\f050"; }
.icon-step-forward:before         { content: "\f051"; }
.icon-eject:before                { content: "\f052"; }
.icon-chevron-left:before         { content: "\f053"; }
.icon-chevron-right:before        { content: "\f054"; }
.icon-plus-sign:before            { content: "\f055"; }
.icon-minus-sign:before           { content: "\f056"; }
.icon-remove-sign:before          { content: "\f057"; }
.icon-ok-sign:before              { content: "\f058"; }
.icon-question-sign:before        { content: "\f059"; }
.icon-info-sign:before            { content: "\f05a"; }
.icon-screenshot:before           { content: "\f05b"; }
.icon-remove-circle:before        { content: "\f05c"; }
.icon-ok-circle:before            { content: "\f05d"; }
.icon-ban-circle:before           { content: "\f05e"; }

.icon-arrow-left:before           { content: "\f060"; }
.icon-arrow-right:before          { content: "\f061"; }
.icon-arrow-up:before             { content: "\f062"; }
.icon-arrow-down:before           { content: "\f063"; }
.icon-share-alt:before            { content: "\f064"; }
.icon-resize-full:before          { content: "\f065"; }
.icon-resize-small:before         { content: "\f066"; }
.icon-plus:before                 { content: "\f067"; }
.icon-minus:before                { content: "\f068"; }
.icon-asterisk:before             { content: "\f069"; }
.icon-exclamation-sign:before     { content: "\f06a"; }
.icon-gift:before                 { content: "\f06b"; }
.icon-leaf:before                 { content: "\f06c"; }
.icon-fire:before                 { content: "\f06d"; }
.icon-eye-open:before             { content: "\f06e"; }

.icon-eye-close:before            { content: "\f070"; }
.icon-warning-sign:before         { content: "\f071"; }
.icon-plane:before                { content: "\f072"; }
.icon-calendar:before             { content: "\f073"; }
.icon-random:before               { content: "\f074"; }
.icon-comment:before              { content: "\f075"; }
.icon-magnet:before               { content: "\f076"; }
.icon-chevron-up:before           { content: "\f077"; }
.icon-chevron-down:before         { content: "\f078"; }
.icon-retweet:before              { content: "\f079"; }
.icon-shopping-cart:before        { content: "\f07a"; }
.icon-folder-close:before         { content: "\f07b"; }
.icon-folder-open:before          { content: "\f07c"; }
.icon-resize-vertical:before      { content: "\f07d"; }
.icon-resize-horizontal:before    { content: "\f07e"; }

.icon-bar-chart:before            { content: "\f080"; }
.icon-twitter-sign:before         { content: "\f081"; }
.icon-facebook-sign:before        { content: "\f082"; }
.icon-camera-retro:before         { content: "\f083"; }
.icon-key:before                  { content: "\f084"; }
.icon-cogs:before                 { content: "\f085"; }
.icon-comments:before             { content: "\f086"; }
.icon-thumbs-up:before            { content: "\f087"; }
.icon-thumbs-down:before          { content: "\f088"; }
.icon-star-half:before            { content: "\f089"; }
.icon-heart-empty:before          { content: "\f08a"; }
.icon-signout:before              { content: "\f08b"; }
.icon-linkedin-sign:before        { content: "\f08c"; }
.icon-pushpin:before              { content: "\f08d"; }
.icon-external-link:before        { content: "\f08e"; }

.icon-signin:before               { content: "\f090"; }
.icon-trophy:before               { content: "\f091"; }
.icon-github-sign:before          { content: "\f092"; }
.icon-upload-alt:before           { content: "\f093"; }
.icon-lemon:before                { content: "\f094"; }
.icon-phone:before                { content: "\f095"; }
.icon-check-empty:before          { content: "\f096"; }
.icon-bookmark-empty:before       { content: "\f097"; }
.icon-phone-sign:before           { content: "\f098"; }
.icon-twitter:before              { content: "\f099"; }
.icon-facebook:before             { content: "\f09a"; }
.icon-github:before               { content: "\f09b"; }
.icon-unlock:before               { content: "\f09c"; }
.icon-credit-card:before          { content: "\f09d"; }
.icon-rss:before                  { content: "\f09e"; }

.icon-hdd:before                  { content: "\f0a0"; }
.icon-bullhorn:before             { content: "\f0a1"; }
.icon-bell:before                 { content: "\f0a2"; }
.icon-certificate:before          { content: "\f0a3"; }
.icon-hand-right:before           { content: "\f0a4"; }
.icon-hand-left:before            { content: "\f0a5"; }
.icon-hand-up:before              { content: "\f0a6"; }
.icon-hand-down:before            { content: "\f0a7"; }
.icon-circle-arrow-left:before    { content: "\f0a8"; }
.icon-circle-arrow-right:before   { content: "\f0a9"; }
.icon-circle-arrow-up:before      { content: "\f0aa"; }
.icon-circle-arrow-down:before    { content: "\f0ab"; }
.icon-globe:before                { content: "\f0ac"; }
.icon-wrench:before               { content: "\f0ad"; }
.icon-tasks:before                { content: "\f0ae"; }

.icon-filter:before               { content: "\f0b0"; }
.icon-briefcase:before            { content: "\f0b1"; }
.icon-fullscreen:before           { content: "\f0b2"; }

.icon-group:before                { content: "\f0c0"; }
.icon-link:before                 { content: "\f0c1"; }
.icon-cloud:before                { content: "\f0c2"; }
.icon-beaker:before               { content: "\f0c3"; }
.icon-cut:before                  { content: "\f0c4"; }
.icon-copy:before                 { content: "\f0c5"; }
.icon-paper-clip:before           { content: "\f0c6"; }
.icon-save:before                 { content: "\f0c7"; }
.icon-sign-blank:before           { content: "\f0c8"; }
.icon-reorder:before              { content: "\f0c9"; }
.icon-list-ul:before              { content: "\f0ca"; }
.icon-list-ol:before              { content: "\f0cb"; }
.icon-strikethrough:before        { content: "\f0cc"; }
.icon-underline:before            { content: "\f0cd"; }
.icon-table:before                { content: "\f0ce"; }

.icon-magic:before                { content: "\f0d0"; }
.icon-truck:before                { content: "\f0d1"; }
.icon-pinterest:before            { content: "\f0d2"; }
.icon-pinterest-sign:before       { content: "\f0d3"; }
.icon-google-plus-sign:before     { content: "\f0d4"; }
.icon-google-plus:before          { content: "\f0d5"; }
.icon-money:before                { content: "\f0d6"; }
.icon-caret-down:before           { content: "\f0d7"; }
.icon-caret-up:before             { content: "\f0d8"; }
.icon-caret-left:before           { content: "\f0d9"; }
.icon-caret-right:before          { content: "\f0da"; }
.icon-columns:before              { content: "\f0db"; }
.icon-sort:before                 { content: "\f0dc"; }
.icon-sort-down:before            { content: "\f0dd"; }
.icon-sort-up:before              { content: "\f0de"; }

.icon-envelope-alt:before         { content: "\f0e0"; }
.icon-linkedin:before             { content: "\f0e1"; }
.icon-undo:before                 { content: "\f0e2"; }
.icon-legal:before                { content: "\f0e3"; }
.icon-dashboard:before            { content: "\f0e4"; }
.icon-comment-alt:before          { content: "\f0e5"; }
.icon-comments-alt:before         { content: "\f0e6"; }
.icon-bolt:before                 { content: "\f0e7"; }
.icon-sitemap:before              { content: "\f0e8"; }
.icon-umbrella:before             { content: "\f0e9"; }
.icon-paste:before                { content: "\f0ea"; }
.icon-lightbulb:before            { content: "\f0eb"; }
.icon-exchange:before             { content: "\f0ec"; }
.icon-cloud-download:before       { content: "\f0ed"; }
.icon-cloud-upload:before         { content: "\f0ee"; }

.icon-user-md:before              { content: "\f0f0"; }
.icon-stethoscope:before          { content: "\f0f1"; }
.icon-suitcase:before             { content: "\f0f2"; }
.icon-bell-alt:before             { content: "\f0f3"; }
.icon-coffee:before               { content: "\f0f4"; }
.icon-food:before                 { content: "\f0f5"; }
.icon-file-alt:before             { content: "\f0f6"; }
.icon-building:before             { content: "\f0f7"; }
.icon-hospital:before             { content: "\f0f8"; }
.icon-ambulance:before            { content: "\f0f9"; }
.icon-medkit:before               { content: "\f0fa"; }
.icon-fighter-jet:before          { content: "\f0fb"; }
.icon-beer:before                 { content: "\f0fc"; }
.icon-h-sign:before               { content: "\f0fd"; }
.icon-plus-sign-alt:before        { content: "\f0fe"; }

.icon-double-angle-left:before    { content: "\f100"; }
.icon-double-angle-right:before   { content: "\f101"; }
.icon-double-angle-up:before      { content: "\f102"; }
.icon-double-angle-down:before    { content: "\f103"; }
.icon-angle-left:before           { content: "\f104"; }
.icon-angle-right:before          { content: "\f105"; }
.icon-angle-up:before             { content: "\f106"; }
.icon-angle-down:before           { content: "\f107"; }
.icon-desktop:before              { content: "\f108"; }
.icon-laptop:before               { content: "\f109"; }
.icon-tablet:before               { content: "\f10a"; }
.icon-mobile-phone:before         { content: "\f10b"; }
.icon-circle-blank:before         { content: "\f10c"; }
.icon-quote-left:before           { content: "\f10d"; }
.icon-quote-right:before          { content: "\f10e"; }

.icon-spinner:before              { content: "\f110"; }
.icon-circle:before               { content: "\f111"; }
.icon-reply:before                { content: "\f112"; }
.icon-github-alt:before           { content: "\f113"; }
.icon-folder-close-alt:before     { content: "\f114"; }
.icon-folder-open-alt:before      { content: "\f115"; }

/*  Font Awesome styles
    ------------------------------------------------------- */
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}
a [class^="icon-"],
a [class*=" icon-"] {
  display: inline-block;
  text-decoration: inherit;
}
/* makes the font 33% larger relative to the icon container */
.icon-large:before {
  vertical-align: middle;
  font-size: 1.3333333333333333em;
}
.btn [class^="icon-"],
.nav-tabs [class^="icon-"],
.btn [class*=" icon-"],
.nav-tabs [class*=" icon-"] {
  /* keeps button heights with and without icons the same */

  line-height: .9em;
}
li [class^="social-icon-"],
li [class*=" social-icon-"],
li [class^="icon-"],
li [class*=" icon-"] {
  display: inline-block;
  width: 1.25em;
  text-align: center;
  line-height: 0.9;
  /*font-size: 14px;
  height: 1.5em;*/
}
li .icon-large:before,
li .icon-large:before {
  /* 1.5 increased font size for icon-large * 1.25 width */

  width: 1.875em;
}
ul.icons {
  list-style-type: none;
  margin-left: 2em;
  text-indent: -0.8em;
}
ul.icons li [class^="icon-"],
ul.icons li [class*=" icon-"] {
  width: .8em;
}
ul.icons li .icon-large:before,
ul.icons li .icon-large:before {
  /* 1.5 increased font size for icon-large * 1.25 width */

  vertical-align: initial;
}


dl dd {padding-left:10px;}


/* ICON PARAGRAPHS */
p.typo-icon {
	padding-left: 30px !important;
	position: relative;
}
p.typo-icon:hover i,
p.typo-icon:hover span.icon {color:#333}
p.typo-icon span.icon {
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 24px;
	line-height: 24px
}

/* checkboxes and radios styles */
input[type="checkbox"],
input[type="radio"] {padding:0; margin: 0 3px 0 0; vertical-align:top;}
label {}


em {font-family:Georgia, Helvetica, Arial, sans-serif;}

/* social icons */
@font-face {
	font-family: 'socialicon';
	src:url('../fonts/icons/socialicon.eot');
	src:url('../fonts/icons/socialicon.eot?#iefix') format('embedded-opentype'),
		url('../fonts/icons/socialicon.woff') format('woff'),
		url('../fonts/icons/socialicon.ttf') format('truetype'),
		url('../fonts/icons/socialicon.svg#socialicon') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'socialicon';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}


.social-icon-apple, .social-icon-android, .social-icon-windows, .social-icon-soundcloud, .social-icon-soundcloud-rectangle, .social-icon-dribbble, .social-icon-dribbble-round, .social-icon-dribbble-rectangle, .social-icon-flickr, .social-icon-flickr-round, .social-icon-flickr-rectangle, .social-icon-picasa, .social-icon-lastfm-rectangle, .social-icon-mac, .social-icon-html5-full, .social-icon-html5, .social-icon-css3, .social-icon-chrome, .social-icon-firefox, .social-icon-ie, .social-icon-opera, .social-icon-safari, .social-icon-github-mascot, .social-icon-forrst, .social-icon-facebook-rectangle, .social-icon-twitter, .social-icon-twitter-rectangle, .social-icon-twitter-round, .social-icon-rss, .social-icon-rss-rectangle, .social-icon-rss-round, .social-icon-google, .social-icon-googleplus, .social-icon-googleplus-tabs, .social-icon-googleplus-rectangle, .social-icon-googleplus-round, .social-icon-yahoo-rectangle, .social-icon-word, .social-icon-excel, .social-icon-pdf, .social-icon-joomla, .social-icon-wordpress, .social-icon-wordpress-rectangle, .social-icon-deviantart-round, .social-icon-linkedin, .social-icon-delicious-round, .social-icon-stumbleupon, .social-icon-delicious, .social-icon-picasa-rectangle, .social-icon-delicious-rectangle, .social-icon-pinterest, .social-icon-pinterest-round, .social-icon-pinterest-rectangle, .social-icon-stumbleupon-round, .social-icon-stumbleupon-rectangle, .social-icon-linkedin-round, .social-icon-linkedin-rectangle, .social-icon-lastfm, .social-icon-forrst-rectangle, .social-icon-deviantart, .social-icon-deviantart-rectangle, .social-icon-youtube-full, .social-icon-youtube, .social-icon-vimeo, .social-icon-vimeo-rectangle, .social-icon-skype, .social-icon-facebook, .social-icon-facebook-round, .social-icon-google-drive, .social-icon-xing-rectangle, .social-icon-xing-round, .social-icon-paypal, .social-icon-github, .social-icon-github-rectangle, .social-icon-github-kitty, .social-icon-tumblr, .social-icon-tumblr-rectangle, .social-icon-yahoo {
	font-family: 'socialicon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.social-icon-apple:before {
	content: "\e013";
}
.social-icon-android:before {
	content: "\e014";
}
.social-icon-windows:before {
	content: "\e015";
}
.social-icon-soundcloud:before {
	content: "\e016";
}
.social-icon-soundcloud-rectangle:before {
	content: "\e017";
}
.social-icon-dribbble:before {
	content: "\e018";
}
.social-icon-dribbble-round:before {
	content: "\e019";
}
.social-icon-dribbble-rectangle:before {
	content: "\e01a";
}
.social-icon-flickr:before {
	content: "\e01b";
}
.social-icon-flickr-round:before {
	content: "\e01c";
}
.social-icon-flickr-rectangle:before {
	content: "\e01d";
}
.social-icon-picasa:before {
	content: "\e01e";
}
.social-icon-lastfm-rectangle:before {
	content: "\e029";
}
.social-icon-mac:before {
	content: "\e02a";
}
.social-icon-html5-full:before {
	content: "\e02b";
}
.social-icon-html5:before {
	content: "\e02c";
}
.social-icon-css3:before {
	content: "\e02d";
}
.social-icon-chrome:before {
	content: "\e02e";
}
.social-icon-firefox:before {
	content: "\e02f";
}
.social-icon-ie:before {
	content: "\e030";
}
.social-icon-opera:before {
	content: "\e031";
}
.social-icon-safari:before {
	content: "\e032";
}
.social-icon-github-mascot:before {
	content: "\e033";
}
.social-icon-forrst:before {
	content: "\e034";
}
.social-icon-facebook-rectangle:before {
	content: "\e03f";
}
.social-icon-twitter:before {
	content: "\e040";
}
.social-icon-twitter-rectangle:before {
	content: "\e041";
}
.social-icon-twitter-round:before {
	content: "\e042";
}
.social-icon-rss:before {
	content: "\e043";
}
.social-icon-rss-rectangle:before {
	content: "\e044";
}
.social-icon-rss-round:before {
	content: "\e045";
}
.social-icon-google:before {
	content: "\e046";
}
.social-icon-googleplus:before {
	content: "\e047";
}
.social-icon-googleplus-tabs:before {
	content: "\e048";
}
.social-icon-googleplus-rectangle:before {
	content: "\e049";
}
.social-icon-googleplus-round:before {
	content: "\e04a";
}
.social-icon-yahoo-rectangle:before {
	content: "\e055";
}
.social-icon-word:before {
	content: "\e056";
}
.social-icon-excel:before {
	content: "\e057";
}
.social-icon-pdf:before {
	content: "\e058";
}
.social-icon-joomla:before {
	content: "\e059";
}
.social-icon-wordpress:before {
	content: "\e05a";
}
.social-icon-wordpress-rectangle:before {
	content: "\49";
}
.social-icon-deviantart-round:before {
	content: "\6a";
}
.social-icon-linkedin:before {
	content: "\69";
}
.social-icon-delicious-round:before {
	content: "\4c";
}
.social-icon-stumbleupon:before {
	content: "\2f";
}
.social-icon-delicious:before {
	content: "\23";
}
.social-icon-picasa-rectangle:before {
	content: "\e01f";
}
.social-icon-delicious-rectangle:before {
	content: "\e020";
}
.social-icon-pinterest:before {
	content: "\e021";
}
.social-icon-pinterest-round:before {
	content: "\e022";
}
.social-icon-pinterest-rectangle:before {
	content: "\e023";
}
.social-icon-stumbleupon-round:before {
	content: "\e024";
}
.social-icon-stumbleupon-rectangle:before {
	content: "\e025";
}
.social-icon-linkedin-round:before {
	content: "\e026";
}
.social-icon-linkedin-rectangle:before {
	content: "\e027";
}
.social-icon-lastfm:before {
	content: "\e028";
}
.social-icon-forrst-rectangle:before {
	content: "\e035";
}
.social-icon-deviantart:before {
	content: "\e036";
}
.social-icon-deviantart-rectangle:before {
	content: "\e037";
}
.social-icon-youtube-full:before {
	content: "\e038";
}
.social-icon-youtube:before {
	content: "\e039";
}
.social-icon-vimeo:before {
	content: "\e03a";
}
.social-icon-vimeo-rectangle:before {
	content: "\e03b";
}
.social-icon-skype:before {
	content: "\e03c";
}
.social-icon-facebook:before {
	content: "\e03d";
}
.social-icon-facebook-round:before {
	content: "\e03e";
}
.social-icon-google-drive:before {
	content: "\e04b";
}
.social-icon-xing-rectangle:before {
	content: "\e04c";
}
.social-icon-xing-round:before {
	content: "\e04d";
}
.social-icon-paypal:before {
	content: "\e04e";
}
.social-icon-github:before {
	content: "\e04f";
}
.social-icon-github-rectangle:before {
	content: "\e050";
}
.social-icon-github-kitty:before {
	content: "\e051";
}
.social-icon-tumblr:before {
	content: "\e052";
}
.social-icon-tumblr-rectangle:before {
	content: "\e053";
}
.social-icon-yahoo:before {
	content: "\e054";
}


/* BS others */
h1 small { font-size: 20px }

.pagination ul > .disabled > span, .pagination ul > .disabled > a, .pagination ul > .disabled > a:hover, .pagination ul > .disabled > a:focus {
    background-color: #CCCCCC;
    color: #555;
}	
.pagination ul > li {padding: 0; background-image: none}
.btn { }
section .row-fluid  br { float: none; width: 0; height: 0; position: absolute; clear: none}
.btn:focus { outline: none; outline-offset: 0 }

.dropdown-menu li { 
	background: none;
    padding-left: 0;
}

.pager li > a, .pager li > span { border-radius:3px; -webkit-border-radius:3px}

.form-inline .btn,
.form-search .btn,
.navbar-form .btn { }
.navbar .btn, .navbar .btn-group, .navbar input  {}

.input-append input[type="text"],
.input-append .add-on, .input-prepend .add-on { }

.form-inline input[type="password"] {margin-right: 10px}
form input[type="radio"], form .checkbox input[type="checkbox"],
.control-group input[type="radio"], .control-group .checkbox input[type="checkbox"], .control-group .radio input[type="radio"], .control-group .checkbox input[type="checkbox"],
.form-search .radio input[type="radio"], .form-search .checkbox input[type="checkbox"], .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
    margin-top: 3px; 
}
.navbar .container .btn { }
.navbar .navbar-form {  }

.nav-collapse .navbar-form, .nav-collapse .navbar-search {

}

.navbar-inverse .navbar-inner a:hover, .navbar-inverse .navbar-inner a:focus { color: #eee !important }

.nav-collapse .nav > li > a:hover, .nav-collapse .nav > li > a:focus, .nav-collapse .dropdown-menu a:hover, .nav-collapse .dropdown-menu a:focus {}

.nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > li.dropdown.open.active > a:hover, .nav > li.dropdown.open.active > a:focus {
    background-color: #CCCCCC;
    border-color: #999999;
    color: #FFFFFF;
}

.nav-tabs .dropdown-menu {margin:0}
.tabs-right > .nav-tabs, .tabs-left > .nav-tabs { margin-top: 0; margin-bottom: 0/**/ }

.nav-list {  margin: 0 }
.tab-content { }

.tab_wrap { margin: 3em 0 1.5em 0 !important }
.nav-tabs { /*border-bottom: 0;*/ text-transform: uppercase;  margin-bottom: 0  }

.nav-tabs > li > a {
	border-right: 1px solid #ddd;
	border-top: 2px solid #ddd;
	font-size:14px; line-height:14px; height: 14px; letter-spacing: -0.025em;
	padding: 8px 12px;
	color:#999; margin-right: -1px;
	border-radius: 0;
	-webkit-border-radius: 0;
}

.nav-tabs > li.first > a { border-left: 1px solid #ddd; }


.nav-tabs > .active > a, .nav-tabs > .active > a:hover, .nav-tabs > .active > a:focus {
	border-top: 2px solid transparent;
	border-bottom: 1px solid #fff; 
}

.nav-stacked li a:hover,
.nav-stacked li a:focus {border-top-width: 1px !important}

.nav.nav-tabs .dropdown-toggle .caret {
	border-bottom-color: #555;
	border-top-color: #555;
}


.nav .dropdown-toggle:hover .caret, .nav .dropdown-toggle:focus .caret,
.nav.nav-tabs .dropdown-toggle:hover .caret, .nav .dropdown-toggle:focus .caret {
	border-bottom-color: #333;
	border-top-color: #333;
}

.nav-tabs > li > a:hover { background-color: transparent; border-color: #ddd }

.nav-tabs > li > a:hover {
	border-top: 2px solid #555;
	color: #555;
}

.tabs-right > .nav-tabs > li > a,
.tabs-left > .nav-tabs > li > a,
.tabs-below > .nav-tabs > li > a {  border-radius: 0;  -webkit-border-radius: 0; }

.tabs-below > .nav-tabs > li { margin-top: -1px !important; }
.tabs-below > .nav-tabs > li a { border-top: 1px solid #ddd; border-bottom: 2px solid #ddd;  }
.tabs-below > .nav-tabs > li a:hover, 
.tabs-below > .nav-tabs > li a:focus { border-bottom: 2px solid #555;  }

.tabs-below > .nav-tabs > li.active a, 
.tabs-below > .nav-tabs > li.active a:hover, 
.tabs-below > .nav-tabs > li.active a:focus { border-top: 1px solid #FFFFFF !important; border-bottom: 2px solid transparent }


.tabs-left > .nav-tabs > li a { border: 0 }
.tabs-left > .nav-tabs > li.first a{ border-top: 1px solid #ddd !important }
.tabs-left > .nav-tabs > li a{ border-bottom: 1px solid #ddd }

.tabs-left > .nav-tabs > li { margin-right: -1px !important; margin-bottom: 0 !important }
.tabs-left > .nav-tabs > li a { border-left: 2px solid #ddd; margin: 0  }
.tabs-left > .nav-tabs > li a:hover, 
.tabs-left > .nav-tabs > li a:focus { border-left: 2px solid #555; border-top: 0 }

.tabs-left > .nav-tabs > li.active a,
.tabs-left > .nav-tabs > li.active a:hover, 
.tabs-left > .nav-tabs > li.active a:focus { border-right: 1px solid #FFFFFF !important; border-left: 2px solid transparent }


.tabs-right > .nav-tabs > li a { border: 0 }
.tabs-right > .nav-tabs > li.first a{ border-top: 1px solid #ddd !important }
.tabs-right > .nav-tabs > li a{ border-bottom: 1px solid #ddd }

.tabs-right > .nav-tabs > li { margin-left: -1px !important; margin-bottom: 0 !important }
.tabs-right > .nav-tabs > li a { border-right: 2px solid #ddd; margin: 0  }
.tabs-right > .nav-tabs > li a:hover, 
.tabs-right > .nav-tabs > li a:focus { border-right: 2px solid #555; border-top: 0 }

.tabs-right > .nav-tabs > li.active a,
.tabs-right > .nav-tabs > li.active a:hover, 
.tabs-right > .nav-tabs > li.active a:focus { border-left: 1px solid #FFFFFF !important; border-right: 2px solid transparent }

/* accordion */
.accordion-group {
    border: 1px solid #ddd; border-top: 0;
    border-radius: 0; -webkit-border-radius: 0;
    margin-bottom: 0;
}
.accordion-group.first {border-top: 1px solid #ddd;}

.accordion-heading .accordion-toggle {}


.navbar .brand { line-height: 1 }

.btn-inverse {background-color: #444; border-color: #333}

.dropdown-menu {
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.075);
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.075);
	padding: 3px 0;
}


.dropdown-menu .divider {
    margin: 2px 1px;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, 
.dropdown-submenu:hover > a, .dropdown-submenu:focus > a,
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, 
.dropdown-menu > .active > a:focus, .nav-list > .active > a,
.nav-list > .active > a:hover, .nav-pills > .active > a, .nav-pills > .active > a:hover,

.btn-primary, .btn-danger, .btn,
.btn-warning, .btn-success,
.btn-info, .btn-inverse { background-image: none !important; box-shadow: none !important; -webkit-box-shadow: none !important; }

.btn-warning + .dropdown-menu > li > a:hover, 
.btn-warning + .dropdown-menu > li > a:focus, 
.btn-warning + .dropdown-submenu:hover > a, 
.btn-warning + .dropdown-submenu:focus > a { background-color: #FAA732; background-image: none !important; }

.btn-inverse + .dropdown-menu > li > a:hover, 
.btn-inverse + .dropdown-menu > li > a:focus, 
.btn-inverse + .dropdown-submenu:hover > a, 
.btn-inverse + .dropdown-submenu:focus > a { background-color: #444; background-image: none !important; }

.btn-danger + .dropdown-menu > li > a:hover, 
.btn-danger + .dropdown-menu > li > a:focus, 
.btn-danger + .dropdown-submenu:hover > a, 
.btn-danger + .dropdown-submenu:focus > a { background-color: #DA4F49; background-image: none !important; }

.btn-success + .dropdown-menu > li > a:hover, 
.btn-success + .dropdown-menu > li > a:focus, 
.btn-success + .dropdown-submenu:hover > a, 
.btn-success + .dropdown-submenu:focus > a { background-color: #5BB75B; background-image: none !important; }

.btn-info + .dropdown-menu > li > a:hover, 
.btn-info + .dropdown-menu > li > a:focus, 
.btn-info + .dropdown-submenu:hover > a, 
.btn-info + .dropdown-submenu:focus > a { background-color: #2F96B4; background-image: none !important; }

.well {padding: 0 18px}
.well p { margin: 0 }
#examples .row-fluid p .btn { margin: 0 5px 5px 0  }
#examples .row-fluid p { margin-top: 0 }
#examples .btn-toolbar { margin-top: 0 }
#examples input[type="text"],
#examples input[type="mail"],
#examples input[type="password"] { width: auto }
pre.prettyprint { margin-bottom: 18px !important }

.carousel-control { background: none transparent; padding: 0; border:0 }

/* fluid grids 
.row-fluid .span1 {width: 5.98%}
.row-fluid .span2 {width: 14.52%}
.row-fluid .span3 {width: 23.07%}
.row-fluid .span4 {width: 31.62%}
.row-fluid .span5 {width: 40.17%}
.row-fluid .span6 {width: 48.71%}*/