/* ==========================================================================
	 Stylesheets for all screen
	 ========================================================================== */
/* main configurations */
/* ==========================================================================
   Main Configurations
   ========================================================================== */
/* variables */
/**
 * Main Layout
 **/
/* main mixins functions */
/* ==========================================================================
   Useful mixins functions
   ========================================================================== */
/**
 * Required parent that have position relative. Or use absolute-center-parent mixins
 */
/* User blueprint grid stylesheet */
/* -----------------------------------------------------------------------


 Blueprint CSS Framework 1.0.1
 http://blueprintcss.org

   * Copyright (c) 2007-Present. See LICENSE for more info.
   * See README for instructions on how to use Blueprint.
   * For credits and origins, see AUTHORS.
   * This is a compressed file. See the sources in the 'src' directory.

----------------------------------------------------------------------- */
/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */
/* line 8, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
html {
  margin: 0;
  padding: 0;
  border: 0;
}

/* line 21, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */
/* line 32, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
article, aside, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Line-height should always be unitless! */
/* line 37, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
body {
  line-height: 1.5;
  background: white;
}

/* Tables still need 'cellspacing="0"' in the markup. */
/* line 43, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
table {
  border-collapse: separate;
  border-spacing: 0;
}

/* float:none prevents the span-x classes from breaking table-cell display */
/* line 48, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  float: none !important;
}

/* line 53, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
table, th, td {
  vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
/* line 58, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
}

/* line 59, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
blockquote, q {
  quotes: "" "";
}

/* Remove annoying border on linked images. */
/* line 62, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
a img {
  border: none;
}

/* Remember to define your own focus styles! */
/* line 65, ../../WEB-INF/scss/vendor/blueprint/src/_reset.scss */
:focus {
  outline: 0;
}

/* --------------------------------------------------------------

	 forms.css
	 * Sets up some default styling for forms
	 * Gives you classes to enhance your forms

	 Usage:
	 * For text fields, use class .title or .text
	 * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */
/*
	A special hack is included for IE8 since it does not apply padding
	correctly on fieldsets
 */
/* line 17, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
label {
  font-weight: bold;
}

/* line 18, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
fieldset {
  padding: 0 1.4em 1.4em 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc;
}

/* line 19, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
legend {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: -0.2em;
  margin-bottom: 1em;
}

/* line 21, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
fieldset, #IE8#HACK {
  padding-top: 1.4em;
}

/* line 22, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
legend, #IE8#HACK {
  margin-top: 0;
  margin-bottom: 0;
}

/* Form fields
-------------------------------------------------------------- */
/*
	Attribute selectors are used to differentiate the different types
	of input elements, but to support old browsers, you will have to
	add classes for each one. ".title" simply creates a large text
	field, this is purely for looks.
 */
/* line 35, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
input[type=text], input[type=password], input[type=url], input[type=email],
input.text, input.title,
textarea {
  background-color: #fff;
  border: 1px solid #bbb;
  color: #000;
}

/* line 42, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
input[type=text]:focus, input[type=password]:focus, input[type=url]:focus, input[type=email]:focus,
input.text:focus, input.title:focus,
textarea:focus {
  border-color: #666;
}

/* line 45, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
select {
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
}

/* line 49, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
input[type=text], input[type=password], input[type=url], input[type=email],
input.text, input.title,
textarea, select {
  margin: 0.5em 0;
}

/* line 54, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
input.text,
input.title {
  width: 300px;
  padding: 5px;
}

/* line 55, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
input.title {
  font-size: 1.5em;
}

/* line 56, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
textarea {
  width: 390px;
  height: 250px;
  padding: 5px;
}

/*
	This is to be used on forms where a variety of elements are
	placed side-by-side. Use the p tag to denote a line.
 */
/* line 62, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
form.inline {
  line-height: 3;
}

/* line 63, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
form.inline p {
  margin-bottom: 0;
}

/* Success, info, notice and error/alert boxes
-------------------------------------------------------------- */
/* line 73, ../../WEB-INF/scss/vendor/blueprint/src/_forms.scss */
.error,
.alert,
.notice,
.success,
.info {
  padding: 0.8em;
  margin-bottom: 1em;
}

/* "normalize" before "main" */
/* normalize.css v1.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
/* line 21, ../../WEB-INF/scss/vendor/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
/* line 31, ../../WEB-INF/scss/vendor/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, ../../WEB-INF/scss/vendor/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3,
 * and Safari 4.
 * Known issue: no IE 6 support.
 */
