/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* BACKGROUND GRADIENT */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
body {
  background-image: none;
  background-color: white;
}

div#wrapper {
  width: 100%;
  max-width: none;
  background-color: transparent;
  border: 0;
  padding-left: 0;
  padding-right: 0;
}

div.primarynav {
  height: 40px;
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, white, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(top, white, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(top, white, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(top, white, rgba(255, 255, 255, 0));
  background-image: linear-gradient(top, white, rgba(255, 255, 255, 0));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='white', endColorStr='rgba(255, 255, 255, 0)');
}

div.paraimg > div {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

header h4 {
  margin-top: .5em;
  font-size: 1.0rem;
  text-transform: uppercase;
  margin-bottom: 1em;
}

section#content {
  margin-top: 3em;
}

article {
  max-width: 800px;
  width: 82%;
  margin: 1.25em auto;
  padding: 0;
}
article img {
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
article p span.caption {
  font-family: "proxima-nova-extra-condensed", Verdana, Helvetica, sans-serif;
  color: #999;
  display: block;
  text-align: center;
  line-height: 1em;
  padding-bottom: .7em;
}
article h2 {
  font-family: "proxima-nova-extra-condensed", Verdana, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.8em;
  color: #333;
  margin-top: 1.3em;
}
article h3 {
  font-family: "proxima-nova-extra-condensed", Verdana, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #333;
}
article p, article ul li {
  font-family: "bookmania", Georgia, Times, serif;
  font-weight: 400;
  font-size: 1.1em;
  line-height: 1.65em;
  margin-bottom: .75em;
}
article ul {
  margin-left: 4em;
  margin-bottom: .75em;
}
article ul li {
  list-style-type: square;
  margin-bottom: 0;
}

article aside.links {
  width: 25%;
  float: right;
  margin-right: -8%;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding: 0em 1em;
  margin-left: 1.5em;
  margin-bottom: 1em;
  background-color: #ecf0f4;
}
article aside.links h2 {
  font-size: 1.2rem;
  text-shadow: 1px 0 0 white;
}
article aside.links ul {
  margin-left: 0;
}
article aside.links ul li {
  list-style-type: none;
  font-family: "proxima-nova-extra-condensed", Verdana, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 1em;
  font-size: 1.2em;
}
article aside.links ul li a {
  padding-right: 25px;
  background: transparent none right 35% no-repeat;
}
article aside.links ul li a:hover {
  background-image: url(../art/rt_arrow_blue.png);
}
article aside.links ul li em {
  color: #f5a803;
  font-size: .89em;
  display: block;
}

article section.gallery {
  border: 1px solid #999;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
  padding: 0em 1em;
  margin-bottom: 1em;
}
article section.gallery ul {
  margin-left: 0;
}
article section.gallery section.gallery ul li {
  list-style-type: none;
}

.code, pre {
  font-family: "Monaco";
  width: 100%;
  height: 50em;
  overflow: scroll;
  border: 1px solid #859dac;
  border-left-width: 3px;
  padding: 1em;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

/*# sourceMappingURL=article.css.map */
