/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Fonts from Google - https://www.google.com/fonts */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Open Sans"), local("OpenSans"),
    url(http://themes.googleusercontent.com/static/fonts/opensans/v8/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff)
      format("woff");
}

/**
 * Table of Contents:
 *
 * 1.0 - Body
 * 2.0 - Headings
 * 3.0 - Text Elements
 * 4.0 - Links
 * 5.0 - Images
 * 6.0 - Common
 * 7.0 - Header Specific
 * 8.0 - Body Specific
 * 9.0 - Footer Specific
 * 10.0 - Responsive Design
 */

/**
 * 1.0 Body
 */

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #ddd;
}

/**
 * 2.0 Headings
 */

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: 800;
}

h1 {
  font-size: 120%;
}

h2 {
  font-size: 110%;
}

h3 {
  font-size: 100%;
}

h4 {
  font-size: 90%;
}

h5 {
  font-size: 80%;
}

h6 {
  font-size: 70%;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

/**
 * 3.0 Text Elements
 */

address {
  font-style: italic;
  margin-bottom: 24px;
}

abbr[title] {
  border-bottom: 1px dotted #2b2b2b;
  cursor: help;
}

b,
strong {
  font-weight: 700;
}

cite {
  border: none;
}

cite,
dfn,
em,
i {
  font-style: italic;
}

mark,
ins {
}

p {
  margin: 10px 0;
  line-height: 150%;
  word-wrap: break-word;
}

code,
kbd,
tt,
var,
samp,
pre {
  font-family: monospace, serif;
  line-height: 150%;
}

pre {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  max-width: 100%;
  overflow: auto;
  padding: 12px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

blockquote,
q {
  quotes: "«" "»" "‹" "›";
}

small {
  font-size: smaller;
}

big {
  font-size: 120%;
}

sup,
sub {
  font-size: 60%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

dl {
  margin: 0 0 24px;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 24px;
}

ul,
ol {
  margin: 0 0 24px 20px;
  padding-left: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin: 0 0 0 20px;
}

del {
  color: #888;
}

hr {
  margin: 15px 0;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  height: 1px;
}

/**
 * 4.0 Links
 */

a {
  color: #1a6;
  text-decoration: none;
}

a:visited {
  color: #1a6;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  color: #084;
  outline: 0;
}

/**
 * 5.0 Images
 */

img {
}

/**
 * 6.0 Common
 */

/*
.card {
  background: white;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
}

.rounded {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
*/

/**
 * 7.0 Header Specific
 */

#header {
  width: 100%;
  position: fixed;
  top: 0px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#header div {
  height: 40px;
}

#header #hd_main {
  text-align: center;
}

#header #hd_nav {
  width: 40px;
  height: 40px;
  float: left;
  position: relative;
}

#header #hd_nav div {
  width: 20px;
  height: 3px;
  background-color: gray;
  position: absolute;
  left: 10px;
}

#header #hd_nav .line1 {
  top: 12px;
}

#header #hd_nav .line2 {
  top: 18px;
}

#header #hd_nav .line3 {
  top: 24px;
}

#header #hd_search {
  width: 40px;
  height: 40px;
  float: right;
  position: relative;
}

#header #hd_search div {
  position: absolute;
}

#header #hd_search .lens {
  border: 2px solid gray;
  background: transparent;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  border-radius: 24px;
  left: 10px;
  top: 10px;
}

#header #hd_search .handle {
  width: 10px;
  height: 3px;
  background-color: gray;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Opera, Chrome, and Safari */
  left: 22px;
  top: 25px;
}

#header #hd_home {
  margin: 0 auto;
  padding: 5px 0;
  width: 165px;
  height: 30px;
}

#header #hd_logo {
  width: 165px;
  height: 30px;
  background: url(/old/img/logo/logo_nvidia.png);
  background-size: 165px 30px;
  color: transparent;
}

#header #hd_nav_bar {
  background-color: rgba(80, 80, 80, 0.8);
  display: none;
}

#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header li {
  height: 40px;
  line-height: 40px;
  display: inline-block;
}

#header li a {
  padding: 6px 5px;
}

#header li a:hover {
  border-style: solid;
  border-bottom-color: #084;
  border-bottom-width: 3px;
}

#header #hd_search_bar {
  width: 100%;
  background-color: rgba(80, 80, 80, 0.8);
  float: right;
  display: none;
}

#header form {
  position: relative;
}

#header input {
  margin: 5px;
  padding: 2px 10px;
  height: 24px;
  border: 1px solid gray;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