/* line 53, ../../WEB-INF/scss/vendor/_normalize.scss */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 68, ../../WEB-INF/scss/vendor/_normalize.scss */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
/* line 83, ../../WEB-INF/scss/vendor/_normalize.scss */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE 6/7.
 */
/* line 91, ../../WEB-INF/scss/vendor/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
/* line 113, ../../WEB-INF/scss/vendor/_normalize.scss */
a:active,
a:hover {
  outline: 0;
  text-decoration: underline;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE 6/7.
 * Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
/* line 129, ../../WEB-INF/scss/vendor/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 134, ../../WEB-INF/scss/vendor/_normalize.scss */
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

/* line 139, ../../WEB-INF/scss/vendor/_normalize.scss */
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

/* line 144, ../../WEB-INF/scss/vendor/_normalize.scss */
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

/* line 149, ../../WEB-INF/scss/vendor/_normalize.scss */
h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

/* line 154, ../../WEB-INF/scss/vendor/_normalize.scss */
h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
/* line 163, ../../WEB-INF/scss/vendor/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
/* line 172, ../../WEB-INF/scss/vendor/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 176, ../../WEB-INF/scss/vendor/_normalize.scss */
blockquote {
  margin: 1em 40px;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 184, ../../WEB-INF/scss/vendor/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 6/7/8/9.
 */
/* line 192, ../../WEB-INF/scss/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/*
 * Addresses margins set differently in IE 6/7.
 */
/* line 202, ../../WEB-INF/scss/vendor/_normalize.scss */
p,
pre {
  margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
/* line 213, ../../WEB-INF/scss/vendor/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 223, ../../WEB-INF/scss/vendor/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Addresses CSS quotes not supported in IE 6/7.
 */
/* line 233, ../../WEB-INF/scss/vendor/_normalize.scss */
q {
  quotes: none;
}

/*
 * Addresses `quotes` property not supported in Safari 4.
 */
/* line 242, ../../WEB-INF/scss/vendor/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 251, ../../WEB-INF/scss/vendor/_normalize.scss */
small {
  font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 260, ../../WEB-INF/scss/vendor/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 267, ../../WEB-INF/scss/vendor/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 271, ../../WEB-INF/scss/vendor/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE 6/7.
 */
/* line 286, ../../WEB-INF/scss/vendor/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 290, ../../WEB-INF/scss/vendor/_normalize.scss */
dd {
  margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE 6/7.
 */
/* line 300, ../../WEB-INF/scss/vendor/_normalize.scss */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE 7.
 */
/* line 309, ../../WEB-INF/scss/vendor/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improves image quality when scaled in IE 7.
 */
/* line 323, ../../WEB-INF/scss/vendor/_normalize.scss */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 332, ../../WEB-INF/scss/vendor/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
/* line 344, ../../WEB-INF/scss/vendor/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE 6/7.
 */
/* line 356, ../../WEB-INF/scss/vendor/_normalize.scss */
form {
  margin: 0;
}

/*
 * Define consistent border, margin, and padding.
 */
/* line 364, ../../WEB-INF/scss/vendor/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 6/7/8/9.
 * 2. Corrects text not wrapping in Firefox 3.
 * 3. Corrects alignment displayed oddly in IE 6/7.
 */
/* line 376, ../../WEB-INF/scss/vendor/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
/* line 393, ../../WEB-INF/scss/vendor/_normalize.scss */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

/*
 * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 406, ../../WEB-INF/scss/vendor/_normalize.scss */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 423, ../../WEB-INF/scss/vendor/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/*
 * Re-set default cursor for disabled elements.
 */
/* line 434, ../../WEB-INF/scss/vendor/_normalize.scss */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 * 3. Removes excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 446, ../../WEB-INF/scss/vendor/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 459, ../../WEB-INF/scss/vendor/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 472, ../../WEB-INF/scss/vendor/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 3+.
 */
/* line 481, ../../WEB-INF/scss/vendor/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 6/7/8/9.
 * 2. Improves readability and alignment in all browsers.
 */
/* line 491, ../../WEB-INF/scss/vendor/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 504, ../../WEB-INF/scss/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==========================================================================
   HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
   ========================================================================== */
/* line 9, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
html,
button,
input,
select,
textarea {
  color: #222;
}

/* line 13, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
body {
  font-size: 1em;
  line-height: 1.4;
}

/* line 18, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* line 23, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/* line 28, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 37, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
img {
  vertical-align: middle;
}

/* line 41, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* line 47, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
textarea {
  resize: vertical;
}

/* line 51, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ===== Initializr Styles ==================================================
   Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
   ========================================================================== */
/* line 63, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
body {
  font: 16px/26px Helvetica, Helvetica Neue, Arial;
  background: #1b1b1b;
}

/* line 69, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.wrapper {
  width: 90%;
  margin: 0 5%;
  background: #fcb040 url('http://www.mangamagazine.net/assets/img/yellow-background.jpg?1378792291');
}

/* ===================
    ALL: Orange Theme
   =================== */
/* line 79, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.header-container {
  /*border-bottom: 20px solid #e44d26;*/
}

/* line 84, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.footer-container,
.main aside {
  /*border-top: 20px solid #e44d26;*/
}

/* line 90, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.header-container,
.footer-container,
.main aside {
  /*background: #f16529;*/
}

/* line 94, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.title {
  color: white;
}

/* ==============
    MOBILE: Menu
   ============== */
/* line 102, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
nav ul {
  margin: 0;
  padding: 0;
}

/* line 107, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
nav a {
  display: block;
  margin-bottom: 10px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background: #e44d26;
}

/* line 121, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
nav a:hover,
nav a:visited {
  color: white;
}

/* line 125, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
nav a:hover {
  text-decoration: underline;
}

/* ==============
    MOBILE: Main
   ============== */
/* line 133, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.main {
  padding: 0;
}

/* line 137, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.main article h1 {
  font-size: 2em;
}

/* line 141, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.main aside {
  color: white;
  padding: 0px 5% 10px;
}

/* line 146, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.footer-container footer {
  color: white;
  padding: 20px 0;
}

/* ===============
    ALL: IE Fixes
   =============== */
/* line 155, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.ie7 .title {
  padding-top: 20px;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ===============
    Maximal Width
   =============== */
/* line 180, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.wrapper {
  width: 1020px;
  /* 1133.3333px - 10% for margins */
  margin: 0 auto;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/* line 189, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}

/* line 196, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/* line 203, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* line 208, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 220, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* line 229, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.invisible {
  visibility: hidden;
}

/* line 234, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

/* line 239, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.clearfix:after {
  clear: both;
}

/* line 243, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  /* line 252, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* line 260, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  a,
  a:visited {
    text-decoration: underline;
    outline: none;
  }

  /* line 265, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 269, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  /* line 279, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 284, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 289, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  /* line 294, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  tr,
  img {
    page-break-inside: avoid;
  }

  /* line 298, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  /* line 308, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 314, ../../WEB-INF/scss/vendor/_html5_boilerplate.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* "normalize" before "main" */
/* qTip2 - Pretty powerful tooltips - v2.0.0pre - 2012-12-06
* http://craigsworks.com/projects/qtip2/
* Copyright (c) 2012 Craig Michael Thompson; Licensed MIT, GPL */
/* Core qTip styles */
/* line 6, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
div.qtip, div.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 280px;
  min-width: 50px;
  font-size: 10.5px;
  line-height: 12px;
  direction: ltr;
}

/* line 21, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-content {
  position: relative;
  padding: 5px 9px;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

/* line 30, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-titlebar {
  position: relative;
  padding: 5px 35px 5px 10px;
  overflow: hidden;
  border-width: 0 0 1px;
  font-weight: bold;
}

/* line 39, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-titlebar + .qtip-content {
  border-top-width: 0 !important;
}

/* Default close button class */
/* line 42, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-close {
  position: absolute;
  right: -9px;
  top: -9px;
  cursor: pointer;
  outline: medium none;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
}

/* line 54, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-titlebar .qtip-close {
  right: 4px;
  top: 50%;
  margin-top: -9px;
}

/* line 59, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
* html .qtip-titlebar .qtip-close {
  top: 16px;
}

/* IE fix */
/* line 62, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr;
  vertical-align: middle;
}

/* line 69, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-icon, .qtip-icon .ui-icon {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
}

/* line 76, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-icon .ui-icon {
  width: 18px;
  height: 14px;
  text-align: center;
  text-indent: 0;
  font: normal bold 10px/13px Tahoma, sans-serif;
  color: inherit;
  background: transparent none no-repeat -100em -100em;
}

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
/* Default tooltip style */
/* line 96, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-default {
  border-width: 1px;
  border-style: solid;
  border-color: #F1D031;
  background-color: #FFFFA3;
  color: #555;
}

/* line 105, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-default .qtip-titlebar {
  background-color: #FFEF93;
}

/* line 109, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-default .qtip-icon {
  border-color: #CCC;
  background: #F1F1F1;
  color: #777;
}

/* line 115, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111;
}

/* Light tooltip style */
/* line 122, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-light {
  background-color: white;
  border-color: #E2E2E2;
  color: #454545;
}

/* line 128, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-light .qtip-titlebar {
  background-color: #f1f1f1;
}

/* Dark tooltip style */
/* line 134, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-dark {
  background-color: #505050;
  border-color: #303030;
  color: #f3f3f3;
}

/* line 140, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-dark .qtip-titlebar {
  background-color: #404040;
}

/* line 144, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-dark .qtip-icon {
  border-color: #444;
}

/* line 148, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-dark .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}

/* Cream tooltip style */
/* line 154, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cream {
  background-color: #FBF7AA;
  border-color: #F9E98E;
  color: #A27D35;
}

/* line 160, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cream .qtip-titlebar {
  background-color: #F0DE7D;
}

/* line 164, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cream .qtip-close .qtip-icon {
  background-position: -82px 0;
}

/* Red tooltip style */
/* line 170, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-red {
  background-color: #F78B83;
  border-color: #D95252;
  color: #912323;
}

/* line 176, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-red .qtip-titlebar {
  background-color: #F06D65;
}

/* line 180, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-red .qtip-close .qtip-icon {
  background-position: -102px 0;
}

/* line 184, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-red .qtip-icon {
  border-color: #D95252;
}

/* line 188, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-red .qtip-titlebar .ui-state-hover {
  border-color: #D95252;
}

/* Green tooltip style */
/* line 194, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-green {
  background-color: #CAED9E;
  border-color: #90D93F;
  color: #3F6219;
}

/* line 200, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-green .qtip-titlebar {
  background-color: #B0DE78;
}

/* line 204, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-green .qtip-close .qtip-icon {
  background-position: -42px 0;
}

/* Blue tooltip style */
/* line 210, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-blue {
  background-color: #E5F6FE;
  border-color: #ADD9ED;
  color: #5E99BD;
}

/* line 216, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-blue .qtip-titlebar {
  background-color: #D0E9F5;
}

/* line 220, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0;
}

/* Add shadows to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
/* line 226, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-shadow {
  -webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}

/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
/* line 235, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* Youtube tooltip style */
/* line 242, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-youtube {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 3px #333;
  -moz-box-shadow: 0 0 3px #333;
  box-shadow: 0 0 3px #333;
  color: white;
  border-width: 0;
  background: #4A4A4A;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #4a4a4a), color-stop(100%, black));
  background-image: -webkit-linear-gradient(top, #4a4a4a 0, black 100%);
  background-image: -moz-linear-gradient(top, #4a4a4a 0, black 100%);
  background-image: -ms-linear-gradient(top, #4a4a4a 0, black 100%);
  background-image: -o-linear-gradient(top, #4a4a4a 0, black 100%);
}

/* line 262, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-youtube .qtip-titlebar {
  background-color: #4A4A4A;
  background-color: rgba(0, 0, 0, 0);
}

/* line 267, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-youtube .qtip-content {
  padding: .75em;
  font: 12px arial,sans-serif;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);";
}

/* line 275, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-youtube .qtip-icon {
  border-color: #222;
}

/* line 279, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-youtube .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}

/* jQuery TOOLS Tooltip style */
/* line 285, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools {
  background: #232323;
  background: rgba(0, 0, 0, 0.7);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#717171), to(#232323));
  background-image: -moz-linear-gradient(top, #717171, #232323);
  background-image: -webkit-linear-gradient(top, #717171, #232323);
  background-image: -ms-linear-gradient(top, #717171, #232323);
  background-image: -o-linear-gradient(top, #717171, #232323);
  border: 2px solid #ddd;
  border: 2px solid #f1f1f1;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 12px #333;
  -moz-box-shadow: 0 0 12px #333;
  box-shadow: 0 0 12px #333;
}

/* IE Specific */
/* line 307, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools .qtip-titlebar {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)";
}

/* line 312, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools .qtip-content {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)";
}

/* line 318, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools .qtip-titlebar,
.qtip-jtools .qtip-content {
  background: transparent;
  color: white;
  border: 0 dashed transparent;
}

/* line 324, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools .qtip-icon {
  border-color: #555;
}

/* line 328, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-jtools .qtip-titlebar .ui-state-hover {
  border-color: #333;
}

/* Cluetip style */
/* line 334, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cluetip {
  -webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
  background-color: #D9D9C2;
  color: #111;
  border: 0 dashed transparent;
}

/* line 344, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cluetip .qtip-titlebar {
  background-color: #87876A;
  color: white;
  border: 0 dashed transparent;
}

/* line 350, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cluetip .qtip-icon {
  border-color: #808064;
}

/* line 354, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-cluetip .qtip-titlebar .ui-state-hover {
  border-color: #696952;
  color: #696952;
}

/* Tipsy style */
/* line 361, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipsy {
  background: black;
  background: rgba(0, 0, 0, 0.87);
  color: white;
  border: 0 solid transparent;
  font-size: 11px;
  font-family: 'Lucida Grande', sans-serif;
  font-weight: bold;
  line-height: 16px;
  text-shadow: 0 1px black;
}

/* line 375, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipsy .qtip-titlebar {
  padding: 6px 35px 0 10;
  background-color: transparent;
}

/* line 380, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipsy .qtip-content {
  padding: 6px 10;
}

/* line 384, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipsy .qtip-icon {
  border-color: #222;
  text-shadow: none;
}

/* line 389, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipsy .qtip-titlebar .ui-state-hover {
  border-color: #303030;
}

/* Tipped style */
/* line 395, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipped {
  border: 3px solid #959FA9;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #F9F9F9;
  color: #454545;
  font-weight: normal;
  font-family: serif;
}

/* line 409, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipped .qtip-titlebar {
  border-bottom-width: 0;
  color: white;
  background: #3A79B8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#3a79b8), to(#2e629d));
  background-image: -webkit-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -moz-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -ms-linear-gradient(top, #3a79b8, #2e629d);
  background-image: -o-linear-gradient(top, #3a79b8, #2e629d);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)";
}

/* line 423, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipped .qtip-icon {
  border: 2px solid #285589;
  background: #285589;
}

/* line 428, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-tipped .qtip-icon .ui-icon {
  background-color: #FBFBFB;
  color: #555;
}

/**
 * Twitter Bootstrap style.
 *
 * Tested with IE 8, IE 9, Chrome 18, Firefox 9, Opera 11.
 * Does not work with IE 7.
 */
/* line 440, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap {
  /** Taken from Bootstrap body */
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  /** Taken from Bootstrap .popover */
  padding: 1px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

/* line 462, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-titlebar {
  /** Taken from Bootstrap .popover-title */
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

/* line 476, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-titlebar .qtip-close {
  /**
   * Overrides qTip2:
   * .qtip-titlebar .qtip-close{
   *   [...]
   *   right: 4px;
   *   top: 50%;
   *   [...]
   *   border-style: solid;
   * }
   */
  right: 11px;
  top: 45%;
  border-style: none;
}

/* line 492, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-content {
  /** Taken from Bootstrap .popover-content */
  padding: 9px 14px;
}

