
    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_3cf8f5bf3c47d2b7cda059aa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_ca276fd9677d2a89fbfa2ab7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_d46401037776b95a904b5f7b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_d04af7278eb492515fe3a4ab.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_3e781ba5e8e773d8be6e3e6f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_a6a7654bd46edaa8ad3f5ebc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:679.752000px;}
.ls2{letter-spacing:697.752000px;}
.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:-55.944000px;}
.wsb0{word-spacing:-38.857500px;}
.ws9{word-spacing:-38.666400px;}
.ws1e{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.wsd7{word-spacing:-38.656800px;}
.ws6a{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.wsd0{word-spacing:-38.646000px;}
.wsa3{word-spacing:-38.588400px;}
.wsc3{word-spacing:-38.581800px;}
.wsd3{word-spacing:-38.449500px;}
.ws32{word-spacing:-38.440800px;}
.ws44{word-spacing:-38.432700px;}
.wsd{word-spacing:-38.429100px;}
.ws3{word-spacing:-38.374200px;}
.wsa7{word-spacing:-38.166000px;}
.wsc{word-spacing:-38.160000px;}
.wsc6{word-spacing:-38.157000px;}
.wsb{word-spacing:-38.156400px;}
.ws47{word-spacing:-38.155200px;}
.wsd6{word-spacing:-38.154600px;}
.wsa8{word-spacing:-38.154000px;}
.ws96{word-spacing:-38.153700px;}
.ws52{word-spacing:-38.152800px;}
.wsce{word-spacing:-38.151900px;}
.ws88{word-spacing:-38.140200px;}
.wsd1{word-spacing:-38.085300px;}
.ws69{word-spacing:-38.072700px;}
.wsa9{word-spacing:-37.948200px;}
.ws0{word-spacing:-37.944000px;}
.ws35{word-spacing:-37.943700px;}
.ws22{word-spacing:-37.942800px;}
.ws9b{word-spacing:-37.941900px;}
.ws20{word-spacing:-37.940400px;}
.ws55{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.938600px;}
.ws98{word-spacing:-37.936800px;}
.ws6b{word-spacing:-37.935900px;}
.wscf{word-spacing:-37.934700px;}
.ws2{word-spacing:-37.931400px;}
.wsb8{word-spacing:-37.926900px;}
.ws53{word-spacing:-37.730400px;}
.wse{word-spacing:-37.723500px;}
.ws72{word-spacing:-37.722600px;}
.ws2c{word-spacing:-37.718100px;}
.wsd4{word-spacing:-37.713600px;}
.wsc4{word-spacing:-37.446000px;}
.ws73{word-spacing:-37.442400px;}
.ws99{word-spacing:-37.440000px;}
.wsb1{word-spacing:-37.436400px;}
.ws3f{word-spacing:-37.359600px;}
.wsb2{word-spacing:-37.222200px;}
.ws54{word-spacing:-37.220400px;}
.ws16{word-spacing:-37.209600px;}
.ws27{word-spacing:-36.992100px;}
.wsb5{word-spacing:-36.720000px;}
.ws8e{word-spacing:-36.710400px;}
.ws4b{word-spacing:-36.504000px;}
.ws74{word-spacing:-36.502200px;}
.ws2b{word-spacing:-36.489300px;}
.ws10{word-spacing:-35.996400px;}
.wsab{word-spacing:-35.782200px;}
.ws60{word-spacing:-35.277300px;}
.ws62{word-spacing:-35.276400px;}
.ws4f{word-spacing:-35.064000px;}
.ws93{word-spacing:-35.062200px;}
.ws9a{word-spacing:-35.055000px;}
.wsac{word-spacing:-34.556400px;}
.ws70{word-spacing:-34.346400px;}
.wsa1{word-spacing:-34.268400px;}
.ws90{word-spacing:-33.842400px;}
.ws83{word-spacing:-33.836400px;}
.ws3c{word-spacing:-33.624000px;}
.ws67{word-spacing:-33.621900px;}
.ws7d{word-spacing:-33.619500px;}
.ws81{word-spacing:-33.615900px;}
.ws2e{word-spacing:-33.604200px;}
.ws9d{word-spacing:-33.548400px;}
.ws8{word-spacing:-33.547800px;}
.wsa2{word-spacing:-33.395400px;}
.ws95{word-spacing:-33.116400px;}
.wsc7{word-spacing:-33.110400px;}
.ws8a{word-spacing:-33.100200px;}
.ws85{word-spacing:-32.904000px;}
.ws8b{word-spacing:-32.891400px;}
.ws9f{word-spacing:-32.405100px;}
.ws15{word-spacing:-32.186400px;}
.ws82{word-spacing:-32.180400px;}
.ws17{word-spacing:-32.173200px;}
.ws42{word-spacing:-31.823100px;}
.ws23{word-spacing:-31.667100px;}
.ws8f{word-spacing:-31.461300px;}
.wsb3{word-spacing:-31.460400px;}
.wsa6{word-spacing:-31.455000px;}
.ws9e{word-spacing:-31.452000px;}
.ws71{word-spacing:-31.451400px;}
.ws24{word-spacing:-31.451100px;}
.ws4d{word-spacing:-31.239600px;}
.ws7f{word-spacing:-30.960000px;}
.wsb4{word-spacing:-30.956100px;}
.ws40{word-spacing:-30.744000px;}
.ws8c{word-spacing:-30.740400px;}
.wsa4{word-spacing:-30.736200px;}
.wsb9{word-spacing:-30.668100px;}
.wsba{word-spacing:-30.534000px;}
.ws50{word-spacing:-30.240000px;}
.wsb6{word-spacing:-30.236400px;}
.ws2a{word-spacing:-30.007800px;}
.ws84{word-spacing:-29.948400px;}
.wsd2{word-spacing:-29.808000px;}
.wsa0{word-spacing:-29.803500px;}
.wsaf{word-spacing:-29.520000px;}
.ws65{word-spacing:-29.295900px;}
.ws9c{word-spacing:-29.291400px;}
.ws92{word-spacing:-29.079000px;}
.wsca{word-spacing:-28.791900px;}
.ws31{word-spacing:-28.585500px;}
.ws1b{word-spacing:-28.582200px;}
.ws30{word-spacing:-28.566000px;}
.ws80{word-spacing:-27.857700px;}
.wsad{word-spacing:-27.851400px;}
.ws59{word-spacing:-27.359100px;}
.ws5a{word-spacing:-27.357000px;}
.ws6d{word-spacing:-27.140400px;}
.ws51{word-spacing:-27.129000px;}
.wsbd{word-spacing:-26.640000px;}
.wsbb{word-spacing:-26.636400px;}
.wscb{word-spacing:-26.420400px;}
.wsbe{word-spacing:-26.352000px;}
.ws5b{word-spacing:-26.350800px;}
.ws76{word-spacing:-25.920000px;}
.wsc1{word-spacing:-25.912800px;}
.wsbf{word-spacing:-25.911300px;}
.ws2d{word-spacing:-25.701300px;}
.ws4e{word-spacing:-25.488000px;}
.wsc0{word-spacing:-25.483500px;}
.ws91{word-spacing:-25.196400px;}
.ws18{word-spacing:-25.182000px;}
.ws41{word-spacing:-25.120800px;}
.ws94{word-spacing:-24.986400px;}
.ws5f{word-spacing:-24.910800px;}
.ws97{word-spacing:-24.480000px;}
.ws6f{word-spacing:-24.270000px;}
.ws77{word-spacing:-24.266400px;}
.ws79{word-spacing:-24.262200px;}
.ws6e{word-spacing:-24.046200px;}
.ws7a{word-spacing:-24.044400px;}
.ws78{word-spacing:-24.040800px;}
.ws7b{word-spacing:-23.757300px;}
.wsb7{word-spacing:-23.756400px;}
.wscd{word-spacing:-23.544000px;}
.ws66{word-spacing:-23.536200px;}
.ws4c{word-spacing:-22.830000px;}
.ws68{word-spacing:-22.816800px;}
.ws6c{word-spacing:-22.815900px;}
.ws11{word-spacing:-22.316400px;}
.ws64{word-spacing:-22.306500px;}
.ws7e{word-spacing:-22.100400px;}
.ws14{word-spacing:-21.596400px;}
.wsc8{word-spacing:-21.390000px;}
.ws13{word-spacing:-21.373200px;}
.ws8d{word-spacing:-20.666400px;}
.ws7c{word-spacing:-20.664000px;}
.wscc{word-spacing:-20.660400px;}
.ws26{word-spacing:-20.653200px;}
.wsae{word-spacing:-19.944000px;}
.wsc2{word-spacing:-19.440000px;}
.ws1d{word-spacing:-19.217700px;}
.ws21{word-spacing:-18.720000px;}
.ws1c{word-spacing:-18.716400px;}
.ws5c{word-spacing:-18.500400px;}
.ws7{word-spacing:-18.472500px;}
.ws63{word-spacing:-18.006000px;}
.ws75{word-spacing:-17.772300px;}
.ws5e{word-spacing:-17.051400px;}
.ws34{word-spacing:-16.838100px;}
.ws33{word-spacing:-16.551900px;}
.wsc5{word-spacing:-16.335000px;}
.ws87{word-spacing:-16.323300px;}
.ws45{word-spacing:-15.840000px;}
.wsa5{word-spacing:-15.836400px;}
.ws46{word-spacing:-15.624000px;}
.ws1f{word-spacing:-15.408000px;}
.ws58{word-spacing:-14.904000px;}
.wsc9{word-spacing:-14.817600px;}
.ws19{word-spacing:-14.400000px;}
.ws1a{word-spacing:-14.396400px;}
.ws89{word-spacing:-14.184000px;}
.ws38{word-spacing:-12.030000px;}
.ws39{word-spacing:-10.997100px;}
.ws28{word-spacing:-10.573800px;}
.ws25{word-spacing:-10.565100px;}
.ws2f{word-spacing:-9.855900px;}
.ws3a{word-spacing:-9.849600px;}
.ws3b{word-spacing:-9.144000px;}
.ws37{word-spacing:-7.761600px;}
.ws36{word-spacing:-7.200000px;}
.ws86{word-spacing:-6.969600px;}
.ws4a{word-spacing:-6.958200px;}
.ws49{word-spacing:-6.480000px;}
.ws48{word-spacing:-6.474000px;}
.ws12{word-spacing:-2.880000px;}
.ws29{word-spacing:-2.160000px;}
.wsd5{word-spacing:-1.944000px;}
.wsaa{word-spacing:0.000000px;}
.ws43{word-spacing:0.216000px;}
.wsf{word-spacing:3.312000px;}
.ws61{word-spacing:4.320000px;}
.ws56{word-spacing:5.769900px;}
.ws57{word-spacing:5.978700px;}
.ws3e{word-spacing:12.456000px;}
.ws3d{word-spacing:12.530700px;}
.wsbc{word-spacing:23.766000px;}
.ws5d{word-spacing:39.600000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1f{width:17.612400px;}
._4{width:18.775800px;}
._11{width:20.009400px;}
._6{width:21.103200px;}
._20{width:22.170000px;}
._17{width:23.344800px;}
._9{width:25.204800px;}
._1a{width:26.274600px;}
._10{width:27.343800px;}
._c{width:28.419600px;}
._1b{width:30.075000px;}
._12{width:31.322400px;}
._a{width:32.346000px;}
._1e{width:33.370200px;}
._7{width:34.840800px;}
._1{width:36.000000px;}
._8{width:37.029600px;}
._1d{width:39.304800px;}
._13{width:40.353900px;}
._d{width:41.538000px;}
._b{width:42.696000px;}
._15{width:45.028800px;}
._e{width:46.853100px;}
._16{width:48.442800px;}
._14{width:50.241600px;}
._21{width:51.408000px;}
._22{width:52.488000px;}
._23{width:54.000000px;}
._f{width:55.440000px;}
._5{width:60.330000px;}
._1c{width:63.400200px;}
._25{width:64.975800px;}
._19{width:66.960000px;}
._18{width:69.851400px;}
._24{width:71.196600px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2f{bottom:100.875000px;}
.y7e{bottom:102.855000px;}
.ybb{bottom:120.315000px;}
.y2e{bottom:121.575000px;}
.y58{bottom:122.836500px;}
.y7d{bottom:123.555000px;}
.yba{bottom:141.015000px;}
.y2d{bottom:142.275000px;}
.y57{bottom:143.536500px;}
.y7c{bottom:144.255000px;}
.yb9{bottom:161.715000px;}
.y56{bottom:164.236500px;}
.y7b{bottom:164.775000px;}
.yb8{bottom:182.415000px;}
.y2c{bottom:184.036500px;}
.y55{bottom:184.936500px;}
.y7a{bottom:185.475000px;}
.yb7{bottom:203.115000px;}
.y2b{bottom:204.736500px;}
.y54{bottom:205.636500px;}
.y79{bottom:206.175000px;}
.yb6{bottom:223.815000px;}
.y53{bottom:226.336500px;}
.y78{bottom:226.875000px;}
.y2a{bottom:246.496500px;}
.y52{bottom:247.036500px;}
.y77{bottom:247.575000px;}
.yb5{bottom:265.575000px;}
.y29{bottom:267.196500px;}
.y51{bottom:267.736500px;}
.y76{bottom:268.275000px;}
.y28{bottom:287.896500px;}
.y50{bottom:288.436500px;}
.y75{bottom:288.975000px;}
.yb4{bottom:307.155000px;}
.y27{bottom:308.596500px;}
.y4f{bottom:309.136500px;}
.y74{bottom:309.675000px;}
.yb3{bottom:327.855000px;}
.y26{bottom:329.295000px;}
.y4e{bottom:329.836500px;}
.y73{bottom:330.375000px;}
.y25{bottom:349.996500px;}
.y72{bottom:351.075000px;}
.yb2{bottom:369.615000px;}
.y24{bottom:370.696500px;}
.y4d{bottom:371.596500px;}
.y71{bottom:371.775000px;}
.y96{bottom:380.415000px;}
.yb1{bottom:390.315000px;}
.y23{bottom:391.396500px;}
.y70{bottom:392.475000px;}
.y95{bottom:402.375000px;}
.yb0{bottom:411.015000px;}
.y22{bottom:412.096500px;}
.y4c{bottom:413.175000px;}
.y94{bottom:424.336500px;}
.y21{bottom:432.795000px;}
.y4b{bottom:433.875000px;}
.y93{bottom:446.295000px;}
.yaf{bottom:452.775000px;}
.y20{bottom:453.496500px;}
.y4a{bottom:454.575000px;}
.y92{bottom:468.255000px;}
.yae{bottom:473.475000px;}
.y1f{bottom:474.196500px;}
.y6f{bottom:475.275000px;}
.y91{bottom:490.215000px;}
.yad{bottom:494.175000px;}
.y1e{bottom:494.896500px;}
.y6e{bottom:495.975000px;}
.y49{bottom:496.336500px;}
.y1d{bottom:515.596500px;}
.y6d{bottom:516.675000px;}
.y48{bottom:517.036500px;}
.y90{bottom:533.236500px;}
.yac{bottom:535.755000px;}
.y6c{bottom:537.375000px;}
.y47{bottom:537.736500px;}
.y8f{bottom:553.936500px;}
.yab{bottom:556.455000px;}
.y1c{bottom:557.175000px;}
.y6b{bottom:558.075000px;}
.y46{bottom:558.436500px;}
.y8e{bottom:574.636500px;}
.yaa{bottom:577.155000px;}
.y1b{bottom:577.875000px;}
.y6a{bottom:578.775000px;}
.y45{bottom:579.136500px;}
.y8d{bottom:595.336500px;}
.ya9{bottom:597.855000px;}
.y69{bottom:599.475000px;}
.y44{bottom:599.836500px;}
.ya8{bottom:618.555000px;}
.y1a{bottom:619.636500px;}
.y68{bottom:620.175000px;}
.y43{bottom:620.536500px;}
.y8c{bottom:637.096500px;}
.y19{bottom:640.336500px;}
.y67{bottom:640.875000px;}
.y42{bottom:641.236500px;}
.y8b{bottom:657.795000px;}
.ya7{bottom:660.315000px;}
.y18{bottom:661.036500px;}
.y66{bottom:661.575000px;}
.y41{bottom:661.936500px;}
.y8a{bottom:678.496500px;}
.ya6{bottom:681.015000px;}
.y17{bottom:681.736500px;}
.y65{bottom:682.275000px;}
.y40{bottom:682.636500px;}
.y89{bottom:699.195000px;}
.ya5{bottom:701.715000px;}
.y16{bottom:702.436500px;}
.y64{bottom:702.975000px;}
.y3f{bottom:703.336500px;}
.ya4{bottom:722.415000px;}
.y15{bottom:723.136500px;}
.y63{bottom:723.675000px;}
.y3e{bottom:724.036500px;}
.y88{bottom:740.775000px;}
.ya3{bottom:743.115000px;}
.y14{bottom:743.836500px;}
.y62{bottom:744.375000px;}
.y3d{bottom:744.736500px;}
.y87{bottom:761.475000px;}
.ya2{bottom:763.815000px;}
.y13{bottom:764.536500px;}
.y61{bottom:765.075000px;}
.yc6{bottom:765.436500px;}
.y86{bottom:782.175000px;}
.ya1{bottom:784.515000px;}
.y12{bottom:785.236500px;}
.y60{bottom:785.775000px;}
.yc5{bottom:786.136500px;}
.y3c{bottom:786.496500px;}
.y85{bottom:802.875000px;}
.ya0{bottom:805.215000px;}
.y11{bottom:805.936500px;}
.y5f{bottom:806.475000px;}
.yc4{bottom:806.836500px;}
.y3b{bottom:807.195000px;}
.y84{bottom:823.575000px;}
.y9f{bottom:825.915000px;}
.y10{bottom:826.636500px;}
.y5e{bottom:827.175000px;}
.yc3{bottom:827.536500px;}
.y3a{bottom:827.895000px;}
.y9e{bottom:846.615000px;}
.yf{bottom:847.336500px;}
.y5d{bottom:847.875000px;}
.yc2{bottom:848.236500px;}
.y83{bottom:865.336500px;}
.ye{bottom:868.036500px;}
.y5c{bottom:868.575000px;}
.yc1{bottom:868.936500px;}
.y39{bottom:869.475000px;}
.y82{bottom:886.036500px;}
.y9d{bottom:888.195000px;}
.y5b{bottom:889.275000px;}
.yc0{bottom:889.636500px;}
.y38{bottom:890.175000px;}
.y81{bottom:907.995000px;}
.yd{bottom:909.795000px;}
.y5a{bottom:909.975000px;}
.ybf{bottom:910.336500px;}
.y37{bottom:910.875000px;}
.y80{bottom:929.955000px;}
.y59{bottom:930.675000px;}
.ybe{bottom:931.036500px;}
.y36{bottom:931.575000px;}
.y9c{bottom:950.655000px;}
.y7f{bottom:950.836500px;}
.yc{bottom:951.375000px;}
.ybd{bottom:951.736500px;}
.y35{bottom:952.275000px;}
.y9b{bottom:971.355000px;}
.ybc{bottom:972.436500px;}
.y34{bottom:972.975000px;}
.y9a{bottom:992.055000px;}
.yb{bottom:993.136500px;}
.y33{bottom:993.675000px;}
.y99{bottom:1012.755000px;}
.y32{bottom:1014.375000px;}
.y98{bottom:1033.455000px;}
.ya{bottom:1034.895000px;}
.y31{bottom:1035.075000px;}
.y97{bottom:1054.155000px;}
.y30{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h9{height:49.992188px;}
.h6{height:60.082031px;}
.h2{height:61.734375px;}
.h7{height:62.807320px;}
.ha{height:62.813320px;}
.hb{height:63.533320px;}
.h8{height:63.539320px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:25.050000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xe{left:141.120000px;}
.xa{left:150.120000px;}
.x4{left:151.200000px;}
.xc{left:154.620000px;}
.xb{left:159.120000px;}
.xd{left:288.180000px;}
.x5{left:432.900000px;}
.x3{left:465.825000px;}
.x7{left:483.300000px;}
.x8{left:546.300000px;}
.x6{left:559.800000px;}
.x9{left:574.200000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:604.224000pt;}
.ls2{letter-spacing:620.224000pt;}
.wsa{word-spacing:-49.728000pt;}
.wsb0{word-spacing:-34.540000pt;}
.ws9{word-spacing:-34.370133pt;}
.ws1e{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.wsd7{word-spacing:-34.361600pt;}
.ws6a{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.wsd0{word-spacing:-34.352000pt;}
.wsa3{word-spacing:-34.300800pt;}
.wsc3{word-spacing:-34.294933pt;}
.wsd3{word-spacing:-34.177333pt;}
.ws32{word-spacing:-34.169600pt;}
.ws44{word-spacing:-34.162400pt;}
.wsd{word-spacing:-34.159200pt;}
.ws3{word-spacing:-34.110400pt;}
.wsa7{word-spacing:-33.925333pt;}
.wsc{word-spacing:-33.920000pt;}
.wsc6{word-spacing:-33.917333pt;}
.wsb{word-spacing:-33.916800pt;}
.ws47{word-spacing:-33.915733pt;}
.wsd6{word-spacing:-33.915200pt;}
.wsa8{word-spacing:-33.914667pt;}
.ws96{word-spacing:-33.914400pt;}
.ws52{word-spacing:-33.913600pt;}
.wsce{word-spacing:-33.912800pt;}
.ws88{word-spacing:-33.902400pt;}
.wsd1{word-spacing:-33.853600pt;}
.ws69{word-spacing:-33.842400pt;}
.wsa9{word-spacing:-33.731733pt;}
.ws0{word-spacing:-33.728000pt;}
.ws35{word-spacing:-33.727733pt;}
.ws22{word-spacing:-33.726933pt;}
.ws9b{word-spacing:-33.726133pt;}
.ws20{word-spacing:-33.724800pt;}
.ws55{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws98{word-spacing:-33.721600pt;}
.ws6b{word-spacing:-33.720800pt;}
.wscf{word-spacing:-33.719733pt;}
.ws2{word-spacing:-33.716800pt;}
.wsb8{word-spacing:-33.712800pt;}
.ws53{word-spacing:-33.538133pt;}
.wse{word-spacing:-33.532000pt;}
.ws72{word-spacing:-33.531200pt;}
.ws2c{word-spacing:-33.527200pt;}
.wsd4{word-spacing:-33.523200pt;}
.wsc4{word-spacing:-33.285333pt;}
.ws73{word-spacing:-33.282133pt;}
.ws99{word-spacing:-33.280000pt;}
.wsb1{word-spacing:-33.276800pt;}
.ws3f{word-spacing:-33.208533pt;}
.wsb2{word-spacing:-33.086400pt;}
.ws54{word-spacing:-33.084800pt;}
.ws16{word-spacing:-33.075200pt;}
.ws27{word-spacing:-32.881867pt;}
.wsb5{word-spacing:-32.640000pt;}
.ws8e{word-spacing:-32.631467pt;}
.ws4b{word-spacing:-32.448000pt;}
.ws74{word-spacing:-32.446400pt;}
.ws2b{word-spacing:-32.434933pt;}
.ws10{word-spacing:-31.996800pt;}
.wsab{word-spacing:-31.806400pt;}
.ws60{word-spacing:-31.357600pt;}
.ws62{word-spacing:-31.356800pt;}
.ws4f{word-spacing:-31.168000pt;}
.ws93{word-spacing:-31.166400pt;}
.ws9a{word-spacing:-31.160000pt;}
.wsac{word-spacing:-30.716800pt;}
.ws70{word-spacing:-30.530133pt;}
.wsa1{word-spacing:-30.460800pt;}
.ws90{word-spacing:-30.082133pt;}
.ws83{word-spacing:-30.076800pt;}
.ws3c{word-spacing:-29.888000pt;}
.ws67{word-spacing:-29.886133pt;}
.ws7d{word-spacing:-29.884000pt;}
.ws81{word-spacing:-29.880800pt;}
.ws2e{word-spacing:-29.870400pt;}
.ws9d{word-spacing:-29.820800pt;}
.ws8{word-spacing:-29.820267pt;}
.wsa2{word-spacing:-29.684800pt;}
.ws95{word-spacing:-29.436800pt;}
.wsc7{word-spacing:-29.431467pt;}
.ws8a{word-spacing:-29.422400pt;}
.ws85{word-spacing:-29.248000pt;}
.ws8b{word-spacing:-29.236800pt;}
.ws9f{word-spacing:-28.804533pt;}
.ws15{word-spacing:-28.610133pt;}
.ws82{word-spacing:-28.604800pt;}
.ws17{word-spacing:-28.598400pt;}
.ws42{word-spacing:-28.287200pt;}
.ws23{word-spacing:-28.148533pt;}
.ws8f{word-spacing:-27.965600pt;}
.wsb3{word-spacing:-27.964800pt;}
.wsa6{word-spacing:-27.960000pt;}
.ws9e{word-spacing:-27.957333pt;}
.ws71{word-spacing:-27.956800pt;}
.ws24{word-spacing:-27.956533pt;}
.ws4d{word-spacing:-27.768533pt;}
.ws7f{word-spacing:-27.520000pt;}
.wsb4{word-spacing:-27.516533pt;}
.ws40{word-spacing:-27.328000pt;}
.ws8c{word-spacing:-27.324800pt;}
.wsa4{word-spacing:-27.321067pt;}
.wsb9{word-spacing:-27.260533pt;}
.wsba{word-spacing:-27.141333pt;}
.ws50{word-spacing:-26.880000pt;}
.wsb6{word-spacing:-26.876800pt;}
.ws2a{word-spacing:-26.673600pt;}
.ws84{word-spacing:-26.620800pt;}
.wsd2{word-spacing:-26.496000pt;}
.wsa0{word-spacing:-26.492000pt;}
.wsaf{word-spacing:-26.240000pt;}
.ws65{word-spacing:-26.040800pt;}
.ws9c{word-spacing:-26.036800pt;}
.ws92{word-spacing:-25.848000pt;}
.wsca{word-spacing:-25.592800pt;}
.ws31{word-spacing:-25.409333pt;}
.ws1b{word-spacing:-25.406400pt;}
.ws30{word-spacing:-25.392000pt;}
.ws80{word-spacing:-24.762400pt;}
.wsad{word-spacing:-24.756800pt;}
.ws59{word-spacing:-24.319200pt;}
.ws5a{word-spacing:-24.317333pt;}
.ws6d{word-spacing:-24.124800pt;}
.ws51{word-spacing:-24.114667pt;}
.wsbd{word-spacing:-23.680000pt;}
.wsbb{word-spacing:-23.676800pt;}
.wscb{word-spacing:-23.484800pt;}
.wsbe{word-spacing:-23.424000pt;}
.ws5b{word-spacing:-23.422933pt;}
.ws76{word-spacing:-23.040000pt;}
.wsc1{word-spacing:-23.033600pt;}
.wsbf{word-spacing:-23.032267pt;}
.ws2d{word-spacing:-22.845600pt;}
.ws4e{word-spacing:-22.656000pt;}
.wsc0{word-spacing:-22.652000pt;}
.ws91{word-spacing:-22.396800pt;}
.ws18{word-spacing:-22.384000pt;}
.ws41{word-spacing:-22.329600pt;}
.ws94{word-spacing:-22.210133pt;}
.ws5f{word-spacing:-22.142933pt;}
.ws97{word-spacing:-21.760000pt;}
.ws6f{word-spacing:-21.573333pt;}
.ws77{word-spacing:-21.570133pt;}
.ws79{word-spacing:-21.566400pt;}
.ws6e{word-spacing:-21.374400pt;}
.ws7a{word-spacing:-21.372800pt;}
.ws78{word-spacing:-21.369600pt;}
.ws7b{word-spacing:-21.117600pt;}
.wsb7{word-spacing:-21.116800pt;}
.wscd{word-spacing:-20.928000pt;}
.ws66{word-spacing:-20.921067pt;}
.ws4c{word-spacing:-20.293333pt;}
.ws68{word-spacing:-20.281600pt;}
.ws6c{word-spacing:-20.280800pt;}
.ws11{word-spacing:-19.836800pt;}
.ws64{word-spacing:-19.828000pt;}
.ws7e{word-spacing:-19.644800pt;}
.ws14{word-spacing:-19.196800pt;}
.wsc8{word-spacing:-19.013333pt;}
.ws13{word-spacing:-18.998400pt;}
.ws8d{word-spacing:-18.370133pt;}
.ws7c{word-spacing:-18.368000pt;}
.wscc{word-spacing:-18.364800pt;}
.ws26{word-spacing:-18.358400pt;}
.wsae{word-spacing:-17.728000pt;}
.wsc2{word-spacing:-17.280000pt;}
.ws1d{word-spacing:-17.082400pt;}
.ws21{word-spacing:-16.640000pt;}
.ws1c{word-spacing:-16.636800pt;}
.ws5c{word-spacing:-16.444800pt;}
.ws7{word-spacing:-16.420000pt;}
.ws63{word-spacing:-16.005333pt;}
.ws75{word-spacing:-15.797600pt;}
.ws5e{word-spacing:-15.156800pt;}
.ws34{word-spacing:-14.967200pt;}
.ws33{word-spacing:-14.712800pt;}
.wsc5{word-spacing:-14.520000pt;}
.ws87{word-spacing:-14.509600pt;}
.ws45{word-spacing:-14.080000pt;}
.wsa5{word-spacing:-14.076800pt;}
.ws46{word-spacing:-13.888000pt;}
.ws1f{word-spacing:-13.696000pt;}
.ws58{word-spacing:-13.248000pt;}
.wsc9{word-spacing:-13.171200pt;}
.ws19{word-spacing:-12.800000pt;}
.ws1a{word-spacing:-12.796800pt;}
.ws89{word-spacing:-12.608000pt;}
.ws38{word-spacing:-10.693333pt;}
.ws39{word-spacing:-9.775200pt;}
.ws28{word-spacing:-9.398933pt;}
.ws25{word-spacing:-9.391200pt;}
.ws2f{word-spacing:-8.760800pt;}
.ws3a{word-spacing:-8.755200pt;}
.ws3b{word-spacing:-8.128000pt;}
.ws37{word-spacing:-6.899200pt;}
.ws36{word-spacing:-6.400000pt;}
.ws86{word-spacing:-6.195200pt;}
.ws4a{word-spacing:-6.185067pt;}
.ws49{word-spacing:-5.760000pt;}
.ws48{word-spacing:-5.754667pt;}
.ws12{word-spacing:-2.560000pt;}
.ws29{word-spacing:-1.920000pt;}
.wsd5{word-spacing:-1.728000pt;}
.wsaa{word-spacing:0.000000pt;}
.ws43{word-spacing:0.192000pt;}
.wsf{word-spacing:2.944000pt;}
.ws61{word-spacing:3.840000pt;}
.ws56{word-spacing:5.128800pt;}
.ws57{word-spacing:5.314400pt;}
.ws3e{word-spacing:11.072000pt;}
.ws3d{word-spacing:11.138400pt;}
.wsbc{word-spacing:21.125333pt;}
.ws5d{word-spacing:35.200000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1f{width:15.655467pt;}
._4{width:16.689600pt;}
._11{width:17.786133pt;}
._6{width:18.758400pt;}
._20{width:19.706667pt;}
._17{width:20.750933pt;}
._9{width:22.404267pt;}
._1a{width:23.355200pt;}
._10{width:24.305600pt;}
._c{width:25.261867pt;}
._1b{width:26.733333pt;}
._12{width:27.842133pt;}
._a{width:28.752000pt;}
._1e{width:29.662400pt;}
._7{width:30.969600pt;}
._1{width:32.000000pt;}
._8{width:32.915200pt;}
._1d{width:34.937600pt;}
._13{width:35.870133pt;}
._d{width:36.922667pt;}
._b{width:37.952000pt;}
._15{width:40.025600pt;}
._e{width:41.647200pt;}
._16{width:43.060267pt;}
._14{width:44.659200pt;}
._21{width:45.696000pt;}
._22{width:46.656000pt;}
._23{width:48.000000pt;}
._f{width:49.280000pt;}
._5{width:53.626667pt;}
._1c{width:56.355733pt;}
._25{width:57.756267pt;}
._19{width:59.520000pt;}
._18{width:62.090133pt;}
._24{width:63.285867pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2f{bottom:89.666667pt;}
.y7e{bottom:91.426667pt;}
.ybb{bottom:106.946667pt;}
.y2e{bottom:108.066667pt;}
.y58{bottom:109.188000pt;}
.y7d{bottom:109.826667pt;}
.yba{bottom:125.346667pt;}
.y2d{bottom:126.466667pt;}
.y57{bottom:127.588000pt;}
.y7c{bottom:128.226667pt;}
.yb9{bottom:143.746667pt;}
.y56{bottom:145.988000pt;}
.y7b{bottom:146.466667pt;}
.yb8{bottom:162.146667pt;}
.y2c{bottom:163.588000pt;}
.y55{bottom:164.388000pt;}
.y7a{bottom:164.866667pt;}
.yb7{bottom:180.546667pt;}
.y2b{bottom:181.988000pt;}
.y54{bottom:182.788000pt;}
.y79{bottom:183.266667pt;}
.yb6{bottom:198.946667pt;}
.y53{bottom:201.188000pt;}
.y78{bottom:201.666667pt;}
.y2a{bottom:219.108000pt;}
.y52{bottom:219.588000pt;}
.y77{bottom:220.066667pt;}
.yb5{bottom:236.066667pt;}
.y29{bottom:237.508000pt;}
.y51{bottom:237.988000pt;}
.y76{bottom:238.466667pt;}
.y28{bottom:255.908000pt;}
.y50{bottom:256.388000pt;}
.y75{bottom:256.866667pt;}
.yb4{bottom:273.026667pt;}
.y27{bottom:274.308000pt;}
.y4f{bottom:274.788000pt;}
.y74{bottom:275.266667pt;}
.yb3{bottom:291.426667pt;}
.y26{bottom:292.706667pt;}
.y4e{bottom:293.188000pt;}
.y73{bottom:293.666667pt;}
.y25{bottom:311.108000pt;}
.y72{bottom:312.066667pt;}
.yb2{bottom:328.546667pt;}
.y24{bottom:329.508000pt;}
.y4d{bottom:330.308000pt;}
.y71{bottom:330.466667pt;}
.y96{bottom:338.146667pt;}
.yb1{bottom:346.946667pt;}
.y23{bottom:347.908000pt;}
.y70{bottom:348.866667pt;}
.y95{bottom:357.666667pt;}
.yb0{bottom:365.346667pt;}
.y22{bottom:366.308000pt;}
.y4c{bottom:367.266667pt;}
.y94{bottom:377.188000pt;}
.y21{bottom:384.706667pt;}
.y4b{bottom:385.666667pt;}
.y93{bottom:396.706667pt;}
.yaf{bottom:402.466667pt;}
.y20{bottom:403.108000pt;}
.y4a{bottom:404.066667pt;}
.y92{bottom:416.226667pt;}
.yae{bottom:420.866667pt;}
.y1f{bottom:421.508000pt;}
.y6f{bottom:422.466667pt;}
.y91{bottom:435.746667pt;}
.yad{bottom:439.266667pt;}
.y1e{bottom:439.908000pt;}
.y6e{bottom:440.866667pt;}
.y49{bottom:441.188000pt;}
.y1d{bottom:458.308000pt;}
.y6d{bottom:459.266667pt;}
.y48{bottom:459.588000pt;}
.y90{bottom:473.988000pt;}
.yac{bottom:476.226667pt;}
.y6c{bottom:477.666667pt;}
.y47{bottom:477.988000pt;}
.y8f{bottom:492.388000pt;}
.yab{bottom:494.626667pt;}
.y1c{bottom:495.266667pt;}
.y6b{bottom:496.066667pt;}
.y46{bottom:496.388000pt;}
.y8e{bottom:510.788000pt;}
.yaa{bottom:513.026667pt;}
.y1b{bottom:513.666667pt;}
.y6a{bottom:514.466667pt;}
.y45{bottom:514.788000pt;}
.y8d{bottom:529.188000pt;}
.ya9{bottom:531.426667pt;}
.y69{bottom:532.866667pt;}
.y44{bottom:533.188000pt;}
.ya8{bottom:549.826667pt;}
.y1a{bottom:550.788000pt;}
.y68{bottom:551.266667pt;}
.y43{bottom:551.588000pt;}
.y8c{bottom:566.308000pt;}
.y19{bottom:569.188000pt;}
.y67{bottom:569.666667pt;}
.y42{bottom:569.988000pt;}
.y8b{bottom:584.706667pt;}
.ya7{bottom:586.946667pt;}
.y18{bottom:587.588000pt;}
.y66{bottom:588.066667pt;}
.y41{bottom:588.388000pt;}
.y8a{bottom:603.108000pt;}
.ya6{bottom:605.346667pt;}
.y17{bottom:605.988000pt;}
.y65{bottom:606.466667pt;}
.y40{bottom:606.788000pt;}
.y89{bottom:621.506667pt;}
.ya5{bottom:623.746667pt;}
.y16{bottom:624.388000pt;}
.y64{bottom:624.866667pt;}
.y3f{bottom:625.188000pt;}
.ya4{bottom:642.146667pt;}
.y15{bottom:642.788000pt;}
.y63{bottom:643.266667pt;}
.y3e{bottom:643.588000pt;}
.y88{bottom:658.466667pt;}
.ya3{bottom:660.546667pt;}
.y14{bottom:661.188000pt;}
.y62{bottom:661.666667pt;}
.y3d{bottom:661.988000pt;}
.y87{bottom:676.866667pt;}
.ya2{bottom:678.946667pt;}
.y13{bottom:679.588000pt;}
.y61{bottom:680.066667pt;}
.yc6{bottom:680.388000pt;}
.y86{bottom:695.266667pt;}
.ya1{bottom:697.346667pt;}
.y12{bottom:697.988000pt;}
.y60{bottom:698.466667pt;}
.yc5{bottom:698.788000pt;}
.y3c{bottom:699.108000pt;}
.y85{bottom:713.666667pt;}
.ya0{bottom:715.746667pt;}
.y11{bottom:716.388000pt;}
.y5f{bottom:716.866667pt;}
.yc4{bottom:717.188000pt;}
.y3b{bottom:717.506667pt;}
.y84{bottom:732.066667pt;}
.y9f{bottom:734.146667pt;}
.y10{bottom:734.788000pt;}
.y5e{bottom:735.266667pt;}
.yc3{bottom:735.588000pt;}
.y3a{bottom:735.906667pt;}
.y9e{bottom:752.546667pt;}
.yf{bottom:753.188000pt;}
.y5d{bottom:753.666667pt;}
.yc2{bottom:753.988000pt;}
.y83{bottom:769.188000pt;}
.ye{bottom:771.588000pt;}
.y5c{bottom:772.066667pt;}
.yc1{bottom:772.388000pt;}
.y39{bottom:772.866667pt;}
.y82{bottom:787.588000pt;}
.y9d{bottom:789.506667pt;}
.y5b{bottom:790.466667pt;}
.yc0{bottom:790.788000pt;}
.y38{bottom:791.266667pt;}
.y81{bottom:807.106667pt;}
.yd{bottom:808.706667pt;}
.y5a{bottom:808.866667pt;}
.ybf{bottom:809.188000pt;}
.y37{bottom:809.666667pt;}
.y80{bottom:826.626667pt;}
.y59{bottom:827.266667pt;}
.ybe{bottom:827.588000pt;}
.y36{bottom:828.066667pt;}
.y9c{bottom:845.026667pt;}
.y7f{bottom:845.188000pt;}
.yc{bottom:845.666667pt;}
.ybd{bottom:845.988000pt;}
.y35{bottom:846.466667pt;}
.y9b{bottom:863.426667pt;}
.ybc{bottom:864.388000pt;}
.y34{bottom:864.866667pt;}
.y9a{bottom:881.826667pt;}
.yb{bottom:882.788000pt;}
.y33{bottom:883.266667pt;}
.y99{bottom:900.226667pt;}
.y32{bottom:901.666667pt;}
.y98{bottom:918.626667pt;}
.ya{bottom:919.906667pt;}
.y31{bottom:920.066667pt;}
.y97{bottom:937.026667pt;}
.y30{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h9{height:44.437500pt;}
.h6{height:53.406250pt;}
.h2{height:54.875000pt;}
.h7{height:55.828729pt;}
.ha{height:55.834062pt;}
.hb{height:56.474063pt;}
.h8{height:56.479396pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:22.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xe{left:125.440000pt;}
.xa{left:133.440000pt;}
.x4{left:134.400000pt;}
.xc{left:137.440000pt;}
.xb{left:141.440000pt;}
.xd{left:256.160000pt;}
.x5{left:384.800000pt;}
.x3{left:414.066667pt;}
.x7{left:429.600000pt;}
.x8{left:485.600000pt;}
.x6{left:497.600000pt;}
.x9{left:510.400000pt;}
.x2{left:649.920000pt;}
}




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