
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_6cb6d31f8944f85dd2f30641.woff')format("woff");}.ff1{font-family:ff1;line-height:1.226613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07306ea59dae3af79a21952d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3284f25ccbcdd1b37a3077f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.103000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d6bddb300e09c29cce40b065.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6f2d85e0d6f9b75ac4f51764.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d8e89fbcf27d9c809f858178.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_709305287e2004f97eceed8d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a6579f4f9765af7d4a72c71a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26b12e4edcfd03efd2569f69.woff')format("woff");}.ff9{font-family:ff9;line-height:1.132737;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_332d8bbe146a97200caab03d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.126737;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_514be623663133906f5f6405.woff')format("woff");}.ffb{font-family:ffb;line-height:1.089000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1ec987e9cd293e27232bb97a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f253b8c4c350c735a5174dcc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_37b47ff28f37928f02de9f95.woff')format("woff");}.ffe{font-family:ffe;line-height:1.226613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-45.120000px;}
.v3{vertical-align:-21.900000px;}
.v4{vertical-align:-12.000000px;}
.v2{vertical-align:-8.100000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.100000px;}
.v5{vertical-align:45.120000px;}
.lsf{letter-spacing:-1.800000px;}
.ls28{letter-spacing:-1.302000px;}
.ls23{letter-spacing:-1.194000px;}
.ls18{letter-spacing:-1.044000px;}
.ls29{letter-spacing:-1.032000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.165000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.194100px;}
.ls7{letter-spacing:0.204000px;}
.lse{letter-spacing:0.314100px;}
.ls4{letter-spacing:0.400200px;}
.ls19{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.708000px;}
.ls2{letter-spacing:1.002000px;}
.ls25{letter-spacing:1.230000px;}
.ls26{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.692000px;}
.ls2a{letter-spacing:1.842000px;}
.ls27{letter-spacing:1.968000px;}
.ls1{letter-spacing:2.418000px;}
.ls24{letter-spacing:2.568000px;}
.ls22{letter-spacing:34.920000px;}
.ls15{letter-spacing:35.100000px;}
.ls12{letter-spacing:35.190000px;}
.ls1c{letter-spacing:49.770000px;}
.ls1b{letter-spacing:49.822500px;}
.ls1e{letter-spacing:51.390000px;}
.ls13{letter-spacing:52.395600px;}
.ls14{letter-spacing:52.464300px;}
.ls21{letter-spacing:57.525000px;}
.ls20{letter-spacing:57.577500px;}
.ls16{letter-spacing:57.645000px;}
.ls17{letter-spacing:57.697500px;}
.ls1d{letter-spacing:65.520000px;}
.ls11{letter-spacing:65.572500px;}
.ls3{letter-spacing:70.147500px;}
.ls9{letter-spacing:77.304450px;}
.ls6{letter-spacing:77.380500px;}
.lsa{letter-spacing:77.784450px;}
.lsd{letter-spacing:77.860500px;}
.lsb{letter-spacing:126.246300px;}
.lsc{letter-spacing:127.101000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-78.169950px;}
.ws3{word-spacing:-72.031800px;}
.ws18{word-spacing:-71.365800px;}
.wsd{word-spacing:-39.064650px;}
.ws20{word-spacing:-33.498000px;}
.ws1e{word-spacing:-32.826000px;}
.ws23{word-spacing:-31.560000px;}
.ws1f{word-spacing:-31.530000px;}
.ws1{word-spacing:-31.278000px;}
.ws21{word-spacing:-30.228000px;}
.ws17{word-spacing:-29.568000px;}
.ws16{word-spacing:-29.430000px;}
.ws0{word-spacing:-28.860000px;}
.ws1a{word-spacing:-28.830000px;}
.wse{word-spacing:-27.902700px;}
.ws15{word-spacing:-27.786000px;}
.wsb{word-spacing:-24.330000px;}
.wsc{word-spacing:-22.097700px;}
.ws4{word-spacing:-22.030200px;}
.ws5{word-spacing:-21.630000px;}
.ws13{word-spacing:-18.930000px;}
.ws1b{word-spacing:-17.130000px;}
.ws7{word-spacing:-16.305900px;}
.ws6{word-spacing:-16.272000px;}
.ws8{word-spacing:-13.221000px;}
.ws9{word-spacing:-12.204000px;}
.ws14{word-spacing:-2.303250px;}
.ws11{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws19{word-spacing:3.257550px;}
.ws22{word-spacing:5.864850px;}
.ws24{word-spacing:6.314850px;}
.ws10{word-spacing:75.807000px;}
.wsf{word-spacing:81.447000px;}
.ws1d{word-spacing:104.973900px;}
.ws1c{word-spacing:106.736100px;}
.ws12{word-spacing:320.640000px;}
._6{margin-left:-5.818650px;}
._3{margin-left:-4.255500px;}
._4{margin-left:-3.174600px;}
._0{margin-left:-1.946700px;}
._2{width:1.946700px;}
._1{width:3.244500px;}
._5{width:5.246700px;}
._e{width:14.365800px;}
._a{width:27.009450px;}
._c{width:29.178300px;}
._d{width:36.795600px;}
._b{width:74.203200px;}
._9{width:287.783400px;}
._8{width:289.093800px;}
._7{width:313.372500px;}
.fc8{color:rgb(0,119,168);}
.fc7{color:transparent;}
.fc3{color:rgb(64,4,57);}
.fc2{color:rgb(255,178,19);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(33,31,38);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,157,221);}
.fc0{color:rgb(195,39,87);}
.fsa{font-size:54.000000px;}
.fs8{font-size:58.500000px;}
.fs9{font-size:58.650000px;}
.fs11{font-size:67.500000px;}
.fs10{font-size:67.650000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fsf{font-size:85.500000px;}
.fs5{font-size:85.650000px;}
.fs3{font-size:94.650000px;}
.fs16{font-size:103.650000px;}
.fs4{font-size:108.150000px;}
.fsd{font-size:121.650000px;}
.fse{font-size:121.800000px;}
.fsc{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs15{font-size:157.650000px;}
.fs17{font-size:157.800000px;}
.fs14{font-size:166.650000px;}
.fs13{font-size:166.800000px;}
.fs2{font-size:265.800000px;}
.fs12{font-size:265.950000px;}
.fsb{font-size:288.450000px;}
.fs0{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:12.375000px;}
.y99{bottom:12.450000px;}
.yab{bottom:14.400000px;}
.y47{bottom:37.687500px;}
.ybf{bottom:97.462500px;}
.y8f{bottom:100.875000px;}
.y2d{bottom:101.850000px;}
.y95{bottom:102.000000px;}
.y7a{bottom:104.550000px;}
.y7d{bottom:104.595000px;}
.y77{bottom:105.120000px;}
.y81{bottom:112.312500px;}
.y6c{bottom:115.275000px;}
.y9b{bottom:119.137500px;}
.y5{bottom:124.875000px;}
.y63{bottom:126.187500px;}
.y2c{bottom:134.512500px;}
.y8e{bottom:138.037500px;}
.ybe{bottom:144.750000px;}
.y80{bottom:145.012500px;}
.y7c{bottom:149.625000px;}
.y6b{bottom:151.305000px;}
.y62{bottom:162.255000px;}
.y2b{bottom:167.175000px;}
.y8d{bottom:174.105000px;}
.y73{bottom:176.370000px;}
.y7f{bottom:177.675000px;}
.y4{bottom:183.450000px;}
.y57{bottom:185.220000px;}
.ya3{bottom:185.970000px;}
.y11{bottom:187.650000px;}
.y79{bottom:193.500000px;}
.y2a{bottom:198.720000px;}
.y43{bottom:200.220000px;}
.y94{bottom:204.525000px;}
.y46{bottom:205.050000px;}
.ybd{bottom:206.745000px;}
.yaa{bottom:206.775000px;}
.y7e{bottom:210.345000px;}
.y4e{bottom:211.920000px;}
.y8c{bottom:212.400000px;}
.y61{bottom:214.095000px;}
.y10{bottom:220.320000px;}
.y42{bottom:220.500000px;}
.y9a{bottom:221.400000px;}
.y56{bottom:228.000000px;}
.ya2{bottom:231.000000px;}
.y29{bottom:231.375000px;}
.yad{bottom:234.495000px;}
.yb5{bottom:234.945000px;}
.y15{bottom:236.250000px;}
.y6a{bottom:238.095000px;}
.y41{bottom:239.655000px;}
.y23{bottom:240.420000px;}
.yb3{bottom:244.650000px;}
.y93{bottom:248.445000px;}
.ya9{bottom:250.695000px;}
.ybc{bottom:254.070000px;}
.y14{bottom:256.530000px;}
.yf{bottom:260.895000px;}
.y60{bottom:264.780000px;}
.y13{bottom:275.700000px;}
.y4d{bottom:276.120000px;}
.ya1{bottom:288.450000px;}
.y92{bottom:291.270000px;}
.ye{bottom:292.425000px;}
.y72{bottom:293.505000px;}
.y7b{bottom:298.050000px;}
.ybb{bottom:300.225000px;}
.y5f{bottom:300.825000px;}
.y3e{bottom:301.350000px;}
.y3f{bottom:301.800000px;}
.yac{bottom:305.445000px;}
.y55{bottom:306.330000px;}
.ya8{bottom:308.175000px;}
.yb2{bottom:311.850000px;}
.y8b{bottom:313.800000px;}
.y2e{bottom:316.080000px;}
.y98{bottom:317.175000px;}
.y69{bottom:324.825000px;}
.y3{bottom:327.750000px;}
.ya0{bottom:332.400000px;}
.yd{bottom:333.000000px;}
.y3c{bottom:334.245000px;}
.y91{bottom:335.220000px;}
.y3d{bottom:336.375000px;}
.y4c{bottom:341.475000px;}
.y22{bottom:342.195000px;}
.y71{bottom:349.830000px;}
.y54{bottom:350.295000px;}
.y5e{bottom:351.525000px;}
.ya7{bottom:352.095000px;}
.y85{bottom:353.205000px;}
.yba{bottom:362.175000px;}
.yc{bottom:365.670000px;}
.y2f{bottom:366.195000px;}
.y97{bottom:367.875000px;}
.y3a{bottom:368.700000px;}
.y68{bottom:368.745000px;}
.y3b{bottom:370.800000px;}
.yb1{bottom:378.900000px;}
.y5d{bottom:387.570000px;}
.y9f{bottom:389.850000px;}
.y53{bottom:393.075000px;}
.y70{bottom:394.905000px;}
.y8a{bottom:401.655000px;}
.y40{bottom:403.155000px;}
.yb{bottom:405.075000px;}
.y39{bottom:405.255000px;}
.y21{bottom:405.975000px;}
.y4b{bottom:406.800000px;}
.yb9{bottom:409.500000px;}
.ya6{bottom:409.530000px;}
.y67{bottom:412.695000px;}
.y2{bottom:415.620000px;}
.y84{bottom:418.575000px;}
.y20{bottom:425.130000px;}
.y96{bottom:433.200000px;}
.y9e{bottom:433.800000px;}
.y52{bottom:437.025000px;}
.y89{bottom:437.700000px;}
.yb4{bottom:438.825000px;}
.y5c{bottom:439.380000px;}
.y38{bottom:439.725000px;}
.yb0{bottom:443.850000px;}
.y1f{bottom:444.300000px;}
.ya{bottom:444.525000px;}
.y6f{bottom:453.495000px;}
.y66{bottom:455.505000px;}
.y1e{bottom:464.595000px;}
.y4a{bottom:471.030000px;}
.yb8{bottom:471.450000px;}
.y88{bottom:473.775000px;}
.y37{bottom:474.195000px;}
.y76{bottom:474.750000px;}
.y5b{bottom:475.425000px;}
.y51{bottom:479.820000px;}
.y1d{bottom:483.225000px;}
.y83{bottom:483.900000px;}
.y28{bottom:485.595000px;}
.y9{bottom:488.445000px;}
.y9d{bottom:492.375000px;}
.y6e{bottom:496.275000px;}
.y65{bottom:499.425000px;}
.y1{bottom:502.350000px;}
.yaf{bottom:507.195000px;}
.y36{bottom:508.620000px;}
.y90{bottom:509.820000px;}
.ya5{bottom:512.070000px;}
.y8{bottom:516.600000px;}
.yb7{bottom:517.650000px;}
.y87{bottom:524.445000px;}
.y5a{bottom:526.125000px;}
.y1c{bottom:527.700000px;}
.y9c{bottom:535.155000px;}
.y49{bottom:536.370000px;}
.y35{bottom:541.005000px;}
.y31{bottom:543.075000px;}
.y7{bottom:545.880000px;}
.y82{bottom:549.225000px;}
.y27{bottom:551.100000px;}
.y6d{bottom:554.880000px;}
.y86{bottom:560.505000px;}
.y1b{bottom:561.975000px;}
.y59{bottom:562.155000px;}
.yae{bottom:566.325000px;}
.y30{bottom:577.530000px;}
.y78{bottom:579.870000px;}
.y1a{bottom:580.650000px;}
.y64{bottom:589.575000px;}
.yb6{bottom:595.380000px;}
.y50{bottom:603.225000px;}
.y34{bottom:614.445000px;}
.y24{bottom:619.245000px;}
.y26{bottom:629.970000px;}
.y33{bottom:634.725000px;}
.y6{bottom:635.970000px;}
.y75{bottom:636.870000px;}
.y48{bottom:638.505000px;}
.y32{bottom:653.880000px;}
.y58{bottom:672.150000px;}
.y4f{bottom:674.175000px;}
.y19{bottom:681.750000px;}
.y45{bottom:700.050000px;}
.y18{bottom:700.875000px;}
.y74{bottom:707.850000px;}
.y17{bottom:721.155000px;}
.y16{bottom:739.800000px;}
.y44{bottom:741.225000px;}
.y12{bottom:776.070000px;}
.y25{bottom:836.925000px;}
.hf{height:53.709961px;}
.h1e{height:55.291992px;}
.h10{height:58.185791px;}
.hb{height:59.899658px;}
.h17{height:60.053247px;}
.h1f{height:67.137451px;}
.h1d{height:68.165053px;}
.he{height:71.613281px;}
.hd{height:71.762476px;}
.h19{height:72.580500px;}
.hc{height:73.533281px;}
.ha{height:73.682476px;}
.h8{height:73.722656px;}
.h2b{height:73.786500px;}
.h9{height:73.862476px;}
.h7{height:73.876245px;}
.h2a{height:73.915950px;}
.h16{height:77.089966px;}
.h1c{height:80.860500px;}
.h20{height:81.682950px;}
.h4{height:84.238500px;}
.h18{height:85.040771px;}
.h6{height:87.699243px;}
.h1b{height:90.281439px;}
.h5{height:93.333450px;}
.h25{height:96.253500px;}
.h14{height:104.983950px;}
.h15{height:105.113400px;}
.h29{height:108.268500px;}
.h11{height:110.961900px;}
.h13{height:124.401450px;}
.h2{height:124.530900px;}
.h1a{height:125.997900px;}
.h22{height:128.293500px;}
.h2c{height:136.051950px;}
.h2e{height:136.181400px;}
.h2d{height:140.308500px;}
.h28{height:143.818950px;}
.h23{height:143.948400px;}
.h26{height:227.250000px;}
.h24{height:228.375000px;}
.h3{height:272.710800px;}
.h21{height:272.864700px;}
.h12{height:295.949700px;}
.h1{height:332.885700px;}
.h27{height:625.500000px;}
.h0{height:810.000000px;}
.w3{width:480.375000px;}
.w2{width:495.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x9{left:-426.270021px;}
.xa{left:-419.130021px;}
.xb{left:-392.370021px;}
.xd{left:-386.250021px;}
.xc{left:-361.575021px;}
.xe{left:-106.462521px;}
.x0{left:0.000000px;}
.x25{left:11.370000px;}
.x31{left:84.562479px;}
.x1c{left:101.324979px;}
.x19{left:108.149979px;}
.x1b{left:109.874979px;}
.x18{left:120.749979px;}
.x2d{left:126.487479px;}
.x1d{left:128.362479px;}
.x21{left:136.912479px;}
.x2e{left:153.494979px;}
.x23{left:154.529979px;}
.x1e{left:163.904979px;}
.x34{left:170.699979px;}
.x22{left:176.594979px;}
.x1a{left:181.454979px;}
.x20{left:190.949979px;}
.x1f{left:217.949979px;}
.x17{left:226.574979px;}
.x2c{left:236.999979px;}
.x24{left:239.069979px;}
.x26{left:264.869979px;}
.x29{left:284.774979px;}
.xf{left:562.754979px;}
.x30{left:602.849979px;}
.x10{left:620.999979px;}
.x27{left:733.500000px;}
.x2a{left:778.874979px;}
.x33{left:793.424979px;}
.x32{left:795.794979px;}
.x6{left:801.299979px;}
.x7{left:855.374979px;}
.x8{left:882.374979px;}
.x28{left:936.299979px;}
.x3{left:955.394979px;}
.x2b{left:971.474979px;}
.x2{left:1001.474979px;}
.x1{left:1002.869979px;}
.x2f{left:1039.049979px;}
.x4{left:1047.599979px;}
.x5{left:1094.024979px;}
.x11{left:1484.354979px;}
.x12{left:1491.374979px;}
.x14{left:1518.254979px;}
.x13{left:1560.479979px;}
.x15{left:1608.044979px;}
.x16{left:1804.124979px;}
@media print{
.v6{vertical-align:-40.106667pt;}
.v3{vertical-align:-19.466667pt;}
.v4{vertical-align:-10.666667pt;}
.v2{vertical-align:-7.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.866667pt;}
.v5{vertical-align:40.106667pt;}
.lsf{letter-spacing:-1.600000pt;}
.ls28{letter-spacing:-1.157333pt;}
.ls23{letter-spacing:-1.061333pt;}
.ls18{letter-spacing:-0.928000pt;}
.ls29{letter-spacing:-0.917333pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.146667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.172533pt;}
.ls7{letter-spacing:0.181333pt;}
.lse{letter-spacing:0.279200pt;}
.ls4{letter-spacing:0.355733pt;}
.ls19{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.890667pt;}
.ls25{letter-spacing:1.093333pt;}
.ls26{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.504000pt;}
.ls2a{letter-spacing:1.637333pt;}
.ls27{letter-spacing:1.749333pt;}
.ls1{letter-spacing:2.149333pt;}
.ls24{letter-spacing:2.282667pt;}
.ls22{letter-spacing:31.040000pt;}
.ls15{letter-spacing:31.200000pt;}
.ls12{letter-spacing:31.280000pt;}
.ls1c{letter-spacing:44.240000pt;}
.ls1b{letter-spacing:44.286667pt;}
.ls1e{letter-spacing:45.680000pt;}
.ls13{letter-spacing:46.573867pt;}
.ls14{letter-spacing:46.634933pt;}
.ls21{letter-spacing:51.133333pt;}
.ls20{letter-spacing:51.180000pt;}
.ls16{letter-spacing:51.240000pt;}
.ls17{letter-spacing:51.286667pt;}
.ls1d{letter-spacing:58.240000pt;}
.ls11{letter-spacing:58.286667pt;}
.ls3{letter-spacing:62.353333pt;}
.ls9{letter-spacing:68.715067pt;}
.ls6{letter-spacing:68.782667pt;}
.lsa{letter-spacing:69.141733pt;}
.lsd{letter-spacing:69.209333pt;}
.lsb{letter-spacing:112.218933pt;}
.lsc{letter-spacing:112.978667pt;}
.wsa{word-spacing:-69.484400pt;}
.ws3{word-spacing:-64.028267pt;}
.ws18{word-spacing:-63.436267pt;}
.wsd{word-spacing:-34.724133pt;}
.ws20{word-spacing:-29.776000pt;}
.ws1e{word-spacing:-29.178667pt;}
.ws23{word-spacing:-28.053333pt;}
.ws1f{word-spacing:-28.026667pt;}
.ws1{word-spacing:-27.802667pt;}
.ws21{word-spacing:-26.869333pt;}
.ws17{word-spacing:-26.282667pt;}
.ws16{word-spacing:-26.160000pt;}
.ws0{word-spacing:-25.653333pt;}
.ws1a{word-spacing:-25.626667pt;}
.wse{word-spacing:-24.802400pt;}
.ws15{word-spacing:-24.698667pt;}
.wsb{word-spacing:-21.626667pt;}
.wsc{word-spacing:-19.642400pt;}
.ws4{word-spacing:-19.582400pt;}
.ws5{word-spacing:-19.226667pt;}
.ws13{word-spacing:-16.826667pt;}
.ws1b{word-spacing:-15.226667pt;}
.ws7{word-spacing:-14.494133pt;}
.ws6{word-spacing:-14.464000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws9{word-spacing:-10.848000pt;}
.ws14{word-spacing:-2.047333pt;}
.ws11{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws19{word-spacing:2.895600pt;}
.ws22{word-spacing:5.213200pt;}
.ws24{word-spacing:5.613200pt;}
.ws10{word-spacing:67.384000pt;}
.wsf{word-spacing:72.397333pt;}
.ws1d{word-spacing:93.310133pt;}
.ws1c{word-spacing:94.876533pt;}
.ws12{word-spacing:285.013333pt;}
._6{margin-left:-5.172133pt;}
._3{margin-left:-3.782667pt;}
._4{margin-left:-2.821867pt;}
._0{margin-left:-1.730400pt;}
._2{width:1.730400pt;}
._1{width:2.884000pt;}
._5{width:4.663733pt;}
._e{width:12.769600pt;}
._a{width:24.008400pt;}
._c{width:25.936267pt;}
._d{width:32.707200pt;}
._b{width:65.958400pt;}
._9{width:255.807467pt;}
._8{width:256.972267pt;}
._7{width:278.553333pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:52.000000pt;}
.fs9{font-size:52.133333pt;}
.fs11{font-size:60.000000pt;}
.fs10{font-size:60.133333pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fsf{font-size:76.000000pt;}
.fs5{font-size:76.133333pt;}
.fs3{font-size:84.133333pt;}
.fs16{font-size:92.133333pt;}
.fs4{font-size:96.133333pt;}
.fsd{font-size:108.133333pt;}
.fse{font-size:108.266667pt;}
.fsc{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs15{font-size:140.133333pt;}
.fs17{font-size:140.266667pt;}
.fs14{font-size:148.133333pt;}
.fs13{font-size:148.266667pt;}
.fs2{font-size:236.266667pt;}
.fs12{font-size:236.400000pt;}
.fsb{font-size:256.400000pt;}
.fs0{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:11.000000pt;}
.y99{bottom:11.066667pt;}
.yab{bottom:12.800000pt;}
.y47{bottom:33.500000pt;}
.ybf{bottom:86.633333pt;}
.y8f{bottom:89.666667pt;}
.y2d{bottom:90.533333pt;}
.y95{bottom:90.666667pt;}
.y7a{bottom:92.933333pt;}
.y7d{bottom:92.973333pt;}
.y77{bottom:93.440000pt;}
.y81{bottom:99.833333pt;}
.y6c{bottom:102.466667pt;}
.y9b{bottom:105.900000pt;}
.y5{bottom:111.000000pt;}
.y63{bottom:112.166667pt;}
.y2c{bottom:119.566667pt;}
.y8e{bottom:122.700000pt;}
.ybe{bottom:128.666667pt;}
.y80{bottom:128.900000pt;}
.y7c{bottom:133.000000pt;}
.y6b{bottom:134.493333pt;}
.y62{bottom:144.226667pt;}
.y2b{bottom:148.600000pt;}
.y8d{bottom:154.760000pt;}
.y73{bottom:156.773333pt;}
.y7f{bottom:157.933333pt;}
.y4{bottom:163.066667pt;}
.y57{bottom:164.640000pt;}
.ya3{bottom:165.306667pt;}
.y11{bottom:166.800000pt;}
.y79{bottom:172.000000pt;}
.y2a{bottom:176.640000pt;}
.y43{bottom:177.973333pt;}
.y94{bottom:181.800000pt;}
.y46{bottom:182.266667pt;}
.ybd{bottom:183.773333pt;}
.yaa{bottom:183.800000pt;}
.y7e{bottom:186.973333pt;}
.y4e{bottom:188.373333pt;}
.y8c{bottom:188.800000pt;}
.y61{bottom:190.306667pt;}
.y10{bottom:195.840000pt;}
.y42{bottom:196.000000pt;}
.y9a{bottom:196.800000pt;}
.y56{bottom:202.666667pt;}
.ya2{bottom:205.333333pt;}
.y29{bottom:205.666667pt;}
.yad{bottom:208.440000pt;}
.yb5{bottom:208.840000pt;}
.y15{bottom:210.000000pt;}
.y6a{bottom:211.640000pt;}
.y41{bottom:213.026667pt;}
.y23{bottom:213.706667pt;}
.yb3{bottom:217.466667pt;}
.y93{bottom:220.840000pt;}
.ya9{bottom:222.840000pt;}
.ybc{bottom:225.840000pt;}
.y14{bottom:228.026667pt;}
.yf{bottom:231.906667pt;}
.y60{bottom:235.360000pt;}
.y13{bottom:245.066667pt;}
.y4d{bottom:245.440000pt;}
.ya1{bottom:256.400000pt;}
.y92{bottom:258.906667pt;}
.ye{bottom:259.933333pt;}
.y72{bottom:260.893333pt;}
.y7b{bottom:264.933333pt;}
.ybb{bottom:266.866667pt;}
.y5f{bottom:267.400000pt;}
.y3e{bottom:267.866667pt;}
.y3f{bottom:268.266667pt;}
.yac{bottom:271.506667pt;}
.y55{bottom:272.293333pt;}
.ya8{bottom:273.933333pt;}
.yb2{bottom:277.200000pt;}
.y8b{bottom:278.933333pt;}
.y2e{bottom:280.960000pt;}
.y98{bottom:281.933333pt;}
.y69{bottom:288.733333pt;}
.y3{bottom:291.333333pt;}
.ya0{bottom:295.466667pt;}
.yd{bottom:296.000000pt;}
.y3c{bottom:297.106667pt;}
.y91{bottom:297.973333pt;}
.y3d{bottom:299.000000pt;}
.y4c{bottom:303.533333pt;}
.y22{bottom:304.173333pt;}
.y71{bottom:310.960000pt;}
.y54{bottom:311.373333pt;}
.y5e{bottom:312.466667pt;}
.ya7{bottom:312.973333pt;}
.y85{bottom:313.960000pt;}
.yba{bottom:321.933333pt;}
.yc{bottom:325.040000pt;}
.y2f{bottom:325.506667pt;}
.y97{bottom:327.000000pt;}
.y3a{bottom:327.733333pt;}
.y68{bottom:327.773333pt;}
.y3b{bottom:329.600000pt;}
.yb1{bottom:336.800000pt;}
.y5d{bottom:344.506667pt;}
.y9f{bottom:346.533333pt;}
.y53{bottom:349.400000pt;}
.y70{bottom:351.026667pt;}
.y8a{bottom:357.026667pt;}
.y40{bottom:358.360000pt;}
.yb{bottom:360.066667pt;}
.y39{bottom:360.226667pt;}
.y21{bottom:360.866667pt;}
.y4b{bottom:361.600000pt;}
.yb9{bottom:364.000000pt;}
.ya6{bottom:364.026667pt;}
.y67{bottom:366.840000pt;}
.y2{bottom:369.440000pt;}
.y84{bottom:372.066667pt;}
.y20{bottom:377.893333pt;}
.y96{bottom:385.066667pt;}
.y9e{bottom:385.600000pt;}
.y52{bottom:388.466667pt;}
.y89{bottom:389.066667pt;}
.yb4{bottom:390.066667pt;}
.y5c{bottom:390.560000pt;}
.y38{bottom:390.866667pt;}
.yb0{bottom:394.533333pt;}
.y1f{bottom:394.933333pt;}
.ya{bottom:395.133333pt;}
.y6f{bottom:403.106667pt;}
.y66{bottom:404.893333pt;}
.y1e{bottom:412.973333pt;}
.y4a{bottom:418.693333pt;}
.yb8{bottom:419.066667pt;}
.y88{bottom:421.133333pt;}
.y37{bottom:421.506667pt;}
.y76{bottom:422.000000pt;}
.y5b{bottom:422.600000pt;}
.y51{bottom:426.506667pt;}
.y1d{bottom:429.533333pt;}
.y83{bottom:430.133333pt;}
.y28{bottom:431.640000pt;}
.y9{bottom:434.173333pt;}
.y9d{bottom:437.666667pt;}
.y6e{bottom:441.133333pt;}
.y65{bottom:443.933333pt;}
.y1{bottom:446.533333pt;}
.yaf{bottom:450.840000pt;}
.y36{bottom:452.106667pt;}
.y90{bottom:453.173333pt;}
.ya5{bottom:455.173333pt;}
.y8{bottom:459.200000pt;}
.yb7{bottom:460.133333pt;}
.y87{bottom:466.173333pt;}
.y5a{bottom:467.666667pt;}
.y1c{bottom:469.066667pt;}
.y9c{bottom:475.693333pt;}
.y49{bottom:476.773333pt;}
.y35{bottom:480.893333pt;}
.y31{bottom:482.733333pt;}
.y7{bottom:485.226667pt;}
.y82{bottom:488.200000pt;}
.y27{bottom:489.866667pt;}
.y6d{bottom:493.226667pt;}
.y86{bottom:498.226667pt;}
.y1b{bottom:499.533333pt;}
.y59{bottom:499.693333pt;}
.yae{bottom:503.400000pt;}
.y30{bottom:513.360000pt;}
.y78{bottom:515.440000pt;}
.y1a{bottom:516.133333pt;}
.y64{bottom:524.066667pt;}
.yb6{bottom:529.226667pt;}
.y50{bottom:536.200000pt;}
.y34{bottom:546.173333pt;}
.y24{bottom:550.440000pt;}
.y26{bottom:559.973333pt;}
.y33{bottom:564.200000pt;}
.y6{bottom:565.306667pt;}
.y75{bottom:566.106667pt;}
.y48{bottom:567.560000pt;}
.y32{bottom:581.226667pt;}
.y58{bottom:597.466667pt;}
.y4f{bottom:599.266667pt;}
.y19{bottom:606.000000pt;}
.y45{bottom:622.266667pt;}
.y18{bottom:623.000000pt;}
.y74{bottom:629.200000pt;}
.y17{bottom:641.026667pt;}
.y16{bottom:657.600000pt;}
.y44{bottom:658.866667pt;}
.y12{bottom:689.840000pt;}
.y25{bottom:743.933333pt;}
.hf{height:47.742188pt;}
.h1e{height:49.148438pt;}
.h10{height:51.720703pt;}
.hb{height:53.244141pt;}
.h17{height:53.380664pt;}
.h1f{height:59.677734pt;}
.h1d{height:60.591158pt;}
.he{height:63.656250pt;}
.hd{height:63.788867pt;}
.h19{height:64.516000pt;}
.hc{height:65.362917pt;}
.ha{height:65.495534pt;}
.h8{height:65.531250pt;}
.h2b{height:65.588000pt;}
.h9{height:65.655534pt;}
.h7{height:65.667773pt;}
.h2a{height:65.703067pt;}
.h16{height:68.524414pt;}
.h1c{height:71.876000pt;}
.h20{height:72.607067pt;}
.h4{height:74.878667pt;}
.h18{height:75.591797pt;}
.h6{height:77.954883pt;}
.h1b{height:80.250168pt;}
.h5{height:82.963067pt;}
.h25{height:85.558667pt;}
.h14{height:93.319067pt;}
.h15{height:93.434133pt;}
.h29{height:96.238667pt;}
.h11{height:98.632800pt;}
.h13{height:110.579067pt;}
.h2{height:110.694133pt;}
.h1a{height:111.998133pt;}
.h22{height:114.038667pt;}
.h2c{height:120.935067pt;}
.h2e{height:121.050133pt;}
.h2d{height:124.718667pt;}
.h28{height:127.839067pt;}
.h23{height:127.954133pt;}
.h26{height:202.000000pt;}
.h24{height:203.000000pt;}
.h3{height:242.409600pt;}
.h21{height:242.546400pt;}
.h12{height:263.066400pt;}
.h1{height:295.898400pt;}
.h27{height:556.000000pt;}
.h0{height:720.000000pt;}
.w3{width:427.000000pt;}
.w2{width:440.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x9{left:-378.906686pt;}
.xa{left:-372.560019pt;}
.xb{left:-348.773352pt;}
.xd{left:-343.333352pt;}
.xc{left:-321.400019pt;}
.xe{left:-94.633352pt;}
.x0{left:0.000000pt;}
.x25{left:10.106667pt;}
.x31{left:75.166648pt;}
.x1c{left:90.066648pt;}
.x19{left:96.133314pt;}
.x1b{left:97.666648pt;}
.x18{left:107.333314pt;}
.x2d{left:112.433314pt;}
.x1d{left:114.099981pt;}
.x21{left:121.699981pt;}
.x2e{left:136.439981pt;}
.x23{left:137.359981pt;}
.x1e{left:145.693314pt;}
.x34{left:151.733314pt;}
.x22{left:156.973314pt;}
.x1a{left:161.293314pt;}
.x20{left:169.733314pt;}
.x1f{left:193.733314pt;}
.x17{left:201.399981pt;}
.x2c{left:210.666648pt;}
.x24{left:212.506648pt;}
.x26{left:235.439981pt;}
.x29{left:253.133314pt;}
.xf{left:500.226648pt;}
.x30{left:535.866648pt;}
.x10{left:551.999981pt;}
.x27{left:652.000000pt;}
.x2a{left:692.333314pt;}
.x33{left:705.266648pt;}
.x32{left:707.373314pt;}
.x6{left:712.266648pt;}
.x7{left:760.333314pt;}
.x8{left:784.333314pt;}
.x28{left:832.266648pt;}
.x3{left:849.239981pt;}
.x2b{left:863.533314pt;}
.x2{left:890.199981pt;}
.x1{left:891.439981pt;}
.x2f{left:923.599981pt;}
.x4{left:931.199981pt;}
.x5{left:972.466648pt;}
.x11{left:1319.426648pt;}
.x12{left:1325.666648pt;}
.x14{left:1349.559981pt;}
.x13{left:1387.093314pt;}
.x15{left:1429.373314pt;}
.x16{left:1603.666648pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  