/* line 497, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-icon {
  /**
   * Overrides qTip2:
   * .qtip-default .qtip-icon {
   *   border-color: #CCC;
   *   background: #F1F1F1;
   *   color: #777;
   * }
   */
  background: transparent;
}

/* line 509, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-icon .ui-icon {
  /**
   * Overrides qTip2:
   * .qtip-icon .ui-icon{
   *   width: 18px;
   *   height: 14px;
   * }
   */
  width: auto;
  height: auto;
  /* Taken from Bootstrap .close */
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

/* line 531, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip-bootstrap .qtip-icon .ui-icon:hover {
  /* Taken from Bootstrap .close:hover */
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/* IE9 fix - removes all filters */
/* line 543, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  filter: none;
  -ms-filter: none;
}

/* Tips plugin */
/* line 550, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip .qtip-tip {
  margin: 0 auto;
  overflow: hidden;
  z-index: 10;
}

/* line 557, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip .qtip-tip,
.qtip .qtip-tip .qtip-vml {
  position: absolute;
  color: #123456;
  background: transparent;
  border: 0 dashed transparent;
}

/* line 565, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip .qtip-tip canvas {
  top: 0;
  left: 0;
}

/* line 567, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtip .qtip-tip .qtip-vml {
  behavior: url(http://www.mangamagazine.net/assets/css/screen.css?versionId=2013.10.14.1130#default#VML);
  display: inline-block;
  visibility: visible;
}

/* Modal plugin */
/* line 573, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
#qtip-overlay {
  position: fixed;
  left: -10000em;
  top: -10000em;
}

/* Applied to modals with show.modal.blur set to true */
/* line 580, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
#qtip-overlay.blurs {
  cursor: pointer;
}

/* Change opacity of overlay here */
/* line 583, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
#qtip-overlay div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

/* IE6 Modal plugin fix */
/* line 597, ../../WEB-INF/scss/vendor/qtip2/_jquery.qtip.scss */
.qtipmodal-ie6fix {
  position: absolute !important;
}