#header input:hover {
}

#header input:focus {
  outline: none;
}

#header button.search {
  margin: 5px;
  padding: 0;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
}

#header button.search div {
  position: absolute;
}

#header button.search .lens {
  border: 2px solid gray;
  background: transparent;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  left: 6px;
  top: 7px;
}

#header button.search .handle {
  width: 6px;
  height: 2px;
  background-color: gray;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Opera, Chrome, and Safari */
  left: 15px;
  top: 18px;
}

/**
 * 8.0 Body Specific
 */

#body {
  margin-top: 60px;
  width: 100%;
}

#body #left-rail {
  width: 190px;
  vertical-align: top;
  display: none;
}

#body .mod-left,
.mod-right {
  margin: 10px;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
  background: white;
}

#body .mod-left:first-child,
.mod-right:first-child {
  margin-top: 0;
}

#body #left-rail .mod-left .hd {
  padding: 10px;
  color: white;
  text-align: center;
  background: #1a6;
}

#body #left-rail .mod-left ul {
  margin: 0;
  list-style: none;
}

#body #left-rail .mod-left ul li {
  padding: 0 10px 10px;
  font-size: 85%;
}

#body #left-rail .mod-left ul li:first-child {
  padding-top: 10px;
}

#body #left-rail .mod-left ul.archives li ul {
  display: none;
}

#body #left-rail .mod-left ul li .ellipsis {
  max-width: 100%;
  height: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#body #left-rail .mod-left ul li .time {
  font-size: 75%;
  font-style: italic;
}

#body #right-rail {
  width: 100%;
  display: block;
}

#body #right-rail .bd {
  padding: 10px;
  text-align: center;
  background: #eee;
}

#body #center-rail {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

#body #center-rail .mod-center {
  margin: 10px 12px;
  background: white;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
}

#body #center-rail .mod-center:first-child {
  margin-top: 0;
}

#body #center-rail .mod-center .hd {
  margin-top: 10px;
  padding: 10px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  background: #1a6;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

#body #center-rail .mod-center .hd a {
  color: white;
}

#body #center-rail .mod-center .hd .dec {
  width: 5px;
  height: 100%;
  background: #1a6;
  position: absolute;
}

#body #center-rail .mod-center .hd .dec_left {
  top: 0;
  right: -5px;
}

#body #center-rail .mod-center .hd .dec_right {
  top: 0;
  left: -5px;
}

#body #center-rail .mod-center .hd .dec_s {
  width: 0;
  height: 0;
  border: 0 dashed transparent;
  border-top: 5px solid #074;
  position: absolute;
  top: 100%;
}

#body #center-rail .mod-center .hd .dec_left_s {
  border-left-width: 5px;
  left: -5px;
}

#body #center-rail .mod-center .hd .dec_right_s {
  border-right-width: 5px;
  right: -5px;
}

#body #center-rail .mod-center .bd {
  padding: 10px 15px;
}

#body #center-rail .mod-center .bd .tags {
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: right;
  position: relative;
}

#body #center-rail .mod-center .bd .tags .tag {
  margin: 5px 0 5px 5px;
  padding: 3px 6px;
  font-size: 70%;
  color: white;
  background: lightgray;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#body #center-rail .mod-center .bd .tags .share_link {
  position: absolute;
  top: 30px;
  right: 0;
  padding: 10px 20px;
  background: white;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 499;
  display: none;
}

#body #center-rail .mod-center .bd .tags .share_link .share_arrow {
  position: absolute;
  top: -7px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid;
  border-color: #ddd #fff #fff #ddd;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Opera, Chrome, and Safari */
}

#body #center-rail .mod-center .bd .tags .share_link .share_title {
  margin-bottom: 5px;
  text-align: left;
}

#body #center-rail .mod-center .bd .tags .share_link .share_url {
  border: 1px solid lightgray;
}

#body #center-rail .mod-center .bd .tags .share_link .share_icons {
  margin-top: 10px;
  text-align: right;
}

#body #center-rail .mod-center .bd .tags .share_link .share_icons .share_icon {
  display: inline-block;
  margin-left: 2px;
  width: 20px;
  height: 20px;
  background: #3c8;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}

#body
  #center-rail
  .mod-center
  .bd
  .tags
  .share_link
  .share_icons
  .share_icon
  a {
  color: white;
  vertical-align: middle;
}

#body #center-rail .mod-center .bd .content {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}

#body #center-rail .mod-center .bd .content p.photo {
  text-align: center;
  font-style: italic;
  color: gray;
}

