
    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_2c30c6189f883db751be9ec2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.908203;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_0052ffc24f06aef3895608cd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_7e8f931b6574cc37e7a83a69.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b6371004021bfffe6d95c246.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b46ba1981f03342f019910e.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af405b13ead7129eb1a79ca1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026000;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_6120473b706cd0c1dc32a7d9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.681152;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);}
.v2{vertical-align:-23.976000px;}
.v7{vertical-align:-18.053400px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.289200px;}
.v4{vertical-align:13.986000px;}
.v6{vertical-align:17.892000px;}
.v1{vertical-align:23.976000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.314400px;}
.lsc{letter-spacing:0.315000px;}
.ls8{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.472200px;}
.lse{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.537600px;}
.ls2{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.810000px;}
.ls11{letter-spacing:0.864000px;}
.lsf{letter-spacing:0.960000px;}
.ls7{letter-spacing:0.972000px;}
.ls9{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.260000px;}
.lsd{letter-spacing:1.350000px;}
.ls10{letter-spacing:1.890000px;}
.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;}
}
.ws4{word-spacing:-38.610000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.600000px;}
.wsc{word-spacing:-15.390000px;}
.wsa{word-spacing:-14.040000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-10.500000px;}
.ws0{word-spacing:-10.494000px;}
.ws9{word-spacing:-7.870500px;}
.ws2{word-spacing:-6.996000px;}
.ws5{word-spacing:-6.121500px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:61.547400px;}
._f{margin-left:-27.990768px;}
._6{margin-left:-17.642208px;}
._5{margin-left:-16.033320px;}
._4{margin-left:-14.886768px;}
._3{margin-left:-10.872000px;}
._7{margin-left:-8.073000px;}
._1{margin-left:-6.848616px;}
._8{margin-left:-5.358312px;}
._9{margin-left:-4.309992px;}
._2{margin-left:-2.609232px;}
._0{margin-left:-1.080000px;}
._a{width:1.836000px;}
._b{width:2.970000px;}
._c{width:4.482000px;}
._e{width:5.886000px;}
._14{width:7.722000px;}
._13{width:8.964000px;}
._d{width:10.962000px;}
._1b{width:12.744000px;}
._16{width:15.552000px;}
._19{width:17.226000px;}
._15{width:18.522000px;}
._1d{width:19.980000px;}
._1e{width:21.222000px;}
._1c{width:22.237992px;}
._17{width:23.922000px;}
._18{width:25.704000px;}
._1f{width:30.078000px;}
._1a{width:31.374000px;}
._22{width:36.234000px;}
._21{width:39.420000px;}
._20{width:54.000000px;}
._10{width:68.297400px;}
._11{width:275.471232px;}
._12{width:941.934000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.486000px;}
.fs3{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs2{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:42.304050px;}
.y35{bottom:42.304200px;}
.y1a0{bottom:42.304350px;}
.y12a{bottom:43.126350px;}
.y8a{bottom:43.126500px;}
.y1c2{bottom:43.126650px;}
.y129{bottom:43.366950px;}
.y1{bottom:43.367100px;}
.y89{bottom:43.367250px;}
.y1c1{bottom:43.367400px;}
.y34{bottom:46.605900px;}
.y33{bottom:59.205900px;}
.y1bc{bottom:110.551800px;}
.y66{bottom:110.564850px;}
.y13e{bottom:110.569050px;}
.y103{bottom:110.573550px;}
.y167{bottom:110.605050px;}
.ydf{bottom:110.636700px;}
.y174{bottom:110.659050px;}
.y156{bottom:110.677050px;}
.y85{bottom:110.686350px;}
.yae{bottom:110.704200px;}
.y123{bottom:110.708550px;}
.y30{bottom:110.717700px;}
.y19f{bottom:112.214100px;}
.y1bb{bottom:128.551800px;}
.y65{bottom:128.560350px;}
.y13d{bottom:128.564550px;}
.y102{bottom:128.569050px;}
.y166{bottom:128.600550px;}
.yde{bottom:128.632200px;}
.y173{bottom:128.654550px;}
.y155{bottom:128.672550px;}
.y84{bottom:128.681850px;}
.yad{bottom:128.699700px;}
.y122{bottom:128.704050px;}
.y2f{bottom:128.713200px;}
.y1ba{bottom:146.551800px;}
.y64{bottom:146.555850px;}
.y13c{bottom:146.560050px;}
.y101{bottom:146.564550px;}
.y165{bottom:146.596050px;}
.ydd{bottom:146.627700px;}
.y172{bottom:146.650050px;}
.y154{bottom:146.668050px;}
.y83{bottom:146.677350px;}
.yac{bottom:146.695200px;}
.y121{bottom:146.699550px;}
.y2e{bottom:146.708700px;}
.y1b9{bottom:164.551800px;}
.y13b{bottom:164.555550px;}
.y100{bottom:164.560050px;}
.y63{bottom:164.578350px;}
.y164{bottom:164.591550px;}
.ydc{bottom:164.623200px;}
.y171{bottom:164.645550px;}
.y153{bottom:164.663550px;}
.y82{bottom:164.672850px;}
.yab{bottom:164.690700px;}
.y120{bottom:164.695050px;}
.y2d{bottom:164.704200px;}
.y13a{bottom:182.551050px;}
.y1b8{bottom:182.551800px;}
.yff{bottom:182.555550px;}
.y62{bottom:182.573850px;}
.y163{bottom:182.587050px;}
.ydb{bottom:182.618700px;}
.y170{bottom:182.641050px;}
.y152{bottom:182.659050px;}
.y81{bottom:182.668350px;}
.yaa{bottom:182.686200px;}
.y11f{bottom:182.690550px;}
.y2c{bottom:182.699700px;}
.yfe{bottom:200.551050px;}
.y1b7{bottom:200.551800px;}
.y61{bottom:200.569350px;}
.y162{bottom:200.582550px;}
.yda{bottom:200.614200px;}
.y16f{bottom:200.636550px;}
.y151{bottom:200.654550px;}
.y80{bottom:200.663850px;}
.ya9{bottom:200.681700px;}
.y11e{bottom:200.686050px;}
.y2b{bottom:200.695200px;}
.yfd{bottom:218.551050px;}
.y1b6{bottom:218.551800px;}
.y60{bottom:218.564850px;}
.y161{bottom:218.578050px;}
.yd9{bottom:218.609700px;}
.y16e{bottom:218.632050px;}
.y150{bottom:218.650050px;}
.y7f{bottom:218.659350px;}
.ya8{bottom:218.677200px;}
.y11d{bottom:218.681550px;}
.y2a{bottom:218.690700px;}
.y1b5{bottom:236.551800px;}
.y5f{bottom:236.560350px;}
.y160{bottom:236.573550px;}
.y139{bottom:236.578050px;}
.yd8{bottom:236.605200px;}
.y16d{bottom:236.627550px;}
.y14f{bottom:236.645550px;}
.y7e{bottom:236.654850px;}
.ya7{bottom:236.672700px;}
.y11c{bottom:236.677050px;}
.y29{bottom:236.686200px;}
.y1b4{bottom:254.551800px;}
.y5e{bottom:254.555850px;}
.y15f{bottom:254.569050px;}
.y138{bottom:254.573550px;}
.yd7{bottom:254.600700px;}
.y16c{bottom:254.623050px;}
.y14e{bottom:254.641050px;}
.y7d{bottom:254.650350px;}
.yfc{bottom:254.654550px;}
.ya6{bottom:254.668200px;}
.y11b{bottom:254.672550px;}
.y28{bottom:254.681700px;}
.y5d{bottom:272.551350px;}
.y1b3{bottom:272.551800px;}
.y15e{bottom:272.564550px;}
.y137{bottom:272.569050px;}
.yd6{bottom:272.596200px;}
.y16b{bottom:272.618550px;}
.y14d{bottom:272.636550px;}
.y7c{bottom:272.645850px;}
.yfb{bottom:272.650050px;}
.ya5{bottom:272.663700px;}
.y11a{bottom:272.668050px;}
.y27{bottom:272.677200px;}
.y5c{bottom:290.551350px;}
.y1b2{bottom:290.551800px;}
.y15d{bottom:290.560050px;}
.y136{bottom:290.564550px;}
.yd5{bottom:290.591700px;}
.y16a{bottom:290.614050px;}
.y14c{bottom:290.632050px;}
.y7b{bottom:290.641350px;}
.yfa{bottom:290.645550px;}
.ya4{bottom:290.659200px;}
.y119{bottom:290.663550px;}
.y26{bottom:290.672700px;}
.y1b1{bottom:308.551800px;}
.y15c{bottom:308.555550px;}
.y135{bottom:308.560050px;}
.yd4{bottom:308.587200px;}
.y169{bottom:308.609550px;}
.y14b{bottom:308.627550px;}
.y7a{bottom:308.636850px;}
.yf9{bottom:308.641050px;}
.ya3{bottom:308.654700px;}
.y118{bottom:308.659050px;}
.y25{bottom:308.668200px;}
.y15b{bottom:326.551050px;}
.y1b0{bottom:326.551800px;}
.y134{bottom:326.555550px;}
.yd3{bottom:326.582700px;}
.y168{bottom:326.605050px;}
.y14a{bottom:326.623050px;}
.y79{bottom:326.632350px;}
.yf8{bottom:326.636550px;}
.ya2{bottom:326.650200px;}
.y117{bottom:326.654550px;}
.y24{bottom:326.663700px;}
.y5b{bottom:326.677350px;}
.y1af{bottom:344.551800px;}
.y133{bottom:344.569050px;}
.yd2{bottom:344.578200px;}
.y149{bottom:344.618550px;}
.y78{bottom:344.627850px;}
.yf7{bottom:344.632050px;}
.ya1{bottom:344.645700px;}
.y23{bottom:344.659200px;}
.y5a{bottom:344.672850px;}
.y178{bottom:362.227050px;}
.yd1{bottom:362.573700px;}
.y1ae{bottom:362.601000px;}
.y148{bottom:362.614050px;}
.y77{bottom:362.623350px;}
.yf6{bottom:362.627550px;}
.ya0{bottom:362.641200px;}
.y22{bottom:362.654700px;}
.y128{bottom:364.359000px;}
.y177{bottom:375.727050px;}
.y127{bottom:377.859000px;}
.yd0{bottom:380.569200px;}
.y132{bottom:380.573550px;}
.y147{bottom:380.609550px;}
.y76{bottom:380.618850px;}
.yf5{bottom:380.623050px;}
.y9f{bottom:380.636700px;}
.y21{bottom:380.650200px;}
.y59{bottom:380.677350px;}
.y176{bottom:389.227050px;}
.y126{bottom:391.359000px;}
.ycf{bottom:398.564700px;}
.y146{bottom:398.605050px;}
.y19a{bottom:398.614050px;}
.y75{bottom:398.614350px;}
.yf4{bottom:398.618550px;}
.y18a{bottom:398.627550px;}
.y9e{bottom:398.632200px;}
.y20{bottom:398.645700px;}
.y58{bottom:398.672850px;}
.y1c0{bottom:414.031800px;}
.yce{bottom:416.560200px;}
.y131{bottom:416.578050px;}
.y145{bottom:416.600550px;}
.y199{bottom:416.609550px;}
.y74{bottom:416.609850px;}
.yf3{bottom:416.614050px;}
.y189{bottom:416.623050px;}
.y9d{bottom:416.627700px;}
.y1f{bottom:416.641200px;}
.y57{bottom:416.668350px;}
.y1bf{bottom:427.531800px;}
.ycd{bottom:434.555700px;}
.y130{bottom:434.573550px;}
.y144{bottom:434.596050px;}
.y198{bottom:434.605050px;}
.y73{bottom:434.605350px;}
.yf2{bottom:434.609550px;}
.y188{bottom:434.618550px;}
.y9c{bottom:434.623200px;}
.y1e{bottom:434.636700px;}
.y56{bottom:434.663850px;}
.y1be{bottom:441.031800px;}
.ycc{bottom:452.551200px;}
.y12f{bottom:452.569050px;}
.y143{bottom:452.591550px;}
.y197{bottom:452.600550px;}
.y72{bottom:452.600850px;}
.yf1{bottom:452.605050px;}
.y187{bottom:452.614050px;}
.y9b{bottom:452.618700px;}
.y1d{bottom:452.632200px;}
.y55{bottom:452.659350px;}
.y1bd{bottom:454.531800px;}
.ycb{bottom:470.551200px;}
.y12e{bottom:470.564550px;}
.y142{bottom:470.587050px;}
.y196{bottom:470.596050px;}
.y71{bottom:470.596350px;}
.yf0{bottom:470.600550px;}
.y186{bottom:470.609550px;}
.y9a{bottom:470.614200px;}
.y1c{bottom:470.627700px;}
.y54{bottom:470.654850px;}
.y12d{bottom:488.560050px;}
.y141{bottom:488.582550px;}
.y195{bottom:488.591550px;}
.y70{bottom:488.591850px;}
.yef{bottom:488.596050px;}
.y185{bottom:488.605050px;}
.y99{bottom:488.609700px;}
.y1b{bottom:488.623200px;}
.y53{bottom:488.650350px;}
.y12c{bottom:506.555550px;}
.y140{bottom:506.578050px;}
.y194{bottom:506.587050px;}
.y6f{bottom:506.587350px;}
.yee{bottom:506.591550px;}
.y184{bottom:506.600550px;}
.y98{bottom:506.605200px;}
.y1a{bottom:506.618700px;}
.y52{bottom:506.645850px;}
.yca{bottom:506.654700px;}
.y12b{bottom:524.551050px;}
.y13f{bottom:524.573550px;}
.y193{bottom:524.582550px;}
.y6e{bottom:524.582850px;}
.yed{bottom:524.587050px;}
.y183{bottom:524.596050px;}
.y97{bottom:524.600700px;}
.y19{bottom:524.614200px;}
.y51{bottom:524.641350px;}
.yc9{bottom:524.650200px;}
.y192{bottom:542.578050px;}
.y6d{bottom:542.578350px;}
.yec{bottom:542.582550px;}
.y182{bottom:542.591550px;}
.y96{bottom:542.596200px;}
.y18{bottom:542.609700px;}
.y50{bottom:542.636850px;}
.yc8{bottom:542.645700px;}
.y191{bottom:560.573550px;}
.yeb{bottom:560.578050px;}
.y181{bottom:560.587050px;}
.y95{bottom:560.591700px;}
.y17{bottom:560.605200px;}
.y4f{bottom:560.632350px;}
.yc7{bottom:560.641200px;}
.y15a{bottom:561.219150px;}
.y159{bottom:574.719150px;}
.y190{bottom:578.569050px;}
.yea{bottom:578.573550px;}
.y180{bottom:578.582550px;}
.y94{bottom:578.587200px;}
.y16{bottom:578.600700px;}
.y4e{bottom:578.627850px;}
.yc6{bottom:578.636700px;}
.y88{bottom:581.416200px;}
.y158{bottom:588.219150px;}
.y87{bottom:594.916200px;}
.y18f{bottom:596.564550px;}
.ye9{bottom:596.569050px;}
.y17f{bottom:596.578050px;}
.y93{bottom:596.582700px;}
.y15{bottom:596.596200px;}
.y4d{bottom:596.623350px;}
.yc5{bottom:596.632200px;}
.y157{bottom:601.719150px;}
.y86{bottom:608.416200px;}
.y18e{bottom:614.560050px;}
.ye8{bottom:614.564550px;}
.y17e{bottom:614.573550px;}
.y92{bottom:614.578200px;}
.y14{bottom:614.591700px;}
.y4c{bottom:614.618850px;}
.yc4{bottom:614.627700px;}
.y18d{bottom:632.555550px;}
.y17d{bottom:632.569050px;}
.y91{bottom:632.573700px;}
.y13{bottom:632.587200px;}
.y4b{bottom:632.614350px;}
.yc3{bottom:632.623200px;}
.y18c{bottom:650.551050px;}
.y17c{bottom:650.564550px;}
.y90{bottom:650.569200px;}
.y12{bottom:650.582700px;}
.y4a{bottom:650.609850px;}
.yc2{bottom:650.618700px;}
.y125{bottom:653.487000px;}
.y124{bottom:666.987000px;}
.y18b{bottom:668.551050px;}
.y17b{bottom:668.560050px;}
.y8f{bottom:668.564700px;}
.y11{bottom:668.578200px;}
.y49{bottom:668.605350px;}
.yc1{bottom:668.614200px;}
.y116{bottom:668.650050px;}
.y17a{bottom:686.555550px;}
.y8e{bottom:686.560200px;}
.y10{bottom:686.573700px;}
.y48{bottom:686.600850px;}
.yc0{bottom:686.609700px;}
.y115{bottom:686.645550px;}
.y175{bottom:691.099050px;}
.y179{bottom:704.551050px;}
.y8d{bottom:704.555700px;}
.yf{bottom:704.569200px;}
.y47{bottom:704.596350px;}
.ybf{bottom:704.605200px;}
.y114{bottom:704.641050px;}
.y19e{bottom:709.718100px;}
.y8c{bottom:722.551200px;}
.ye{bottom:722.564700px;}
.y46{bottom:722.591850px;}
.ybe{bottom:722.600700px;}
.y113{bottom:722.636550px;}
.yd{bottom:740.560200px;}
.y45{bottom:740.587350px;}
.ybd{bottom:740.596200px;}
.y112{bottom:740.632050px;}
.y19d{bottom:742.778100px;}
.y19c{bottom:756.278100px;}
.yc{bottom:758.555700px;}
.y44{bottom:758.582850px;}
.ybc{bottom:758.591700px;}
.y111{bottom:758.627550px;}
.ye0{bottom:761.593350px;}
.y19b{bottom:769.778100px;}
.yb{bottom:776.551200px;}
.y43{bottom:776.578350px;}
.ybb{bottom:776.587200px;}
.y110{bottom:776.623050px;}
.y1cc{bottom:778.051500px;}
.ya{bottom:794.551200px;}
.y42{bottom:794.573850px;}
.yba{bottom:794.582700px;}
.y10f{bottom:794.618550px;}
.y41{bottom:812.569350px;}
.yb9{bottom:812.578200px;}
.y10e{bottom:812.614050px;}
.y1cb{bottom:830.551500px;}
.y40{bottom:830.564850px;}
.yb8{bottom:830.573700px;}
.y10d{bottom:830.609550px;}
.y7{bottom:843.249900px;}
.y1ca{bottom:848.551500px;}
.y3f{bottom:848.560350px;}
.yb7{bottom:848.569200px;}
.y10c{bottom:848.605050px;}
.y6{bottom:861.645900px;}
.y1c9{bottom:866.551500px;}
.y3e{bottom:866.555850px;}
.yb6{bottom:866.564700px;}
.y10b{bottom:866.600550px;}
.y5{bottom:876.045900px;}
.y1c8{bottom:884.551500px;}
.yb5{bottom:884.560200px;}
.y3d{bottom:884.573850px;}
.y10a{bottom:884.596050px;}
.y4{bottom:890.445900px;}
.y1c7{bottom:902.551500px;}
.yb4{bottom:902.555700px;}
.y3c{bottom:902.569350px;}
.y1a7{bottom:902.574000px;}
.y6c{bottom:902.582850px;}
.y109{bottom:902.591550px;}
.y1ad{bottom:902.601000px;}
.y1c6{bottom:920.551500px;}
.y3b{bottom:920.564850px;}
.ye7{bottom:920.569050px;}
.y1a6{bottom:920.569500px;}
.y6b{bottom:920.578350px;}
.y108{bottom:920.587050px;}
.y1ac{bottom:920.596500px;}
.yb3{bottom:920.717700px;}
.y3{bottom:929.649900px;}
.y1c5{bottom:938.551500px;}
.y3a{bottom:938.560350px;}
.ye6{bottom:938.564550px;}
.y1a5{bottom:938.565000px;}
.y6a{bottom:938.573850px;}
.y107{bottom:938.582550px;}
.y1ab{bottom:938.592000px;}
.yb2{bottom:938.713200px;}
.y2{bottom:951.249900px;}
.y1c4{bottom:956.551500px;}
.y39{bottom:956.555850px;}
.ye5{bottom:956.560050px;}
.y1a4{bottom:956.560500px;}
.y69{bottom:956.569350px;}
.y106{bottom:956.578050px;}
.y1aa{bottom:956.587500px;}
.yb1{bottom:956.708700px;}
.y38{bottom:974.551350px;}
.y1c3{bottom:974.551500px;}
.ye4{bottom:974.555550px;}
.y1a3{bottom:974.556000px;}
.y68{bottom:974.564850px;}
.y105{bottom:974.573550px;}
.y1a9{bottom:974.583000px;}
.yb0{bottom:974.704200px;}
.ye3{bottom:992.551050px;}
.y37{bottom:992.551350px;}
.y1a2{bottom:992.551500px;}
.y67{bottom:992.560350px;}
.y104{bottom:992.569050px;}
.y1a8{bottom:992.578500px;}
.yaf{bottom:992.699700px;}
.y9{bottom:1003.931550px;}
.y8{bottom:1025.531550px;}
.y36{bottom:1092.024000px;}
.ye2{bottom:1093.084350px;}
.y8b{bottom:1093.084500px;}
.y1a1{bottom:1094.145150px;}
.y32{bottom:1105.705200px;}
.y31{bottom:1132.705200px;}
.h4{height:19.430297px;}
.hd{height:28.464844px;}
.hb{height:29.162109px;}
.hc{height:30.987510px;}
.h5{height:33.328125px;}
.h12{height:33.351562px;}
.h11{height:36.597656px;}
.h2{height:37.494141px;}
.h8{height:37.520508px;}
.h10{height:39.175084px;}
.hf{height:39.733084px;}
.he{height:39.751084px;}
.h7{height:40.664062px;}
.ha{height:42.984000px;}
.h6{height:48.796875px;}
.h3{height:53.121445px;}
.h9{height:62.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:29.830200px;}
.x1e{left:31.517700px;}
.x10{left:63.779550px;}
.x22{left:66.142050px;}
.x1f{left:67.499850px;}
.x18{left:80.789550px;}
.x3{left:85.032300px;}
.x23{left:87.169500px;}
.x2{left:104.820900px;}
.xa{left:106.299150px;}
.x19{left:113.279550px;}
.x9{left:122.174100px;}
.x6{left:126.837000px;}
.x1d{left:134.539350px;}
.xd{left:162.000000px;}
.xf{left:176.171550px;}
.x17{left:179.080050px;}
.xb{left:199.048350px;}
.x8{left:225.296100px;}
.x5{left:270.130950px;}
.x7{left:271.302450px;}
.x4{left:303.901500px;}
.x24{left:332.013900px;}
.xc{left:385.223400px;}
.x1c{left:412.549350px;}
.x11{left:457.083000px;}
.x1a{left:459.215550px;}
.x12{left:478.345500px;}
.x21{left:484.087350px;}
.x15{left:495.354300px;}
.x14{left:499.610850px;}
.x16{left:505.344300px;}
.x13{left:506.586600px;}
.x1b{left:508.715550px;}
.x1{left:846.208050px;}
.x20{left:847.895550px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v7{vertical-align:-16.047467pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.923733pt;}
.v4{vertical-align:12.432000pt;}
.v6{vertical-align:15.904000pt;}
.v1{vertical-align:21.312000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.279467pt;}
.lsc{letter-spacing:0.280000pt;}
.ls8{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.419733pt;}
.lse{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.477867pt;}
.ls2{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.720000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsf{letter-spacing:0.853333pt;}
.ls7{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.120000pt;}
.lsd{letter-spacing:1.200000pt;}
.ls10{letter-spacing:1.680000pt;}
.ws4{word-spacing:-34.320000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.866667pt;}
.wsc{word-spacing:-13.680000pt;}
.wsa{word-spacing:-12.480000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-9.333333pt;}
.ws0{word-spacing:-9.328000pt;}
.ws9{word-spacing:-6.996000pt;}
.ws2{word-spacing:-6.218667pt;}
.ws5{word-spacing:-5.441333pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:54.708800pt;}
._f{margin-left:-24.880683pt;}
._6{margin-left:-15.681963pt;}
._5{margin-left:-14.251840pt;}
._4{margin-left:-13.232683pt;}
._3{margin-left:-9.664000pt;}
._7{margin-left:-7.176000pt;}
._1{margin-left:-6.087659pt;}
._8{margin-left:-4.762944pt;}
._9{margin-left:-3.831104pt;}
._2{margin-left:-2.319317pt;}
._0{margin-left:-0.960000pt;}
._a{width:1.632000pt;}
._b{width:2.640000pt;}
._c{width:3.984000pt;}
._e{width:5.232000pt;}
._14{width:6.864000pt;}
._13{width:7.968000pt;}
._d{width:9.744000pt;}
._1b{width:11.328000pt;}
._16{width:13.824000pt;}
._19{width:15.312000pt;}
._15{width:16.464000pt;}
._1d{width:17.760000pt;}
._1e{width:18.864000pt;}
._1c{width:19.767104pt;}
._17{width:21.264000pt;}
._18{width:22.848000pt;}
._1f{width:26.736000pt;}
._1a{width:27.888000pt;}
._22{width:32.208000pt;}
._21{width:35.040000pt;}
._20{width:48.000000pt;}
._10{width:60.708800pt;}
._11{width:244.863317pt;}
._12{width:837.274667pt;}
.fs8{font-size:21.765333pt;}
.fs3{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs2{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:37.603600pt;}
.y35{bottom:37.603733pt;}
.y1a0{bottom:37.603867pt;}
.y12a{bottom:38.334533pt;}
.y8a{bottom:38.334667pt;}
.y1c2{bottom:38.334800pt;}
.y129{bottom:38.548400pt;}
.y1{bottom:38.548533pt;}
.y89{bottom:38.548667pt;}
.y1c1{bottom:38.548800pt;}
.y34{bottom:41.427467pt;}
.y33{bottom:52.627467pt;}
.y1bc{bottom:98.268267pt;}
.y66{bottom:98.279867pt;}
.y13e{bottom:98.283600pt;}
.y103{bottom:98.287600pt;}
.y167{bottom:98.315600pt;}
.ydf{bottom:98.343733pt;}
.y174{bottom:98.363600pt;}
.y156{bottom:98.379600pt;}
.y85{bottom:98.387867pt;}
.yae{bottom:98.403733pt;}
.y123{bottom:98.407600pt;}
.y30{bottom:98.415733pt;}
.y19f{bottom:99.745867pt;}
.y1bb{bottom:114.268267pt;}
.y65{bottom:114.275867pt;}
.y13d{bottom:114.279600pt;}
.y102{bottom:114.283600pt;}
.y166{bottom:114.311600pt;}
.yde{bottom:114.339733pt;}
.y173{bottom:114.359600pt;}
.y155{bottom:114.375600pt;}
.y84{bottom:114.383867pt;}
.yad{bottom:114.399733pt;}
.y122{bottom:114.403600pt;}
.y2f{bottom:114.411733pt;}
.y1ba{bottom:130.268267pt;}
.y64{bottom:130.271867pt;}
.y13c{bottom:130.275600pt;}
.y101{bottom:130.279600pt;}
.y165{bottom:130.307600pt;}
.ydd{bottom:130.335733pt;}
.y172{bottom:130.355600pt;}
.y154{bottom:130.371600pt;}
.y83{bottom:130.379867pt;}
.yac{bottom:130.395733pt;}
.y121{bottom:130.399600pt;}
.y2e{bottom:130.407733pt;}
.y1b9{bottom:146.268267pt;}
.y13b{bottom:146.271600pt;}
.y100{bottom:146.275600pt;}
.y63{bottom:146.291867pt;}
.y164{bottom:146.303600pt;}
.ydc{bottom:146.331733pt;}
.y171{bottom:146.351600pt;}
.y153{bottom:146.367600pt;}
.y82{bottom:146.375867pt;}
.yab{bottom:146.391733pt;}
.y120{bottom:146.395600pt;}
.y2d{bottom:146.403733pt;}
.y13a{bottom:162.267600pt;}
.y1b8{bottom:162.268267pt;}
.yff{bottom:162.271600pt;}
.y62{bottom:162.287867pt;}
.y163{bottom:162.299600pt;}
.ydb{bottom:162.327733pt;}
.y170{bottom:162.347600pt;}
.y152{bottom:162.363600pt;}
.y81{bottom:162.371867pt;}
.yaa{bottom:162.387733pt;}
.y11f{bottom:162.391600pt;}
.y2c{bottom:162.399733pt;}
.yfe{bottom:178.267600pt;}
.y1b7{bottom:178.268267pt;}
.y61{bottom:178.283867pt;}
.y162{bottom:178.295600pt;}
.yda{bottom:178.323733pt;}
.y16f{bottom:178.343600pt;}
.y151{bottom:178.359600pt;}
.y80{bottom:178.367867pt;}
.ya9{bottom:178.383733pt;}
.y11e{bottom:178.387600pt;}
.y2b{bottom:178.395733pt;}
.yfd{bottom:194.267600pt;}
.y1b6{bottom:194.268267pt;}
.y60{bottom:194.279867pt;}
.y161{bottom:194.291600pt;}
.yd9{bottom:194.319733pt;}
.y16e{bottom:194.339600pt;}
.y150{bottom:194.355600pt;}
.y7f{bottom:194.363867pt;}
.ya8{bottom:194.379733pt;}
.y11d{bottom:194.383600pt;}
.y2a{bottom:194.391733pt;}
.y1b5{bottom:210.268267pt;}
.y5f{bottom:210.275867pt;}
.y160{bottom:210.287600pt;}
.y139{bottom:210.291600pt;}
.yd8{bottom:210.315733pt;}
.y16d{bottom:210.335600pt;}
.y14f{bottom:210.351600pt;}
.y7e{bottom:210.359867pt;}
.ya7{bottom:210.375733pt;}
.y11c{bottom:210.379600pt;}
.y29{bottom:210.387733pt;}
.y1b4{bottom:226.268267pt;}
.y5e{bottom:226.271867pt;}
.y15f{bottom:226.283600pt;}
.y138{bottom:226.287600pt;}
.yd7{bottom:226.311733pt;}
.y16c{bottom:226.331600pt;}
.y14e{bottom:226.347600pt;}
.y7d{bottom:226.355867pt;}
.yfc{bottom:226.359600pt;}
.ya6{bottom:226.371733pt;}
.y11b{bottom:226.375600pt;}
.y28{bottom:226.383733pt;}
.y5d{bottom:242.267867pt;}
.y1b3{bottom:242.268267pt;}
.y15e{bottom:242.279600pt;}
.y137{bottom:242.283600pt;}
.yd6{bottom:242.307733pt;}
.y16b{bottom:242.327600pt;}
.y14d{bottom:242.343600pt;}
.y7c{bottom:242.351867pt;}
.yfb{bottom:242.355600pt;}
.ya5{bottom:242.367733pt;}
.y11a{bottom:242.371600pt;}
.y27{bottom:242.379733pt;}
.y5c{bottom:258.267867pt;}
.y1b2{bottom:258.268267pt;}
.y15d{bottom:258.275600pt;}
.y136{bottom:258.279600pt;}
.yd5{bottom:258.303733pt;}
.y16a{bottom:258.323600pt;}
.y14c{bottom:258.339600pt;}
.y7b{bottom:258.347867pt;}
.yfa{bottom:258.351600pt;}
.ya4{bottom:258.363733pt;}
.y119{bottom:258.367600pt;}
.y26{bottom:258.375733pt;}
.y1b1{bottom:274.268267pt;}
.y15c{bottom:274.271600pt;}
.y135{bottom:274.275600pt;}
.yd4{bottom:274.299733pt;}
.y169{bottom:274.319600pt;}
.y14b{bottom:274.335600pt;}
.y7a{bottom:274.343867pt;}
.yf9{bottom:274.347600pt;}
.ya3{bottom:274.359733pt;}
.y118{bottom:274.363600pt;}
.y25{bottom:274.371733pt;}
.y15b{bottom:290.267600pt;}
.y1b0{bottom:290.268267pt;}
.y134{bottom:290.271600pt;}
.yd3{bottom:290.295733pt;}
.y168{bottom:290.315600pt;}
.y14a{bottom:290.331600pt;}
.y79{bottom:290.339867pt;}
.yf8{bottom:290.343600pt;}
.ya2{bottom:290.355733pt;}
.y117{bottom:290.359600pt;}
.y24{bottom:290.367733pt;}
.y5b{bottom:290.379867pt;}
.y1af{bottom:306.268267pt;}
.y133{bottom:306.283600pt;}
.yd2{bottom:306.291733pt;}
.y149{bottom:306.327600pt;}
.y78{bottom:306.335867pt;}
.yf7{bottom:306.339600pt;}
.ya1{bottom:306.351733pt;}
.y23{bottom:306.363733pt;}
.y5a{bottom:306.375867pt;}
.y178{bottom:321.979600pt;}
.yd1{bottom:322.287733pt;}
.y1ae{bottom:322.312000pt;}
.y148{bottom:322.323600pt;}
.y77{bottom:322.331867pt;}
.yf6{bottom:322.335600pt;}
.ya0{bottom:322.347733pt;}
.y22{bottom:322.359733pt;}
.y128{bottom:323.874667pt;}
.y177{bottom:333.979600pt;}
.y127{bottom:335.874667pt;}
.yd0{bottom:338.283733pt;}
.y132{bottom:338.287600pt;}
.y147{bottom:338.319600pt;}
.y76{bottom:338.327867pt;}
.yf5{bottom:338.331600pt;}
.y9f{bottom:338.343733pt;}
.y21{bottom:338.355733pt;}
.y59{bottom:338.379867pt;}
.y176{bottom:345.979600pt;}
.y126{bottom:347.874667pt;}
.ycf{bottom:354.279733pt;}
.y146{bottom:354.315600pt;}
.y19a{bottom:354.323600pt;}
.y75{bottom:354.323867pt;}
.yf4{bottom:354.327600pt;}
.y18a{bottom:354.335600pt;}
.y9e{bottom:354.339733pt;}
.y20{bottom:354.351733pt;}
.y58{bottom:354.375867pt;}
.y1c0{bottom:368.028267pt;}
.yce{bottom:370.275733pt;}
.y131{bottom:370.291600pt;}
.y145{bottom:370.311600pt;}
.y199{bottom:370.319600pt;}
.y74{bottom:370.319867pt;}
.yf3{bottom:370.323600pt;}
.y189{bottom:370.331600pt;}
.y9d{bottom:370.335733pt;}
.y1f{bottom:370.347733pt;}
.y57{bottom:370.371867pt;}
.y1bf{bottom:380.028267pt;}
.ycd{bottom:386.271733pt;}
.y130{bottom:386.287600pt;}
.y144{bottom:386.307600pt;}
.y198{bottom:386.315600pt;}
.y73{bottom:386.315867pt;}
.yf2{bottom:386.319600pt;}
.y188{bottom:386.327600pt;}
.y9c{bottom:386.331733pt;}
.y1e{bottom:386.343733pt;}
.y56{bottom:386.367867pt;}
.y1be{bottom:392.028267pt;}
.ycc{bottom:402.267733pt;}
.y12f{bottom:402.283600pt;}
.y143{bottom:402.303600pt;}
.y197{bottom:402.311600pt;}
.y72{bottom:402.311867pt;}
.yf1{bottom:402.315600pt;}
.y187{bottom:402.323600pt;}
.y9b{bottom:402.327733pt;}
.y1d{bottom:402.339733pt;}
.y55{bottom:402.363867pt;}
.y1bd{bottom:404.028267pt;}
.ycb{bottom:418.267733pt;}
.y12e{bottom:418.279600pt;}
.y142{bottom:418.299600pt;}
.y196{bottom:418.307600pt;}
.y71{bottom:418.307867pt;}
.yf0{bottom:418.311600pt;}
.y186{bottom:418.319600pt;}
.y9a{bottom:418.323733pt;}
.y1c{bottom:418.335733pt;}
.y54{bottom:418.359867pt;}
.y12d{bottom:434.275600pt;}
.y141{bottom:434.295600pt;}
.y195{bottom:434.303600pt;}
.y70{bottom:434.303867pt;}
.yef{bottom:434.307600pt;}
.y185{bottom:434.315600pt;}
.y99{bottom:434.319733pt;}
.y1b{bottom:434.331733pt;}
.y53{bottom:434.355867pt;}
.y12c{bottom:450.271600pt;}
.y140{bottom:450.291600pt;}
.y194{bottom:450.299600pt;}
.y6f{bottom:450.299867pt;}
.yee{bottom:450.303600pt;}
.y184{bottom:450.311600pt;}
.y98{bottom:450.315733pt;}
.y1a{bottom:450.327733pt;}
.y52{bottom:450.351867pt;}
.yca{bottom:450.359733pt;}
.y12b{bottom:466.267600pt;}
.y13f{bottom:466.287600pt;}
.y193{bottom:466.295600pt;}
.y6e{bottom:466.295867pt;}
.yed{bottom:466.299600pt;}
.y183{bottom:466.307600pt;}
.y97{bottom:466.311733pt;}
.y19{bottom:466.323733pt;}
.y51{bottom:466.347867pt;}
.yc9{bottom:466.355733pt;}
.y192{bottom:482.291600pt;}
.y6d{bottom:482.291867pt;}
.yec{bottom:482.295600pt;}
.y182{bottom:482.303600pt;}
.y96{bottom:482.307733pt;}
.y18{bottom:482.319733pt;}
.y50{bottom:482.343867pt;}
.yc8{bottom:482.351733pt;}
.y191{bottom:498.287600pt;}
.yeb{bottom:498.291600pt;}
.y181{bottom:498.299600pt;}
.y95{bottom:498.303733pt;}
.y17{bottom:498.315733pt;}
.y4f{bottom:498.339867pt;}
.yc7{bottom:498.347733pt;}
.y15a{bottom:498.861467pt;}
.y159{bottom:510.861467pt;}
.y190{bottom:514.283600pt;}
.yea{bottom:514.287600pt;}
.y180{bottom:514.295600pt;}
.y94{bottom:514.299733pt;}
.y16{bottom:514.311733pt;}
.y4e{bottom:514.335867pt;}
.yc6{bottom:514.343733pt;}
.y88{bottom:516.814400pt;}
.y158{bottom:522.861467pt;}
.y87{bottom:528.814400pt;}
.y18f{bottom:530.279600pt;}
.ye9{bottom:530.283600pt;}
.y17f{bottom:530.291600pt;}
.y93{bottom:530.295733pt;}
.y15{bottom:530.307733pt;}
.y4d{bottom:530.331867pt;}
.yc5{bottom:530.339733pt;}
.y157{bottom:534.861467pt;}
.y86{bottom:540.814400pt;}
.y18e{bottom:546.275600pt;}
.ye8{bottom:546.279600pt;}
.y17e{bottom:546.287600pt;}
.y92{bottom:546.291733pt;}
.y14{bottom:546.303733pt;}
.y4c{bottom:546.327867pt;}
.yc4{bottom:546.335733pt;}
.y18d{bottom:562.271600pt;}
.y17d{bottom:562.283600pt;}
.y91{bottom:562.287733pt;}
.y13{bottom:562.299733pt;}
.y4b{bottom:562.323867pt;}
.yc3{bottom:562.331733pt;}
.y18c{bottom:578.267600pt;}
.y17c{bottom:578.279600pt;}
.y90{bottom:578.283733pt;}
.y12{bottom:578.295733pt;}
.y4a{bottom:578.319867pt;}
.yc2{bottom:578.327733pt;}
.y125{bottom:580.877333pt;}
.y124{bottom:592.877333pt;}
.y18b{bottom:594.267600pt;}
.y17b{bottom:594.275600pt;}
.y8f{bottom:594.279733pt;}
.y11{bottom:594.291733pt;}
.y49{bottom:594.315867pt;}
.yc1{bottom:594.323733pt;}
.y116{bottom:594.355600pt;}
.y17a{bottom:610.271600pt;}
.y8e{bottom:610.275733pt;}
.y10{bottom:610.287733pt;}
.y48{bottom:610.311867pt;}
.yc0{bottom:610.319733pt;}
.y115{bottom:610.351600pt;}
.y175{bottom:614.310267pt;}
.y179{bottom:626.267600pt;}
.y8d{bottom:626.271733pt;}
.yf{bottom:626.283733pt;}
.y47{bottom:626.307867pt;}
.ybf{bottom:626.315733pt;}
.y114{bottom:626.347600pt;}
.y19e{bottom:630.860533pt;}
.y8c{bottom:642.267733pt;}
.ye{bottom:642.279733pt;}
.y46{bottom:642.303867pt;}
.ybe{bottom:642.311733pt;}
.y113{bottom:642.343600pt;}
.yd{bottom:658.275733pt;}
.y45{bottom:658.299867pt;}
.ybd{bottom:658.307733pt;}
.y112{bottom:658.339600pt;}
.y19d{bottom:660.247200pt;}
.y19c{bottom:672.247200pt;}
.yc{bottom:674.271733pt;}
.y44{bottom:674.295867pt;}
.ybc{bottom:674.303733pt;}
.y111{bottom:674.335600pt;}
.ye0{bottom:676.971867pt;}
.y19b{bottom:684.247200pt;}
.yb{bottom:690.267733pt;}
.y43{bottom:690.291867pt;}
.ybb{bottom:690.299733pt;}
.y110{bottom:690.331600pt;}
.y1cc{bottom:691.601333pt;}
.ya{bottom:706.267733pt;}
.y42{bottom:706.287867pt;}
.yba{bottom:706.295733pt;}
.y10f{bottom:706.327600pt;}
.y41{bottom:722.283867pt;}
.yb9{bottom:722.291733pt;}
.y10e{bottom:722.323600pt;}
.y1cb{bottom:738.268000pt;}
.y40{bottom:738.279867pt;}
.yb8{bottom:738.287733pt;}
.y10d{bottom:738.319600pt;}
.y7{bottom:749.555467pt;}
.y1ca{bottom:754.268000pt;}
.y3f{bottom:754.275867pt;}
.yb7{bottom:754.283733pt;}
.y10c{bottom:754.315600pt;}
.y6{bottom:765.907467pt;}
.y1c9{bottom:770.268000pt;}
.y3e{bottom:770.271867pt;}
.yb6{bottom:770.279733pt;}
.y10b{bottom:770.311600pt;}
.y5{bottom:778.707467pt;}
.y1c8{bottom:786.268000pt;}
.yb5{bottom:786.275733pt;}
.y3d{bottom:786.287867pt;}
.y10a{bottom:786.307600pt;}
.y4{bottom:791.507467pt;}
.y1c7{bottom:802.268000pt;}
.yb4{bottom:802.271733pt;}
.y3c{bottom:802.283867pt;}
.y1a7{bottom:802.288000pt;}
.y6c{bottom:802.295867pt;}
.y109{bottom:802.303600pt;}
.y1ad{bottom:802.312000pt;}
.y1c6{bottom:818.268000pt;}
.y3b{bottom:818.279867pt;}
.ye7{bottom:818.283600pt;}
.y1a6{bottom:818.284000pt;}
.y6b{bottom:818.291867pt;}
.y108{bottom:818.299600pt;}
.y1ac{bottom:818.308000pt;}
.yb3{bottom:818.415733pt;}
.y3{bottom:826.355467pt;}
.y1c5{bottom:834.268000pt;}
.y3a{bottom:834.275867pt;}
.ye6{bottom:834.279600pt;}
.y1a5{bottom:834.280000pt;}
.y6a{bottom:834.287867pt;}
.y107{bottom:834.295600pt;}
.y1ab{bottom:834.304000pt;}
.yb2{bottom:834.411733pt;}
.y2{bottom:845.555467pt;}
.y1c4{bottom:850.268000pt;}
.y39{bottom:850.271867pt;}
.ye5{bottom:850.275600pt;}
.y1a4{bottom:850.276000pt;}
.y69{bottom:850.283867pt;}
.y106{bottom:850.291600pt;}
.y1aa{bottom:850.300000pt;}
.yb1{bottom:850.407733pt;}
.y38{bottom:866.267867pt;}
.y1c3{bottom:866.268000pt;}
.ye4{bottom:866.271600pt;}
.y1a3{bottom:866.272000pt;}
.y68{bottom:866.279867pt;}
.y105{bottom:866.287600pt;}
.y1a9{bottom:866.296000pt;}
.yb0{bottom:866.403733pt;}
.ye3{bottom:882.267600pt;}
.y37{bottom:882.267867pt;}
.y1a2{bottom:882.268000pt;}
.y67{bottom:882.275867pt;}
.y104{bottom:882.283600pt;}
.y1a8{bottom:882.292000pt;}
.yaf{bottom:882.399733pt;}
.y9{bottom:892.383600pt;}
.y8{bottom:911.583600pt;}
.y36{bottom:970.688000pt;}
.ye2{bottom:971.630533pt;}
.y8b{bottom:971.630667pt;}
.y1a1{bottom:972.573467pt;}
.y32{bottom:982.849067pt;}
.y31{bottom:1006.849067pt;}
.h4{height:17.271375pt;}
.hd{height:25.302083pt;}
.hb{height:25.921875pt;}
.hc{height:27.544453pt;}
.h5{height:29.625000pt;}
.h12{height:29.645833pt;}
.h11{height:32.531250pt;}
.h2{height:33.328125pt;}
.h8{height:33.351562pt;}
.h10{height:34.822297pt;}
.hf{height:35.318297pt;}
.he{height:35.334297pt;}
.h7{height:36.145833pt;}
.ha{height:38.208000pt;}
.h6{height:43.375000pt;}
.h3{height:47.219063pt;}
.h9{height:55.189333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:26.515733pt;}
.x1e{left:28.015733pt;}
.x10{left:56.692933pt;}
.x22{left:58.792933pt;}
.x1f{left:59.999867pt;}
.x18{left:71.812933pt;}
.x3{left:75.584267pt;}
.x23{left:77.484000pt;}
.x2{left:93.174133pt;}
.xa{left:94.488133pt;}
.x19{left:100.692933pt;}
.x9{left:108.599200pt;}
.x6{left:112.744000pt;}
.x1d{left:119.590533pt;}
.xd{left:144.000000pt;}
.xf{left:156.596933pt;}
.x17{left:159.182267pt;}
.xb{left:176.931867pt;}
.x8{left:200.263200pt;}
.x5{left:240.116400pt;}
.x7{left:241.157733pt;}
.x4{left:270.134667pt;}
.x24{left:295.123467pt;}
.xc{left:342.420800pt;}
.x1c{left:366.710533pt;}
.x11{left:406.296000pt;}
.x1a{left:408.191600pt;}
.x12{left:425.196000pt;}
.x21{left:430.299867pt;}
.x15{left:440.314933pt;}
.x14{left:444.098533pt;}
.x16{left:449.194933pt;}
.x13{left:450.299200pt;}
.x1b{left:452.191600pt;}
.x1{left:752.184933pt;}
.x20{left:753.684933pt;}
}




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