/**************************************************************
 * Additional Styles
 **************************************************************/
/* line 30, ../../WEB-INF/scss/screen.scss */
menu,
ol,
ul {
  padding: 0;
}

/* line 41, ../../WEB-INF/scss/screen.scss */
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
input.text,
input.title,
textarea,
select {
  margin: 0;
}

/* line 44, ../../WEB-INF/scss/screen.scss */
textarea {
  resize: none;
}

/**
 * Main Styles
 **/
/* line 51, ../../WEB-INF/scss/screen.scss */
.f-left {
  float: left;
}

/* line 54, ../../WEB-INF/scss/screen.scss */
.f-right {
  float: right;
}

/* line 57, ../../WEB-INF/scss/screen.scss */
.clear-all {
  clear: both;
  font-size: 0;
  line-height: 0;
}

/* line 62, ../../WEB-INF/scss/screen.scss */
p.warning-msg {
  background: none repeat scroll 0 0 red;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
}

/* line 68, ../../WEB-INF/scss/screen.scss */
.loading {
  font-size: 0;
  text-indent: -9999px;
}

/* line 472, ../../WEB-INF/scss/includes/_mixins.scss */
::-webkit-input-placeholder {
  color: white;
}

/* line 473, ../../WEB-INF/scss/includes/_mixins.scss */
:-moz-placeholder {
  color: white;
}