#body #center-rail .mod-center .bd .content p.photo img {
  margin: 10px;
  padding: 7px;
  max-width: -moz-calc(100% - 40px);
  max-width: -webkit-calc(100% - 40px);
  max-width: calc(100% - 40px);
  height: auto;
  vertical-align: middle;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
  -webkit-box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.5);
}

#body #center-rail .mod-center .bd .content li {
  line-height: 150%;
}

#body #center-rail .mod-center .bd .content .gradient {
  width: 100%;
  height: 50px;
  background: -webkit-linear-gradient(
    rgba(255, 255, 255, 0),
    white
  ); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(
    rgba(255, 255, 255, 0),
    white
  ); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(
    rgba(255, 255, 255, 0),
    white
  ); /* For Firefox 3.6 to 15 */
  background: linear-gradient(
    rgba(255, 255, 255, 0),
    white
  ); /* Standard syntax */
  position: absolute;
  bottom: 0;
}

#body #center-rail .mod-center .bd .readmore {
  margin-top: 10px;
  padding: 5px 0;
  width: 100%;
  text-align: center;
  font-size: 80%;
}

#body #center-rail .mod-center .bd .showless {
  margin-top: 10px;
  padding: 5px 0;
  width: 100%;
  text-align: center;
  font-size: 80%;
  display: none;
}

#body #center-rail .mod-center .ft {
  padding: 10px 15px;
  background: #eee;
}

#body #center-rail .mod-center .ft .show_comments {
  margin-bottom: 10px;
  padding: 5px 0;
  width: 100%;
  text-align: center;
  font-size: 80%;
}

#body #center-rail .mod-center .ft .comments {
  display: none;
}

#body #center-rail .mod-center .ft .comment {
  margin: 10px 0;
}

#body #center-rail .mod-center .ft .comment_bd {
  font-size: 90%;
}

#body #center-rail .mod-center .ft .comment_ft {
  text-align: right;
}

#body #center-rail .mod-center .ft .comment_ft .name {
  display: inline-block;
  max-width: -moz-calc(100% - 160px);
  max-width: -webkit-calc(100% - 160px);
  max-width: calc(100% - 160px);
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  white-space: nowrap;
}

#body #center-rail .mod-center .ft .comment_ft .time {
  color: gray;
  font-size: 80%;
  font-style: italic;
}

#body #center-rail .mod-center .ft .comment_msg {
  width: 100%;
  font-size: 90%;
  color: red;
  text-align: center;
}

#body #center-rail .mod-center .ft form {
  width: 100%;
  display: none;
}

#body #center-rail .mod-center .ft textarea {
  padding: 6px 10px;
  width: 100%;
  height: 90px;
  box-sizing: border-box;
  resize: none;
  border: 1px solid lightgray;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#body #center-rail .mod-center .ft textarea.comment_fake {
  height: 30px;
}

#body #center-rail .mod-center .ft input {
  padding: 6px 10px;
  border: 1px solid lightgray;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

#body #center-rail .mod-center .ft button {
  margin-top: 10px;
  padding: 6px 10px;
  border: none;
  width: 100%;
  background: #1a6;
  color: white;
  font-size: 90%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#body #center-rail .mod-center-nav {
  margin: 10px 12px;
}

#body #center-rail .mod-center-nav .bd {
  margin: 0 auto;
}

#body #center-rail .mod-center-nav .bd .nav_card {
  padding: 10px 15px;
  background: white;
  border: 1px solid;
  border-color: #ddd #ccc #bbb;
}

#body #center-rail .mod-center-nav .bd .nav_card.left {
  float: left;
}

#body #center-rail .mod-center-nav .bd .nav_card.right {
  float: right;
}

#body #center-rail .mod-center-nav .bd .nav_card.center {
  margin-left: auto;
  margin-right: auto;
  width: 150px;
  text-align: center;
}

#body #center-rail .mod-center-nav .bd .clear {
  clear: both;
}

/**
 * 9.0 Footer Specific
 */

#footer {
  margin: 10px 0;
  width: 100%;
  text-align: center;
  font-size: 70%;
  color: gray;
}

/**
 * 10.0 Responsive Design
 */

@media screen and (min-width: 800px) {
  #body {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  #body #left-rail {
    display: inline-block;
  }

  #body #center-rail {
    width: 600px;
  }

  #body #center-rail img {
    max-width: 500px;
  }
}

@media screen and (min-width: 1000px) {
  #body {
    width: 1000px;
  }

  #body #right-rail {
    width: 190px;
    vertical-align: top;
    display: inline-block;
  }
}
