
    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_fef01457b82296698261490b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_07203bf4eddf4c2a1db012ec.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_478afe060f86cd508ff8e28f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_7c4576ad64200d214e83f761.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_980d95e5236f1777997bf811.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_92215315bb9bf2413f24638a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.956543;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_4eef5f5909902d3b1cc6acac.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_fcbbac40dacd84621edc3170.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_d02809ff4b1015a9e359fe62.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_17a44cbb81e11093ff5f1ff7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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_2d3c8b03cadbd5372e5361fb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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;}
.m4{transform:matrix(0.242051,0.000000,-0.080676,0.236625,0,0);-ms-transform:matrix(0.242051,0.000000,-0.080676,0.236625,0,0);-webkit-transform:matrix(0.242051,0.000000,-0.080676,0.236625,0,0);}
.m6{transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245758,0.000000,0.000000,0.250000,0,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);}
.m7{transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254491,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254728,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255732,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:-25.264934px;}
.v7{vertical-align:-14.097162px;}
.v1{vertical-align:-12.973910px;}
.va{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.164826px;}
.v3{vertical-align:14.085568px;}
.v5{vertical-align:15.432923px;}
.v8{vertical-align:34.007781px;}
.v2{vertical-align:39.599248px;}
.v4{vertical-align:43.833846px;}
.ls1d{letter-spacing:-2.252566px;}
.ls1c{letter-spacing:-2.023316px;}
.ls5{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.008640px;}
.ls14{letter-spacing:0.026221px;}
.ls0{letter-spacing:0.028080px;}
.ls1e{letter-spacing:0.047806px;}
.ls18{letter-spacing:0.055354px;}
.ls16{letter-spacing:0.078480px;}
.ls1f{letter-spacing:0.190038px;}
.ls19{letter-spacing:0.220044px;}
.ls1b{letter-spacing:0.242907px;}
.ls3{letter-spacing:0.252720px;}
.ls17{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.317684px;}
.ls12{letter-spacing:0.325954px;}
.lsa{letter-spacing:0.341400px;}
.lsd{letter-spacing:0.354720px;}
.ls1{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.378600px;}
.ls2{letter-spacing:0.504000px;}
.lsc{letter-spacing:2.106720px;}
.ls1a{letter-spacing:2.646221px;}
.ls7{letter-spacing:4.140000px;}
.lse{letter-spacing:4.860000px;}
.ls8{letter-spacing:17.100000px;}
.ls23{letter-spacing:41.381280px;}
.ls22{letter-spacing:83.141280px;}
.ls6{letter-spacing:105.660000px;}
.ls9{letter-spacing:109.260000px;}
.lsf{letter-spacing:159.756766px;}
.ls10{letter-spacing:339.896185px;}
.ls13{letter-spacing:374.638857px;}
.ls15{letter-spacing:790.597678px;}
.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;}
}
.ws28{word-spacing:-84.240000px;}
.wsd{word-spacing:-46.101501px;}
.ws16{word-spacing:-38.675229px;}
.ws14{word-spacing:-33.926742px;}
.ws9{word-spacing:-32.808240px;}
.ws26{word-spacing:-28.187312px;}
.ws25{word-spacing:-26.542603px;}
.ws1{word-spacing:-24.300000px;}
.ws2d{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.312720px;}
.ws8{word-spacing:-21.088080px;}
.ws2a{word-spacing:-21.068640px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.700000px;}
.ws2c{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws2b{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.105918px;}
.ws29{word-spacing:-13.500000px;}
.ws23{word-spacing:-0.359656px;}
.ws1d{word-spacing:-0.350531px;}
.ws27{word-spacing:-0.218226px;}
.ws10{word-spacing:-0.061797px;}
.ws1e{word-spacing:-0.057822px;}
.ws18{word-spacing:-0.056244px;}
.wsa{word-spacing:-0.055981px;}
.ws24{word-spacing:-0.048347px;}
.ws15{word-spacing:-0.036029px;}
.ws6{word-spacing:0.000000px;}
.ws19{word-spacing:1.967072px;}
.ws1f{word-spacing:2.194744px;}
.wse{word-spacing:29.659882px;}
.wsf{word-spacing:30.617876px;}
.wsb{word-spacing:49.144704px;}
.ws12{word-spacing:70.607786px;}
.ws13{word-spacing:152.065447px;}
.ws11{word-spacing:173.574765px;}
.ws1c{word-spacing:268.737710px;}
.ws22{word-spacing:288.935498px;}
.ws17{word-spacing:518.911039px;}
.ws1b{word-spacing:605.306229px;}
.ws21{word-spacing:653.018000px;}
.ws1a{word-spacing:724.094551px;}
.ws20{word-spacing:774.814442px;}
._30{margin-left:-402.762693px;}
._60{margin-left:-389.383476px;}
._6b{margin-left:-379.054954px;}
._4e{margin-left:-367.339767px;}
._5f{margin-left:-347.733113px;}
._4d{margin-left:-332.612606px;}
._61{margin-left:-298.587532px;}
._62{margin-left:-290.942337px;}
._4f{margin-left:-278.345492px;}
._52{margin-left:-270.752207px;}
._40{margin-left:-268.287871px;}
._33{margin-left:-261.454520px;}
._3a{margin-left:-241.680354px;}
._3c{margin-left:-232.635732px;}
._42{margin-left:-225.230827px;}
._6d{margin-left:-218.040295px;}
._3f{margin-left:-215.686854px;}
._63{margin-left:-201.434010px;}
._2e{margin-left:-200.353587px;}
._64{margin-left:-198.934292px;}
._70{margin-left:-197.917310px;}
._69{margin-left:-196.472410px;}
._55{margin-left:-194.547214px;}
._53{margin-left:-184.370931px;}
._5e{margin-left:-181.188369px;}
._39{margin-left:-178.561853px;}
._5c{margin-left:-169.505570px;}
._41{margin-left:-167.463415px;}
._4a{margin-left:-165.381643px;}
._4c{margin-left:-163.549031px;}
._3b{margin-left:-161.308961px;}
._3e{margin-left:-156.409981px;}
._54{margin-left:-150.228692px;}
._67{margin-left:-149.180118px;}
._50{margin-left:-146.741593px;}
._65{margin-left:-144.966045px;}
._6c{margin-left:-141.135750px;}
._3d{margin-left:-139.968754px;}
._35{margin-left:-138.608459px;}
._56{margin-left:-134.762208px;}
._5d{margin-left:-127.322459px;}
._58{margin-left:-124.998308px;}
._6e{margin-left:-123.910657px;}
._46{margin-left:-122.152456px;}
._6f{margin-left:-119.467813px;}
._32{margin-left:-117.015945px;}
._4b{margin-left:-111.924246px;}
._51{margin-left:-108.336121px;}
._36{margin-left:-106.688416px;}
._6a{margin-left:-100.821732px;}
._31{margin-left:-95.807413px;}
._2f{margin-left:-94.650628px;}
._59{margin-left:-82.877238px;}
._47{margin-left:-80.523316px;}
._34{margin-left:-76.012632px;}
._57{margin-left:-71.577414px;}
._45{margin-left:-68.992741px;}
._48{margin-left:-57.020972px;}
._37{margin-left:-47.058801px;}
._5a{margin-left:-42.135387px;}
._38{margin-left:-40.093533px;}
._5b{margin-left:-38.269240px;}
._49{margin-left:-36.759228px;}
._68{margin-left:-35.002025px;}
._66{margin-left:-31.503156px;}
._73{margin-left:-5.827680px;}
._28{margin-left:-4.698720px;}
._11{margin-left:-3.622320px;}
._9{margin-left:-2.213520px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._a{width:2.653440px;}
._16{width:3.670560px;}
._b{width:4.775040px;}
._8{width:5.896800px;}
._74{width:6.911760px;}
._f{width:7.918560px;}
._10{width:9.330000px;}
._1a{width:11.227200px;}
._6{width:12.699600px;}
._7{width:13.731120px;}
._24{width:14.861040px;}
._21{width:15.979680px;}
._3{width:17.021280px;}
._2{width:18.244080px;}
._5{width:20.049120px;}
._d{width:23.381040px;}
._c{width:24.513840px;}
._4{width:26.282880px;}
._26{width:28.304640px;}
._71{width:29.520000px;}
._14{width:31.084560px;}
._2c{width:34.012320px;}
._e{width:36.030240px;}
._2b{width:39.838080px;}
._13{width:40.938000px;}
._12{width:42.101040px;}
._27{width:43.164480px;}
._29{width:48.774960px;}
._2a{width:49.818240px;}
._2d{width:51.260880px;}
._1f{width:52.650000px;}
._20{width:53.831040px;}
._15{width:56.335920px;}
._43{width:63.180000px;}
._22{width:64.527840px;}
._23{width:65.538720px;}
._1e{width:69.179520px;}
._19{width:70.255200px;}
._17{width:71.330640px;}
._18{width:72.574560px;}
._1d{width:76.637760px;}
._1c{width:104.688720px;}
._1b{width:106.459200px;}
._25{width:108.879840px;}
._44{width:191.340000px;}
._72{width:285.846720px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:28.187312px;}
.fs6{font-size:32.637894px;}
.fsd{font-size:32.847020px;}
.fsf{font-size:33.702106px;}
.fs9{font-size:36.029008px;}
.fs10{font-size:48.347183px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:55.980868px;}
.fsc{font-size:56.243527px;}
.fse{font-size:57.822217px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:61.797344px;}
.fsb{font-size:65.290330px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:72.522750px;}
.fs7{font-size:83.973589px;}
.fs2{font-size:84.240000px;}
.fsa{font-size:92.698542px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y57{bottom:2.466811px;}
.y59{bottom:2.466813px;}
.y3a{bottom:2.800816px;}
.y36{bottom:2.800821px;}
.y38{bottom:2.800823px;}
.y67{bottom:3.960000px;}
.y46{bottom:4.347012px;}
.y3f{bottom:4.347026px;}
.y41{bottom:4.347027px;}
.y44{bottom:4.347028px;}
.y4c{bottom:7.217890px;}
.y50{bottom:8.591965px;}
.y58{bottom:11.232482px;}
.y4d{bottom:13.534179px;}
.y55{bottom:14.009898px;}
.y5a{bottom:14.009915px;}
.y65{bottom:14.220000px;}
.y51{bottom:15.101077px;}
.y40{bottom:15.581980px;}
.y3{bottom:16.020000px;}
.y34{bottom:16.221978px;}
.y37{bottom:16.221987px;}
.yb{bottom:16.380000px;}
.y3e{bottom:19.163643px;}
.y42{bottom:19.163664px;}
.y47{bottom:19.163678px;}
.ya{bottom:24.120000px;}
.y66{bottom:24.660000px;}
.y56{bottom:26.319987px;}
.y4{bottom:27.900000px;}
.y39{bottom:30.475706px;}
.y35{bottom:30.475717px;}
.y45{bottom:34.898367px;}
.y43{bottom:34.898383px;}
.y6b{bottom:34.920000px;}
.y2{bottom:36.720000px;}
.y9{bottom:36.756000px;}
.y8{bottom:44.640000px;}
.y6a{bottom:45.360000px;}
.y32{bottom:121.536000px;}
.y94{bottom:128.916000px;}
.y2e{bottom:132.516000px;}
.y31{bottom:149.436000px;}
.y73{bottom:154.830000px;}
.y93{bottom:156.630000px;}
.y2d{bottom:160.230000px;}
.y30{bottom:177.150000px;}
.y72{bottom:182.550000px;}
.y92{bottom:184.350000px;}
.y2c{bottom:196.410000px;}
.y2f{bottom:204.870000px;}
.y71{bottom:210.450000px;}
.y91{bottom:212.250000px;}
.y2b{bottom:232.770000px;}
.y70{bottom:238.170000px;}
.y90{bottom:239.970000px;}
.y2a{bottom:260.490000px;}
.y6f{bottom:265.890000px;}
.y8f{bottom:267.690000px;}
.y29{bottom:288.210000px;}
.y6e{bottom:293.610000px;}
.y8e{bottom:295.410000px;}
.y28{bottom:315.930000px;}
.y6d{bottom:321.510000px;}
.y8d{bottom:323.310000px;}
.y6c{bottom:341.175000px;}
.y27{bottom:343.875000px;}
.y8c{bottom:351.075000px;}
.y26{bottom:371.595000px;}
.y8b{bottom:378.795000px;}
.y25{bottom:399.315000px;}
.y69{bottom:403.275000px;}
.y8a{bottom:406.515000px;}
.y24{bottom:427.215000px;}
.y89{bottom:434.415000px;}
.y23{bottom:454.935000px;}
.y88{bottom:462.135000px;}
.y68{bottom:465.375000px;}
.y22{bottom:482.655000px;}
.y87{bottom:489.855000px;}
.y64{bottom:506.775000px;}
.y21{bottom:510.375000px;}
.y86{bottom:517.755000px;}
.y20{bottom:538.275000px;}
.y85{bottom:545.475000px;}
.y63{bottom:556.275000px;}
.y1f{bottom:565.995000px;}
.y84{bottom:573.195000px;}
.y62{bottom:583.995000px;}
.y1e{bottom:593.715000px;}
.y83{bottom:600.915000px;}
.y61{bottom:611.745000px;}
.y1d{bottom:621.465000px;}
.y82{bottom:628.845000px;}
.y60{bottom:639.825000px;}
.y1c{bottom:649.365000px;}
.y81{bottom:656.565000px;}
.y5f{bottom:668.085000px;}
.y1b{bottom:677.085000px;}
.y80{bottom:684.285000px;}
.y5e{bottom:696.165000px;}
.y1a{bottom:704.805000px;}
.y7f{bottom:712.185000px;}
.y5d{bottom:724.065000px;}
.y19{bottom:732.705000px;}
.y7e{bottom:739.905000px;}
.y5c{bottom:751.785000px;}
.y18{bottom:760.425000px;}
.y7d{bottom:767.625000px;}
.y54{bottom:774.989919px;}
.y17{bottom:788.145000px;}
.y7c{bottom:795.345000px;}
.y5b{bottom:796.065000px;}
.y16{bottom:815.865000px;}
.y7b{bottom:823.245000px;}
.y53{bottom:823.785000px;}
.y15{bottom:843.765000px;}
.y4f{bottom:846.989919px;}
.y7a{bottom:850.965000px;}
.y52{bottom:857.445000px;}
.y14{bottom:871.530000px;}
.y79{bottom:878.730000px;}
.y4b{bottom:880.664919px;}
.y4e{bottom:889.710000px;}
.y13{bottom:899.250000px;}
.y78{bottom:906.450000px;}
.y4a{bottom:917.610000px;}
.y12{bottom:927.150000px;}
.y77{bottom:934.350000px;}
.y49{bottom:945.330000px;}
.y11{bottom:954.870000px;}
.y76{bottom:962.070000px;}
.y3d{bottom:968.489919px;}
.y10{bottom:982.590000px;}
.y75{bottom:989.790000px;}
.y48{bottom:991.050000px;}
.yf{bottom:1010.310000px;}
.y74{bottom:1013.910000px;}
.y3c{bottom:1021.650000px;}
.ye{bottom:1038.210000px;}
.y3b{bottom:1049.370000px;}
.yd{bottom:1065.930000px;}
.y33{bottom:1072.514919px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.h27{height:20.878981px;}
.h1d{height:22.499585px;}
.h20{height:24.299873px;}
.h18{height:26.687503px;}
.h25{height:27.664306px;}
.h12{height:32.016371px;}
.h10{height:32.032308px;}
.h1f{height:32.237553px;}
.h22{height:33.076774px;}
.h23{height:34.200073px;}
.h1a{height:35.342909px;}
.h16{height:35.360501px;}
.h28{height:35.811854px;}
.he{height:39.600015px;}
.h2a{height:41.400000px;}
.h14{height:44.999729px;}
.h19{height:45.774693px;}
.h24{height:47.450116px;}
.h1c{height:48.362027px;}
.h11{height:49.227230px;}
.h2c{height:50.484375px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.h7{height:53.496000px;}
.h26{height:53.719244px;}
.hf{height:54.942161px;}
.h1e{height:55.199946px;}
.h21{height:56.749343px;}
.hc{height:59.066719px;}
.hb{height:59.436914px;}
.h15{height:60.650714px;}
.h2b{height:62.100000px;}
.h17{height:68.663910px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.h6{height:84.898125px;}
.h2d{height:86.585445px;}
.hd{height:87.695156px;}
.h29{height:93.599115px;}
.h9{height:96.508125px;}
.h13{height:108.599641px;}
.h1b{height:119.887309px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.wc{width:117.036000px;}
.we{width:119.736000px;}
.w7{width:148.730898px;}
.wd{width:150.870000px;}
.w10{width:162.390000px;}
.wf{width:172.980000px;}
.wb{width:234.897893px;}
.w8{width:244.653976px;}
.w9{width:282.816000px;}
.wa{width:288.897346px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:2.217571px;}
.x26{left:4.747412px;}
.x2{left:8.640000px;}
.x24{left:12.305933px;}
.x7{left:19.800000px;}
.x1d{left:29.824349px;}
.x1{left:31.860000px;}
.x1e{left:35.664855px;}
.x36{left:37.788593px;}
.x32{left:39.125854px;}
.x34{left:40.657199px;}
.x33{left:44.280912px;}
.x21{left:45.371797px;}
.x20{left:48.588381px;}
.x28{left:53.596843px;}
.x27{left:55.189205px;}
.x4{left:59.970000px;}
.x2c{left:83.068759px;}
.x5{left:84.959987px;}
.xa{left:95.975987px;}
.x1f{left:103.693949px;}
.x17{left:115.775987px;}
.x1c{left:121.045108px;}
.x9{left:122.795987px;}
.xf{left:127.475987px;}
.x29{left:132.710318px;}
.x14{left:138.095987px;}
.x2f{left:149.435987px;}
.x11{left:171.929987px;}
.x1b{left:174.809987px;}
.x30{left:180.239980px;}
.x35{left:183.618921px;}
.x10{left:195.149987px;}
.x38{left:201.990000px;}
.x1a{left:213.329987px;}
.x31{left:231.127372px;}
.x23{left:238.429140px;}
.xc{left:243.569987px;}
.x18{left:247.349987px;}
.x12{left:266.069987px;}
.x22{left:276.149987px;}
.x2b{left:277.579103px;}
.xe{left:281.594987px;}
.xd{left:305.714987px;}
.x16{left:308.054987px;}
.x15{left:310.394987px;}
.xb{left:311.654987px;}
.x13{left:312.734987px;}
.x39{left:352.875000px;}
.x19{left:360.974987px;}
.x2a{left:372.134987px;}
.x2d{left:410.294987px;}
.x37{left:415.154987px;}
.x2e{left:416.414987px;}
.x8{left:446.474987px;}
.x3a{left:472.605000px;}
.x3b{left:645.585000px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v6{vertical-align:-22.457720pt;}
.v7{vertical-align:-12.530810pt;}
.v1{vertical-align:-11.532365pt;}
.va{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:10.813179pt;}
.v3{vertical-align:12.520505pt;}
.v5{vertical-align:13.718154pt;}
.v8{vertical-align:30.229138pt;}
.v2{vertical-align:35.199331pt;}
.v4{vertical-align:38.963418pt;}
.ls1d{letter-spacing:-2.002281pt;}
.ls1c{letter-spacing:-1.798503pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.007680pt;}
.ls14{letter-spacing:0.023308pt;}
.ls0{letter-spacing:0.024960pt;}
.ls1e{letter-spacing:0.042494pt;}
.ls18{letter-spacing:0.049204pt;}
.ls16{letter-spacing:0.069760pt;}
.ls1f{letter-spacing:0.168923pt;}
.ls19{letter-spacing:0.195595pt;}
.ls1b{letter-spacing:0.215917pt;}
.ls3{letter-spacing:0.224640pt;}
.ls17{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.282386pt;}
.ls12{letter-spacing:0.289737pt;}
.lsa{letter-spacing:0.303467pt;}
.lsd{letter-spacing:0.315307pt;}
.ls1{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.336533pt;}
.ls2{letter-spacing:0.448000pt;}
.lsc{letter-spacing:1.872640pt;}
.ls1a{letter-spacing:2.352197pt;}
.ls7{letter-spacing:3.680000pt;}
.lse{letter-spacing:4.320000pt;}
.ls8{letter-spacing:15.200000pt;}
.ls23{letter-spacing:36.783360pt;}
.ls22{letter-spacing:73.903360pt;}
.ls6{letter-spacing:93.920000pt;}
.ls9{letter-spacing:97.120000pt;}
.lsf{letter-spacing:142.006014pt;}
.ls10{letter-spacing:302.129942pt;}
.ls13{letter-spacing:333.012318pt;}
.ls15{letter-spacing:702.753492pt;}
.ws28{word-spacing:-74.880000pt;}
.wsd{word-spacing:-40.979112pt;}
.ws16{word-spacing:-34.377982pt;}
.ws14{word-spacing:-30.157104pt;}
.ws9{word-spacing:-29.162880pt;}
.ws26{word-spacing:-25.055389pt;}
.ws25{word-spacing:-23.593425pt;}
.ws1{word-spacing:-21.600000pt;}
.ws2d{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.944640pt;}
.ws8{word-spacing:-18.744960pt;}
.ws2a{word-spacing:-18.727680pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.400000pt;}
.ws2c{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2b{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.205260pt;}
.ws29{word-spacing:-12.000000pt;}
.ws23{word-spacing:-0.319694pt;}
.ws1d{word-spacing:-0.311583pt;}
.ws27{word-spacing:-0.193978pt;}
.ws10{word-spacing:-0.054931pt;}
.ws1e{word-spacing:-0.051398pt;}
.ws18{word-spacing:-0.049994pt;}
.wsa{word-spacing:-0.049761pt;}
.ws24{word-spacing:-0.042975pt;}
.ws15{word-spacing:-0.032026pt;}
.ws6{word-spacing:0.000000pt;}
.ws19{word-spacing:1.748509pt;}
.ws1f{word-spacing:1.950883pt;}
.wse{word-spacing:26.364339pt;}
.wsf{word-spacing:27.215890pt;}
.wsb{word-spacing:43.684182pt;}
.ws12{word-spacing:62.762477pt;}
.ws13{word-spacing:135.169286pt;}
.ws11{word-spacing:154.288680pt;}
.ws1c{word-spacing:238.877964pt;}
.ws22{word-spacing:256.831554pt;}
.ws17{word-spacing:461.254257pt;}
.ws1b{word-spacing:538.049981pt;}
.ws21{word-spacing:580.460445pt;}
.ws1a{word-spacing:643.639601pt;}
.ws20{word-spacing:688.723949pt;}
._30{margin-left:-358.011282pt;}
._60{margin-left:-346.118646pt;}
._6b{margin-left:-336.937737pt;}
._4e{margin-left:-326.524237pt;}
._5f{margin-left:-309.096100pt;}
._4d{margin-left:-295.655649pt;}
._61{margin-left:-265.411139pt;}
._62{margin-left:-258.615410pt;}
._4f{margin-left:-247.418215pt;}
._52{margin-left:-240.668628pt;}
._40{margin-left:-238.478107pt;}
._33{margin-left:-232.404018pt;}
._3a{margin-left:-214.826981pt;}
._3c{margin-left:-206.787317pt;}
._42{margin-left:-200.205180pt;}
._6d{margin-left:-193.813595pt;}
._3f{margin-left:-191.721648pt;}
._63{margin-left:-179.052453pt;}
._2e{margin-left:-178.092078pt;}
._64{margin-left:-176.830481pt;}
._70{margin-left:-175.926497pt;}
._69{margin-left:-174.642142pt;}
._55{margin-left:-172.930857pt;}
._53{margin-left:-163.885272pt;}
._5e{margin-left:-161.056328pt;}
._39{margin-left:-158.721648pt;}
._5c{margin-left:-150.671618pt;}
._41{margin-left:-148.856369pt;}
._4a{margin-left:-147.005905pt;}
._4c{margin-left:-145.376916pt;}
._3b{margin-left:-143.385743pt;}
._3e{margin-left:-139.031094pt;}
._54{margin-left:-133.536615pt;}
._67{margin-left:-132.604549pt;}
._50{margin-left:-130.436972pt;}
._65{margin-left:-128.858707pt;}
._6c{margin-left:-125.454000pt;}
._3d{margin-left:-124.416670pt;}
._35{margin-left:-123.207519pt;}
._56{margin-left:-119.788629pt;}
._5d{margin-left:-113.175519pt;}
._58{margin-left:-111.109607pt;}
._6e{margin-left:-110.142806pt;}
._46{margin-left:-108.579961pt;}
._6f{margin-left:-106.193611pt;}
._32{margin-left:-104.014174pt;}
._4b{margin-left:-99.488218pt;}
._51{margin-left:-96.298774pt;}
._36{margin-left:-94.834148pt;}
._6a{margin-left:-89.619318pt;}
._31{margin-left:-85.162145pt;}
._2f{margin-left:-84.133892pt;}
._59{margin-left:-73.668656pt;}
._47{margin-left:-71.576281pt;}
._34{margin-left:-67.566784pt;}
._57{margin-left:-63.624368pt;}
._45{margin-left:-61.326881pt;}
._48{margin-left:-50.685308pt;}
._37{margin-left:-41.830046pt;}
._5a{margin-left:-37.453677pt;}
._38{margin-left:-35.638696pt;}
._5b{margin-left:-34.017102pt;}
._49{margin-left:-32.674870pt;}
._68{margin-left:-31.112911pt;}
._66{margin-left:-28.002805pt;}
._73{margin-left:-5.180160pt;}
._28{margin-left:-4.176640pt;}
._11{margin-left:-3.219840pt;}
._9{margin-left:-1.967573pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._a{width:2.358613pt;}
._16{width:3.262720pt;}
._b{width:4.244480pt;}
._8{width:5.241600pt;}
._74{width:6.143787pt;}
._f{width:7.038720pt;}
._10{width:8.293333pt;}
._1a{width:9.979733pt;}
._6{width:11.288533pt;}
._7{width:12.205440pt;}
._24{width:13.209813pt;}
._21{width:14.204160pt;}
._3{width:15.130027pt;}
._2{width:16.216960pt;}
._5{width:17.821440pt;}
._d{width:20.783147pt;}
._c{width:21.790080pt;}
._4{width:23.362560pt;}
._26{width:25.159680pt;}
._71{width:26.240000pt;}
._14{width:27.630720pt;}
._2c{width:30.233173pt;}
._e{width:32.026880pt;}
._2b{width:35.411627pt;}
._13{width:36.389333pt;}
._12{width:37.423147pt;}
._27{width:38.368427pt;}
._29{width:43.355520pt;}
._2a{width:44.282880pt;}
._2d{width:45.565227pt;}
._1f{width:46.800000pt;}
._20{width:47.849813pt;}
._15{width:50.076373pt;}
._43{width:56.160000pt;}
._22{width:57.358080pt;}
._23{width:58.256640pt;}
._1e{width:61.492907pt;}
._19{width:62.449067pt;}
._17{width:63.405013pt;}
._18{width:64.510720pt;}
._1d{width:68.122453pt;}
._1c{width:93.056640pt;}
._1b{width:94.630400pt;}
._25{width:96.782080pt;}
._44{width:170.080000pt;}
._72{width:254.085973pt;}
.fs11{font-size:25.055389pt;}
.fs6{font-size:29.011461pt;}
.fsd{font-size:29.197351pt;}
.fsf{font-size:29.957427pt;}
.fs9{font-size:32.025785pt;}
.fs10{font-size:42.975274pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:49.760772pt;}
.fsc{font-size:49.994246pt;}
.fse{font-size:51.397526pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:54.930973pt;}
.fsb{font-size:58.035849pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:64.464666pt;}
.fs7{font-size:74.643191pt;}
.fs2{font-size:74.880000pt;}
.fsa{font-size:82.398704pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:2.192721pt;}
.y59{bottom:2.192722pt;}
.y3a{bottom:2.489614pt;}
.y36{bottom:2.489619pt;}
.y38{bottom:2.489620pt;}
.y67{bottom:3.520000pt;}
.y46{bottom:3.864011pt;}
.y3f{bottom:3.864023pt;}
.y41{bottom:3.864024pt;}
.y44{bottom:3.864025pt;}
.y4c{bottom:6.415902pt;}
.y50{bottom:7.637302pt;}
.y58{bottom:9.984429pt;}
.y4d{bottom:12.030382pt;}
.y55{bottom:12.453243pt;}
.y5a{bottom:12.453258pt;}
.y65{bottom:12.640000pt;}
.y51{bottom:13.423180pt;}
.y40{bottom:13.850649pt;}
.y3{bottom:14.240000pt;}
.y34{bottom:14.419536pt;}
.y37{bottom:14.419544pt;}
.yb{bottom:14.560000pt;}
.y3e{bottom:17.034349pt;}
.y42{bottom:17.034368pt;}
.y47{bottom:17.034381pt;}
.ya{bottom:21.440000pt;}
.y66{bottom:21.920000pt;}
.y56{bottom:23.395544pt;}
.y4{bottom:24.800000pt;}
.y39{bottom:27.089517pt;}
.y35{bottom:27.089526pt;}
.y45{bottom:31.020771pt;}
.y43{bottom:31.020785pt;}
.y6b{bottom:31.040000pt;}
.y2{bottom:32.640000pt;}
.y9{bottom:32.672000pt;}
.y8{bottom:39.680000pt;}
.y6a{bottom:40.320000pt;}
.y32{bottom:108.032000pt;}
.y94{bottom:114.592000pt;}
.y2e{bottom:117.792000pt;}
.y31{bottom:132.832000pt;}
.y73{bottom:137.626667pt;}
.y93{bottom:139.226667pt;}
.y2d{bottom:142.426667pt;}
.y30{bottom:157.466667pt;}
.y72{bottom:162.266667pt;}
.y92{bottom:163.866667pt;}
.y2c{bottom:174.586667pt;}
.y2f{bottom:182.106667pt;}
.y71{bottom:187.066667pt;}
.y91{bottom:188.666667pt;}
.y2b{bottom:206.906667pt;}
.y70{bottom:211.706667pt;}
.y90{bottom:213.306667pt;}
.y2a{bottom:231.546667pt;}
.y6f{bottom:236.346667pt;}
.y8f{bottom:237.946667pt;}
.y29{bottom:256.186667pt;}
.y6e{bottom:260.986667pt;}
.y8e{bottom:262.586667pt;}
.y28{bottom:280.826667pt;}
.y6d{bottom:285.786667pt;}
.y8d{bottom:287.386667pt;}
.y6c{bottom:303.266667pt;}
.y27{bottom:305.666667pt;}
.y8c{bottom:312.066667pt;}
.y26{bottom:330.306667pt;}
.y8b{bottom:336.706667pt;}
.y25{bottom:354.946667pt;}
.y69{bottom:358.466667pt;}
.y8a{bottom:361.346667pt;}
.y24{bottom:379.746667pt;}
.y89{bottom:386.146667pt;}
.y23{bottom:404.386667pt;}
.y88{bottom:410.786667pt;}
.y68{bottom:413.666667pt;}
.y22{bottom:429.026667pt;}
.y87{bottom:435.426667pt;}
.y64{bottom:450.466667pt;}
.y21{bottom:453.666667pt;}
.y86{bottom:460.226667pt;}
.y20{bottom:478.466667pt;}
.y85{bottom:484.866667pt;}
.y63{bottom:494.466667pt;}
.y1f{bottom:503.106667pt;}
.y84{bottom:509.506667pt;}
.y62{bottom:519.106667pt;}
.y1e{bottom:527.746667pt;}
.y83{bottom:534.146667pt;}
.y61{bottom:543.773333pt;}
.y1d{bottom:552.413333pt;}
.y82{bottom:558.973333pt;}
.y60{bottom:568.733333pt;}
.y1c{bottom:577.213333pt;}
.y81{bottom:583.613333pt;}
.y5f{bottom:593.853333pt;}
.y1b{bottom:601.853333pt;}
.y80{bottom:608.253333pt;}
.y5e{bottom:618.813333pt;}
.y1a{bottom:626.493333pt;}
.y7f{bottom:633.053333pt;}
.y5d{bottom:643.613333pt;}
.y19{bottom:651.293333pt;}
.y7e{bottom:657.693333pt;}
.y5c{bottom:668.253333pt;}
.y18{bottom:675.933333pt;}
.y7d{bottom:682.333333pt;}
.y54{bottom:688.879928pt;}
.y17{bottom:700.573333pt;}
.y7c{bottom:706.973333pt;}
.y5b{bottom:707.613333pt;}
.y16{bottom:725.213333pt;}
.y7b{bottom:731.773333pt;}
.y53{bottom:732.253333pt;}
.y15{bottom:750.013333pt;}
.y4f{bottom:752.879928pt;}
.y7a{bottom:756.413333pt;}
.y52{bottom:762.173333pt;}
.y14{bottom:774.693333pt;}
.y79{bottom:781.093333pt;}
.y4b{bottom:782.813261pt;}
.y4e{bottom:790.853333pt;}
.y13{bottom:799.333333pt;}
.y78{bottom:805.733333pt;}
.y4a{bottom:815.653333pt;}
.y12{bottom:824.133333pt;}
.y77{bottom:830.533333pt;}
.y49{bottom:840.293333pt;}
.y11{bottom:848.773333pt;}
.y76{bottom:855.173333pt;}
.y3d{bottom:860.879928pt;}
.y10{bottom:873.413333pt;}
.y75{bottom:879.813333pt;}
.y48{bottom:880.933333pt;}
.yf{bottom:898.053333pt;}
.y74{bottom:901.253333pt;}
.y3c{bottom:908.133333pt;}
.ye{bottom:922.853333pt;}
.y3b{bottom:932.773333pt;}
.yd{bottom:947.493333pt;}
.y33{bottom:953.346594pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.h27{height:18.559094pt;}
.h1d{height:19.999631pt;}
.h20{height:21.599887pt;}
.h18{height:23.722225pt;}
.h25{height:24.590494pt;}
.h12{height:28.458997pt;}
.h10{height:28.473162pt;}
.h1f{height:28.655603pt;}
.h22{height:29.401577pt;}
.h23{height:30.400065pt;}
.h1a{height:31.415919pt;}
.h16{height:31.431557pt;}
.h28{height:31.832759pt;}
.he{height:35.200013pt;}
.h2a{height:36.800000pt;}
.h14{height:39.999759pt;}
.h19{height:40.688616pt;}
.h24{height:42.177881pt;}
.h1c{height:42.988468pt;}
.h11{height:43.757538pt;}
.h2c{height:44.875000pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.h7{height:47.552000pt;}
.h26{height:47.750439pt;}
.hf{height:48.837476pt;}
.h1e{height:49.066618pt;}
.h21{height:50.443861pt;}
.hc{height:52.503750pt;}
.hb{height:52.832812pt;}
.h15{height:53.911746pt;}
.h2b{height:55.200000pt;}
.h17{height:61.034587pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.h6{height:75.465000pt;}
.h2d{height:76.964840pt;}
.hd{height:77.951250pt;}
.h29{height:83.199214pt;}
.h9{height:85.785000pt;}
.h13{height:96.533015pt;}
.h1b{height:106.566497pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.wc{width:104.032000pt;}
.we{width:106.432000pt;}
.w7{width:132.205242pt;}
.wd{width:134.106667pt;}
.w10{width:144.346667pt;}
.wf{width:153.760000pt;}
.wb{width:208.798127pt;}
.w8{width:217.470201pt;}
.w9{width:251.392000pt;}
.wa{width:256.797641pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.971174pt;}
.x26{left:4.219922pt;}
.x2{left:7.680000pt;}
.x24{left:10.938607pt;}
.x7{left:17.600000pt;}
.x1d{left:26.510532pt;}
.x1{left:28.320000pt;}
.x1e{left:31.702093pt;}
.x36{left:33.589861pt;}
.x32{left:34.778537pt;}
.x34{left:36.139732pt;}
.x33{left:39.360811pt;}
.x21{left:40.330486pt;}
.x20{left:43.189672pt;}
.x28{left:47.641638pt;}
.x27{left:49.057071pt;}
.x4{left:53.306667pt;}
.x2c{left:73.838897pt;}
.x5{left:75.519988pt;}
.xa{left:85.311988pt;}
.x1f{left:92.172399pt;}
.x17{left:102.911988pt;}
.x1c{left:107.595651pt;}
.x9{left:109.151988pt;}
.xf{left:113.311988pt;}
.x29{left:117.964727pt;}
.x14{left:122.751988pt;}
.x2f{left:132.831988pt;}
.x11{left:152.826655pt;}
.x1b{left:155.386655pt;}
.x30{left:160.213315pt;}
.x35{left:163.216818pt;}
.x10{left:173.466655pt;}
.x38{left:179.546667pt;}
.x1a{left:189.626655pt;}
.x31{left:205.446553pt;}
.x23{left:211.937013pt;}
.xc{left:216.506655pt;}
.x18{left:219.866655pt;}
.x12{left:236.506655pt;}
.x22{left:245.466655pt;}
.x2b{left:246.736980pt;}
.xe{left:250.306655pt;}
.xd{left:271.746655pt;}
.x16{left:273.826655pt;}
.x15{left:275.906655pt;}
.xb{left:277.026655pt;}
.x13{left:277.986655pt;}
.x39{left:313.666667pt;}
.x19{left:320.866655pt;}
.x2a{left:330.786655pt;}
.x2d{left:364.706655pt;}
.x37{left:369.026655pt;}
.x2e{left:370.146655pt;}
.x8{left:396.866655pt;}
.x3a{left:420.093333pt;}
.x3b{left:573.853333pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




    .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; }
  