/* line 474, ../../WEB-INF/scss/includes/_mixins.scss */
.placeholder {
  color: white;
}

@namespace url(http://www.w3.org/1999/xhtml);
/* line 74, ../../WEB-INF/scss/screen.scss */
*:-moz-placeholder:focus {
  color: white !important;
}

/* line 77, ../../WEB-INF/scss/screen.scss */
*[autofocus]:-moz-placeholder:focus {
  color: white !important;
}

/* line 80, ../../WEB-INF/scss/screen.scss */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
}

/* line 84, ../../WEB-INF/scss/screen.scss */
.ellipsis.multiline {
  white-space: normal;
}

/* line 87, ../../WEB-INF/scss/screen.scss */
.bg-cover-hover {
  background: url('http://www.mangamagazine.net/assets/img/bg-hover.png?1378792291') repeat scroll left top transparent;
}

/* line 90, ../../WEB-INF/scss/screen.scss */
.tooltip-data {
  display: none;
}

/* line 93, ../../WEB-INF/scss/screen.scss */
span.see-all {
  text-transform: uppercase;
}

/* Change checkbox style */
/* ref. http://www.maratz.com/blog/archives/2006/06/11/fancy-checkboxes-and-radio-buttons */
/* line 99, ../../WEB-INF/scss/screen.scss */
.round-checkbox {
  padding-left: 18px;
  background: url('http://www.mangamagazine.net/assets/img/check-off.png?1378792291') no-repeat scroll 0 1px transparent;
}
/* line 102, ../../WEB-INF/scss/screen.scss */
.round-checkbox.c_on {
  background: url('http://www.mangamagazine.net/assets/img/check-on.png?1378792291') no-repeat scroll 0 1px transparent;
}
/* line 105, ../../WEB-INF/scss/screen.scss */
.round-checkbox input[type="checkbox"] {
  position: absolute;
  left: -9999px;
}

/* line 109, ../../WEB-INF/scss/screen.scss */
.sign-out-link {
  text-transform: capitalize;
}