
    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_3f514f4f6ee4eb9d96dad983.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_f42c8f5376342230f2986424.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a346b47e40a91d9aa77e1b4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_0e7ceca1a5afb91417597dcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_3c60665957827b58e2b5c72a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_1baafc4f9643b60d393a3466.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_bfbe5566ae3e692e106e3427.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f2ab434d94d91b363f01f7f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_75bbcbf4a6d535021926eb71.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.050400px;}
.v2{vertical-align:36.000000px;}
.ls6{letter-spacing:-0.897000px;}
.ls4{letter-spacing:-0.780000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.061200px;}
.ls7{letter-spacing:2.946600px;}
.ls2{letter-spacing:9.108000px;}
.ls8{letter-spacing:10.835400px;}
.ls9{letter-spacing:13.285200px;}
.ls0{letter-spacing:17.437500px;}
.ls3{letter-spacing:19.343333px;}
.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:-17.250000px;}
.ws1d{word-spacing:-16.500000px;}
.ws1c{word-spacing:-16.353000px;}
.ws3{word-spacing:-15.000000px;}
.ws7{word-spacing:-9.108000px;}
.ws1{word-spacing:-0.084000px;}
.ws5{word-spacing:-0.069000px;}
.ws8{word-spacing:-0.066000px;}
.ws2{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws10{word-spacing:0.960000px;}
.ws13{word-spacing:1.995600px;}
.wsa{word-spacing:11.091600px;}
.ws1b{word-spacing:16.194000px;}
.ws19{word-spacing:16.500600px;}
.ws15{word-spacing:31.194000px;}
.ws16{word-spacing:32.306400px;}
.ws12{word-spacing:35.945400px;}
.ws18{word-spacing:39.697800px;}
.wse{word-spacing:45.882000px;}
.ws11{word-spacing:45.960000px;}
.wsf{word-spacing:60.960000px;}
.ws9{word-spacing:111.394200px;}
.ws14{word-spacing:119.867400px;}
.wsb{word-spacing:126.652800px;}
.wsc{word-spacing:134.555400px;}
.ws1a{word-spacing:146.086200px;}
.wsd{word-spacing:186.744000px;}
.ws17{word-spacing:249.379800px;}
.ws0{word-spacing:1508.274600px;}
._15{margin-left:-17.733600px;}
._16{margin-left:-16.701000px;}
._4{margin-left:-11.714400px;}
._22{margin-left:-9.559200px;}
._12{margin-left:-8.525250px;}
._9{margin-left:-7.351200px;}
._5{margin-left:-6.230400px;}
._3{margin-left:-4.873800px;}
._18{margin-left:-3.759600px;}
._0{margin-left:-2.501400px;}
._2{margin-left:-1.422000px;}
._1{width:1.663200px;}
._8{width:3.460800px;}
._e{width:4.690200px;}
._f{width:5.773800px;}
._13{width:6.831000px;}
._c{width:8.460000px;}
._d{width:9.736800px;}
._b{width:11.220000px;}
._1d{width:12.249000px;}
._17{width:13.344300px;}
._11{width:15.290400px;}
._a{width:16.924800px;}
._14{width:18.415500px;}
._10{width:19.755600px;}
._7{width:20.962800px;}
._6{width:22.049400px;}
._56{width:23.306400px;}
._1e{width:24.401400px;}
._1b{width:25.446000px;}
._1c{width:27.011400px;}
._6b{width:28.312800px;}
._1f{width:30.018300px;}
._20{width:31.088100px;}
._24{width:32.229900px;}
._25{width:33.258600px;}
._46{width:34.311000px;}
._1a{width:35.767200px;}
._19{width:36.860400px;}
._42{width:38.803200px;}
._3d{width:40.504500px;}
._37{width:41.920800px;}
._36{width:43.641600px;}
._7e{width:44.910600px;}
._66{width:46.044000px;}
._38{width:47.895000px;}
._21{width:49.134900px;}
._3b{width:50.233800px;}
._64{width:51.619200px;}
._52{width:52.840800px;}
._3e{width:54.155400px;}
._3c{width:56.107800px;}
._73{width:57.779400px;}
._67{width:59.101800px;}
._6a{width:60.198000px;}
._68{width:61.414200px;}
._55{width:62.426400px;}
._77{width:63.548400px;}
._5d{width:65.298000px;}
._62{width:66.579900px;}
._39{width:69.155400px;}
._40{width:70.856400px;}
._3a{width:71.969400px;}
._23{width:73.230300px;}
._80{width:74.475000px;}
._51{width:76.234200px;}
._4f{width:77.347800px;}
._5e{width:80.945400px;}
._54{width:82.258200px;}
._60{width:83.592000px;}
._63{width:84.705600px;}
._71{width:88.713600px;}
._7d{width:95.953800px;}
._4d{width:97.260000px;}
._4e{width:98.373600px;}
._5f{width:99.768600px;}
._50{width:112.653600px;}
._65{width:114.256200px;}
._79{width:117.313800px;}
._2a{width:128.967000px;}
._29{width:132.315000px;}
._2b{width:135.801600px;}
._2d{width:138.453000px;}
._34{width:140.310000px;}
._2f{width:143.469600px;}
._6f{width:146.279400px;}
._30{width:147.556800px;}
._6e{width:150.336600px;}
._3f{width:153.183600px;}
._31{width:154.369800px;}
._2e{width:155.665200px;}
._2c{width:157.828800px;}
._33{width:162.331800px;}
._4b{width:163.866000px;}
._5a{width:168.693000px;}
._76{width:170.413800px;}
._5c{width:171.498600px;}
._7f{width:174.553800px;}
._32{width:175.620000px;}
._43{width:177.879600px;}
._53{width:181.539600px;}
._74{width:184.435800px;}
._4a{width:185.933400px;}
._5b{width:188.442000px;}
._35{width:193.028400px;}
._61{width:198.698400px;}
._4c{width:221.619600px;}
._70{width:238.693800px;}
._69{width:240.938400px;}
._78{width:247.915200px;}
._7c{width:250.855200px;}
._45{width:254.468400px;}
._44{width:261.785400px;}
._7b{width:267.553800px;}
._75{width:269.293800px;}
._7a{width:276.867600px;}
._26{width:287.817600px;}
._41{width:296.527800px;}
._72{width:304.213800px;}
._6d{width:306.940800px;}
._49{width:310.873800px;}
._27{width:312.522600px;}
._28{width:321.085200px;}
._48{width:333.045600px;}
._6c{width:337.991400px;}
._57{width:343.813800px;}
._59{width:363.735000px;}
._58{width:366.813000px;}
._47{width:376.304400px;}
.fc1{color:rgb(238,35,43);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.975700px;}
.y3a{bottom:111.082050px;}
.y146{bottom:112.785150px;}
.y3b{bottom:113.232450px;}
.ycb{bottom:113.338800px;}
.y99{bottom:114.189300px;}
.y38{bottom:140.154900px;}
.y28{bottom:140.567400px;}
.yc9{bottom:142.910100px;}
.y145{bottom:143.463450px;}
.y116{bottom:143.480250px;}
.y69{bottom:145.586550px;}
.y97{bottom:145.603200px;}
.y37{bottom:160.854900px;}
.y27{bottom:161.267400px;}
.yc8{bottom:162.043950px;}
.y144{bottom:164.163450px;}
.y115{bottom:164.180250px;}
.y68{bottom:166.286550px;}
.y96{bottom:166.303200px;}
.yc7{bottom:181.177800px;}
.y36{bottom:181.554900px;}
.y26{bottom:181.967400px;}
.y143{bottom:184.863300px;}
.y114{bottom:184.880250px;}
.y67{bottom:186.986550px;}
.y95{bottom:187.003200px;}
.yc6{bottom:200.311650px;}
.y35{bottom:202.254900px;}
.y25{bottom:202.667400px;}
.yf8{bottom:203.076450px;}
.y142{bottom:205.563300px;}
.y113{bottom:205.580250px;}
.y66{bottom:207.686400px;}
.y94{bottom:207.703050px;}
.yc5{bottom:219.445500px;}
.yf7{bottom:221.076450px;}
.y34{bottom:222.954900px;}
.y24{bottom:223.367400px;}
.y141{bottom:226.263450px;}
.y112{bottom:226.280250px;}
.y65{bottom:228.386550px;}
.y93{bottom:228.403200px;}
.yc4{bottom:238.579350px;}
.yf6{bottom:239.714250px;}
.y33{bottom:243.654900px;}
.y23{bottom:244.067400px;}
.y140{bottom:246.963450px;}
.y111{bottom:246.980250px;}
.y64{bottom:249.086550px;}
.y92{bottom:249.103200px;}
.yc3{bottom:257.713200px;}
.yf5{bottom:259.273350px;}
.y176{bottom:262.520100px;}
.y32{bottom:264.354900px;}
.y22{bottom:264.767400px;}
.y13f{bottom:267.663450px;}
.y110{bottom:267.680250px;}
.y63{bottom:269.786550px;}
.y91{bottom:269.803200px;}
.yc2{bottom:276.634500px;}
.yf4{bottom:278.832450px;}
.y175{bottom:282.320100px;}
.y31{bottom:285.054900px;}
.y21{bottom:285.467400px;}
.y13e{bottom:288.363300px;}
.y10f{bottom:288.380250px;}
.y62{bottom:290.486550px;}
.y90{bottom:290.503200px;}
.yc1{bottom:293.643450px;}
.yf3{bottom:298.391400px;}
.y174{bottom:303.020100px;}
.y30{bottom:305.754900px;}
.y20{bottom:306.167400px;}
.y13d{bottom:309.063300px;}
.y10e{bottom:309.080250px;}
.yc0{bottom:310.581000px;}
.y61{bottom:311.186400px;}
.y8f{bottom:311.203050px;}
.ybd{bottom:312.837300px;}
.yf2{bottom:317.950500px;}
.y2f{bottom:326.454900px;}
.y1f{bottom:326.867400px;}
.ybf{bottom:328.581000px;}
.y13c{bottom:329.763450px;}
.y10d{bottom:329.780250px;}
.y60{bottom:331.886550px;}
.y8e{bottom:331.903200px;}
.yf1{bottom:336.588300px;}
.y173{bottom:342.620250px;}
.y2e{bottom:347.154900px;}
.y1e{bottom:347.567400px;}
.ybe{bottom:348.129150px;}
.y13b{bottom:350.463450px;}
.y10c{bottom:350.480250px;}
.y5f{bottom:352.586550px;}
.y8d{bottom:352.603200px;}
.yf0{bottom:354.588300px;}
.y172{bottom:362.420100px;}
.y2d{bottom:367.854900px;}
.y1d{bottom:368.267400px;}
.y13a{bottom:371.163450px;}
.y10b{bottom:371.180250px;}
.yef{bottom:373.226100px;}
.y5e{bottom:373.286550px;}
.y8c{bottom:373.303200px;}
.yb0{bottom:377.857950px;}
.y2c{bottom:388.554900px;}
.y1c{bottom:388.967400px;}
.yee{bottom:391.438650px;}
.y139{bottom:391.863300px;}
.y10a{bottom:391.880250px;}
.y5d{bottom:393.986550px;}
.y8b{bottom:394.003200px;}
.y171{bottom:402.020100px;}
.y2b{bottom:409.254900px;}
.yed{bottom:409.438650px;}
.y1b{bottom:409.667400px;}
.y138{bottom:412.563450px;}
.y109{bottom:412.580250px;}
.ybc{bottom:412.604100px;}
.y5c{bottom:414.686550px;}
.y8a{bottom:414.703200px;}
.y170{bottom:421.820100px;}
.yec{bottom:427.651350px;}
.y2a{bottom:429.954900px;}
.y1a{bottom:430.367400px;}
.ybb{bottom:431.737950px;}
.y137{bottom:433.263450px;}
.y108{bottom:433.280250px;}
.y5b{bottom:435.386550px;}
.y89{bottom:435.403200px;}
.y16f{bottom:441.620250px;}
.yeb{bottom:447.210300px;}
.y29{bottom:450.654900px;}
.yba{bottom:450.871800px;}
.y19{bottom:451.067400px;}
.y136{bottom:453.963450px;}
.y107{bottom:453.980250px;}
.y5a{bottom:456.086550px;}
.y88{bottom:456.103200px;}
.y16e{bottom:461.420100px;}
.yea{bottom:466.769400px;}
.yb9{bottom:470.005800px;}
.y18{bottom:471.767400px;}
.y135{bottom:474.663450px;}
.y106{bottom:474.680250px;}
.y59{bottom:476.786550px;}
.y87{bottom:476.803200px;}
.y16d{bottom:481.220100px;}
.ye9{bottom:486.328500px;}
.yb8{bottom:489.139500px;}
.y134{bottom:495.363300px;}
.y105{bottom:495.380250px;}
.y86{bottom:497.503200px;}
.y16c{bottom:501.020100px;}
.ye8{bottom:505.887450px;}
.yb7{bottom:508.911150px;}
.y133{bottom:516.063450px;}
.y104{bottom:516.080250px;}
.y58{bottom:518.186550px;}
.y85{bottom:518.203200px;}
.y16b{bottom:520.820100px;}
.ye7{bottom:525.446550px;}
.yb6{bottom:530.171100px;}
.y17{bottom:531.832350px;}
.y132{bottom:536.763450px;}
.y57{bottom:538.886550px;}
.y84{bottom:538.903200px;}
.ye6{bottom:545.005650px;}
.yb2{bottom:548.881200px;}
.y16{bottom:549.832350px;}
.yb5{bottom:551.974800px;}
.y131{bottom:557.463450px;}
.y103{bottom:557.480250px;}
.y56{bottom:559.586550px;}
.y83{bottom:559.603200px;}
.y16a{bottom:560.420100px;}
.ye5{bottom:564.564750px;}
.y15{bottom:567.832350px;}
.yb4{bottom:569.974800px;}
.y130{bottom:578.163450px;}
.y102{bottom:578.180250px;}
.y55{bottom:580.286550px;}
.y82{bottom:580.303200px;}
.ye4{bottom:584.123700px;}
.y14{bottom:585.832350px;}
.yb3{bottom:589.889700px;}
.y12f{bottom:598.863300px;}
.y101{bottom:598.880250px;}
.y169{bottom:600.020100px;}
.y54{bottom:600.986550px;}
.y81{bottom:601.003200px;}
.ye3{bottom:603.682800px;}
.yaf{bottom:614.764050px;}
.y12e{bottom:619.563450px;}
.y100{bottom:619.580250px;}
.y53{bottom:621.686550px;}
.y80{bottom:621.703200px;}
.y13{bottom:621.832350px;}
.ye2{bottom:624.942600px;}
.y168{bottom:639.620250px;}
.y12{bottom:639.832350px;}
.y12d{bottom:640.263450px;}
.yff{bottom:640.280250px;}
.y52{bottom:642.386550px;}
.yb1{bottom:646.951650px;}
.ye1{bottom:647.903250px;}
.y167{bottom:659.420100px;}
.y12c{bottom:660.963450px;}
.yfe{bottom:660.980250px;}
.y51{bottom:663.086550px;}
.y7f{bottom:663.103200px;}
.ydd{bottom:667.699500px;}
.ye0{bottom:669.942150px;}
.yad{bottom:671.566650px;}
.y11{bottom:675.832350px;}
.y166{bottom:679.220100px;}
.y12b{bottom:681.663450px;}
.yfd{bottom:681.680250px;}
.y50{bottom:683.786550px;}
.y7e{bottom:683.803200px;}
.ydf{bottom:687.942150px;}
.yac{bottom:689.566650px;}
.y10{bottom:693.832350px;}
.y12a{bottom:702.363300px;}
.yfc{bottom:702.380250px;}
.y7d{bottom:704.503200px;}
.yab{bottom:709.669350px;}
.yde{bottom:710.218650px;}
.yf{bottom:711.832350px;}
.y165{bottom:718.820100px;}
.y129{bottom:723.063450px;}
.yfb{bottom:723.080250px;}
.y4f{bottom:725.186550px;}
.y7c{bottom:725.203200px;}
.yaa{bottom:728.803350px;}
.ye{bottom:729.832350px;}
.ycc{bottom:740.621100px;}
.y128{bottom:743.763450px;}
.yfa{bottom:743.780250px;}
.y4e{bottom:745.886550px;}
.y7b{bottom:745.903200px;}
.yd{bottom:747.832350px;}
.ya9{bottom:747.937200px;}
.y127{bottom:764.463450px;}
.yf9{bottom:764.480250px;}
.yc{bottom:765.832350px;}
.y4d{bottom:766.586550px;}
.y7a{bottom:766.603200px;}
.ya8{bottom:767.071050px;}
.yb{bottom:783.832350px;}
.y126{bottom:785.163450px;}
.ydc{bottom:785.180250px;}
.ya7{bottom:786.204900px;}
.y4c{bottom:787.286550px;}
.y79{bottom:787.303200px;}
.ya{bottom:801.832350px;}
.ya6{bottom:805.338750px;}
.y125{bottom:805.863300px;}
.ydb{bottom:805.880250px;}
.y4b{bottom:807.986550px;}
.y78{bottom:808.003200px;}
.y156{bottom:812.238300px;}
.y164{bottom:812.255250px;}
.ya5{bottom:825.535650px;}
.y124{bottom:826.563300px;}
.yda{bottom:826.580250px;}
.y4a{bottom:828.686400px;}
.y77{bottom:828.703050px;}
.y155{bottom:832.938300px;}
.ya4{bottom:844.436850px;}
.y123{bottom:847.263450px;}
.yd9{bottom:847.280250px;}
.y49{bottom:849.386550px;}
.y76{bottom:849.403200px;}
.y154{bottom:853.638450px;}
.y163{bottom:853.655250px;}
.y9{bottom:865.039050px;}
.ya0{bottom:865.152900px;}
.ya3{bottom:866.170950px;}
.y122{bottom:867.963450px;}
.yd8{bottom:867.980250px;}
.y48{bottom:870.086550px;}
.y75{bottom:870.103200px;}
.y153{bottom:874.338450px;}
.y162{bottom:874.355250px;}
.ya2{bottom:884.170950px;}
.y8{bottom:885.739050px;}
.y121{bottom:888.663450px;}
.yd7{bottom:888.680250px;}
.y47{bottom:890.786550px;}
.y74{bottom:890.803200px;}
.y152{bottom:895.038450px;}
.y161{bottom:895.055250px;}
.ya1{bottom:906.516750px;}
.y120{bottom:909.363300px;}
.yd6{bottom:909.380250px;}
.y46{bottom:911.486550px;}
.y73{bottom:911.503200px;}
.y151{bottom:915.738300px;}
.y160{bottom:915.755250px;}
.y7{bottom:928.039050px;}
.y11f{bottom:930.063300px;}
.yd5{bottom:930.080250px;}
.y45{bottom:932.186550px;}
.y72{bottom:932.203200px;}
.yae{bottom:934.512000px;}
.y150{bottom:936.438300px;}
.y15f{bottom:936.455250px;}
.y11e{bottom:950.763450px;}
.yd4{bottom:950.780250px;}
.y44{bottom:952.886700px;}
.y71{bottom:952.903350px;}
.y6{bottom:953.239050px;}
.y14f{bottom:957.138450px;}
.y15e{bottom:957.155250px;}
.y11d{bottom:971.463450px;}
.yd3{bottom:971.480250px;}
.y43{bottom:973.586550px;}
.y70{bottom:973.603200px;}
.y9f{bottom:973.603350px;}
.y14e{bottom:977.838450px;}
.y15d{bottom:977.855250px;}
.y5{bottom:978.439050px;}
.y11c{bottom:992.163450px;}
.yd2{bottom:992.180250px;}
.y42{bottom:994.286550px;}
.y6f{bottom:994.303200px;}
.y9e{bottom:994.303350px;}
.y14d{bottom:998.538450px;}
.y15c{bottom:998.555250px;}
.y4{bottom:1003.639050px;}
.y11b{bottom:1012.863300px;}
.yd1{bottom:1012.880250px;}
.y41{bottom:1014.986550px;}
.y6e{bottom:1015.003200px;}
.y9d{bottom:1015.003350px;}
.y14c{bottom:1019.238300px;}
.y15b{bottom:1019.255250px;}
.y11a{bottom:1033.563300px;}
.yd0{bottom:1033.580250px;}
.y40{bottom:1035.686550px;}
.y6d{bottom:1035.703200px;}
.y9c{bottom:1035.703350px;}
.y14b{bottom:1039.938300px;}
.y15a{bottom:1039.955250px;}
.y3{bottom:1054.039050px;}
.y119{bottom:1054.263450px;}
.ycf{bottom:1054.280250px;}
.y3f{bottom:1056.386700px;}
.y6c{bottom:1056.403350px;}
.y14a{bottom:1060.638450px;}
.y159{bottom:1060.655250px;}
.y118{bottom:1074.963450px;}
.yce{bottom:1074.980250px;}
.y3e{bottom:1077.086550px;}
.y6b{bottom:1077.103200px;}
.y9b{bottom:1077.103350px;}
.y149{bottom:1081.338450px;}
.y158{bottom:1081.355250px;}
.y117{bottom:1095.663450px;}
.ycd{bottom:1095.680250px;}
.y3d{bottom:1097.786550px;}
.y6a{bottom:1097.803200px;}
.y9a{bottom:1097.803350px;}
.y148{bottom:1102.038450px;}
.y157{bottom:1102.055250px;}
.y39{bottom:1106.290350px;}
.y3c{bottom:1132.748100px;}
.yca{bottom:1133.598600px;}
.y147{bottom:1135.174050px;}
.y98{bottom:1135.302600px;}
.y2{bottom:1140.826950px;}
.h3{height:45.826172px;}
.hb{height:47.437500px;}
.h7{height:47.909180px;}
.h2{height:51.876572px;}
.h8{height:52.880859px;}
.hd{height:57.073242px;}
.h4{height:58.168945px;}
.h9{height:59.667480px;}
.ha{height:60.812988px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.hc{height:88.880859px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:63.779550px;}
.x31{left:67.924800px;}
.x13{left:69.625650px;}
.x3b{left:80.997150px;}
.x16{left:89.291400px;}
.x3a{left:95.680350px;}
.x3d{left:101.666400px;}
.x1{left:106.299150px;}
.x2{left:111.188850px;}
.x29{left:112.945950px;}
.x21{left:115.177950px;}
.x22{left:118.038600px;}
.xc{left:131.811000px;}
.x1b{left:138.032550px;}
.xb{left:148.181100px;}
.x9{left:163.032450px;}
.x7{left:178.571700px;}
.x38{left:193.813350px;}
.x34{left:200.575800px;}
.x30{left:208.903200px;}
.x2b{left:221.590350px;}
.x28{left:224.413350px;}
.x2f{left:238.815900px;}
.x24{left:239.898150px;}
.x6{left:242.156100px;}
.xd{left:245.306400px;}
.xa{left:247.113600px;}
.x27{left:254.326050px;}
.x1c{left:257.764500px;}
.x8{left:266.017050px;}
.x3c{left:268.338150px;}
.x5{left:271.859550px;}
.x20{left:280.909500px;}
.x35{left:291.081150px;}
.xe{left:304.704300px;}
.x2c{left:312.095700px;}
.x25{left:330.403500px;}
.x19{left:334.150500px;}
.x1d{left:348.269850px;}
.x33{left:427.180500px;}
.x17{left:435.826800px;}
.x2a{left:458.977350px;}
.x18{left:461.338650px;}
.x23{left:464.069850px;}
.x3{left:477.113400px;}
.xf{left:478.346400px;}
.x4{left:485.033400px;}
.x36{left:491.377650px;}
.x1a{left:501.732300px;}
.x10{left:503.858250px;}
.x2d{left:524.629950px;}
.x39{left:531.064950px;}
.x1e{left:536.142750px;}
.x26{left:537.845100px;}
.x37{left:590.657400px;}
.x2e{left:623.909700px;}
.x1f{left:635.422500px;}
.x14{left:636.748650px;}
.x32{left:689.260050px;}
.x15{left:690.960750px;}
.x11{left:766.985550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.378133pt;}
.v2{vertical-align:32.000000pt;}
.ls6{letter-spacing:-0.797333pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.054400pt;}
.ls7{letter-spacing:2.619200pt;}
.ls2{letter-spacing:8.096000pt;}
.ls8{letter-spacing:9.631467pt;}
.ls9{letter-spacing:11.809067pt;}
.ls0{letter-spacing:15.500000pt;}
.ls3{letter-spacing:17.194074pt;}
.ws4{word-spacing:-15.333333pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-14.536000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws7{word-spacing:-8.096000pt;}
.ws1{word-spacing:-0.074667pt;}
.ws5{word-spacing:-0.061333pt;}
.ws8{word-spacing:-0.058667pt;}
.ws2{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws10{word-spacing:0.853333pt;}
.ws13{word-spacing:1.773867pt;}
.wsa{word-spacing:9.859200pt;}
.ws1b{word-spacing:14.394667pt;}
.ws19{word-spacing:14.667200pt;}
.ws15{word-spacing:27.728000pt;}
.ws16{word-spacing:28.716800pt;}
.ws12{word-spacing:31.951467pt;}
.ws18{word-spacing:35.286933pt;}
.wse{word-spacing:40.784000pt;}
.ws11{word-spacing:40.853333pt;}
.wsf{word-spacing:54.186667pt;}
.ws9{word-spacing:99.017067pt;}
.ws14{word-spacing:106.548800pt;}
.wsb{word-spacing:112.580267pt;}
.wsc{word-spacing:119.604800pt;}
.ws1a{word-spacing:129.854400pt;}
.wsd{word-spacing:165.994667pt;}
.ws17{word-spacing:221.670933pt;}
.ws0{word-spacing:1340.688533pt;}
._15{margin-left:-15.763200pt;}
._16{margin-left:-14.845333pt;}
._4{margin-left:-10.412800pt;}
._22{margin-left:-8.497067pt;}
._12{margin-left:-7.578000pt;}
._9{margin-left:-6.534400pt;}
._5{margin-left:-5.538133pt;}
._3{margin-left:-4.332267pt;}
._18{margin-left:-3.341867pt;}
._0{margin-left:-2.223467pt;}
._2{margin-left:-1.264000pt;}
._1{width:1.478400pt;}
._8{width:3.076267pt;}
._e{width:4.169067pt;}
._f{width:5.132267pt;}
._13{width:6.072000pt;}
._c{width:7.520000pt;}
._d{width:8.654933pt;}
._b{width:9.973333pt;}
._1d{width:10.888000pt;}
._17{width:11.861600pt;}
._11{width:13.591467pt;}
._a{width:15.044267pt;}
._14{width:16.369333pt;}
._10{width:17.560533pt;}
._7{width:18.633600pt;}
._6{width:19.599467pt;}
._56{width:20.716800pt;}
._1e{width:21.690133pt;}
._1b{width:22.618667pt;}
._1c{width:24.010133pt;}
._6b{width:25.166933pt;}
._1f{width:26.682933pt;}
._20{width:27.633867pt;}
._24{width:28.648800pt;}
._25{width:29.563200pt;}
._46{width:30.498667pt;}
._1a{width:31.793067pt;}
._19{width:32.764800pt;}
._42{width:34.491733pt;}
._3d{width:36.004000pt;}
._37{width:37.262933pt;}
._36{width:38.792533pt;}
._7e{width:39.920533pt;}
._66{width:40.928000pt;}
._38{width:42.573333pt;}
._21{width:43.675467pt;}
._3b{width:44.652267pt;}
._64{width:45.883733pt;}
._52{width:46.969600pt;}
._3e{width:48.138133pt;}
._3c{width:49.873600pt;}
._73{width:51.359467pt;}
._67{width:52.534933pt;}
._6a{width:53.509333pt;}
._68{width:54.590400pt;}
._55{width:55.490133pt;}
._77{width:56.487467pt;}
._5d{width:58.042667pt;}
._62{width:59.182133pt;}
._39{width:61.471467pt;}
._40{width:62.983467pt;}
._3a{width:63.972800pt;}
._23{width:65.093600pt;}
._80{width:66.200000pt;}
._51{width:67.763733pt;}
._4f{width:68.753600pt;}
._5e{width:71.951467pt;}
._54{width:73.118400pt;}
._60{width:74.304000pt;}
._63{width:75.293867pt;}
._71{width:78.856533pt;}
._7d{width:85.292267pt;}
._4d{width:86.453333pt;}
._4e{width:87.443200pt;}
._5f{width:88.683200pt;}
._50{width:100.136533pt;}
._65{width:101.561067pt;}
._79{width:104.278933pt;}
._2a{width:114.637333pt;}
._29{width:117.613333pt;}
._2b{width:120.712533pt;}
._2d{width:123.069333pt;}
._34{width:124.720000pt;}
._2f{width:127.528533pt;}
._6f{width:130.026133pt;}
._30{width:131.161600pt;}
._6e{width:133.632533pt;}
._3f{width:136.163200pt;}
._31{width:137.217600pt;}
._2e{width:138.369067pt;}
._2c{width:140.292267pt;}
._33{width:144.294933pt;}
._4b{width:145.658667pt;}
._5a{width:149.949333pt;}
._76{width:151.478933pt;}
._5c{width:152.443200pt;}
._7f{width:155.158933pt;}
._32{width:156.106667pt;}
._43{width:158.115200pt;}
._53{width:161.368533pt;}
._74{width:163.942933pt;}
._4a{width:165.274133pt;}
._5b{width:167.504000pt;}
._35{width:171.580800pt;}
._61{width:176.620800pt;}
._4c{width:196.995200pt;}
._70{width:212.172267pt;}
._69{width:214.167467pt;}
._78{width:220.369067pt;}
._7c{width:222.982400pt;}
._45{width:226.194133pt;}
._44{width:232.698133pt;}
._7b{width:237.825600pt;}
._75{width:239.372267pt;}
._7a{width:246.104533pt;}
._26{width:255.837867pt;}
._41{width:263.580267pt;}
._72{width:270.412267pt;}
._6d{width:272.836267pt;}
._49{width:276.332267pt;}
._27{width:277.797867pt;}
._28{width:285.409067pt;}
._48{width:296.040533pt;}
._6c{width:300.436800pt;}
._57{width:305.612267pt;}
._59{width:323.320000pt;}
._58{width:326.056000pt;}
._47{width:334.492800pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.645067pt;}
.y3a{bottom:98.739600pt;}
.y146{bottom:100.253467pt;}
.y3b{bottom:100.651067pt;}
.ycb{bottom:100.745600pt;}
.y99{bottom:101.501600pt;}
.y38{bottom:124.582133pt;}
.y28{bottom:124.948800pt;}
.yc9{bottom:127.031200pt;}
.y145{bottom:127.523067pt;}
.y116{bottom:127.538000pt;}
.y69{bottom:129.410267pt;}
.y97{bottom:129.425067pt;}
.y37{bottom:142.982133pt;}
.y27{bottom:143.348800pt;}
.yc8{bottom:144.039067pt;}
.y144{bottom:145.923067pt;}
.y115{bottom:145.938000pt;}
.y68{bottom:147.810267pt;}
.y96{bottom:147.825067pt;}
.yc7{bottom:161.046933pt;}
.y36{bottom:161.382133pt;}
.y26{bottom:161.748800pt;}
.y143{bottom:164.322933pt;}
.y114{bottom:164.338000pt;}
.y67{bottom:166.210267pt;}
.y95{bottom:166.225067pt;}
.yc6{bottom:178.054800pt;}
.y35{bottom:179.782133pt;}
.y25{bottom:180.148800pt;}
.yf8{bottom:180.512400pt;}
.y142{bottom:182.722933pt;}
.y113{bottom:182.738000pt;}
.y66{bottom:184.610133pt;}
.y94{bottom:184.624933pt;}
.yc5{bottom:195.062667pt;}
.yf7{bottom:196.512400pt;}
.y34{bottom:198.182133pt;}
.y24{bottom:198.548800pt;}
.y141{bottom:201.123067pt;}
.y112{bottom:201.138000pt;}
.y65{bottom:203.010267pt;}
.y93{bottom:203.025067pt;}
.yc4{bottom:212.070533pt;}
.yf6{bottom:213.079333pt;}
.y33{bottom:216.582133pt;}
.y23{bottom:216.948800pt;}
.y140{bottom:219.523067pt;}
.y111{bottom:219.538000pt;}
.y64{bottom:221.410267pt;}
.y92{bottom:221.425067pt;}
.yc3{bottom:229.078400pt;}
.yf5{bottom:230.465200pt;}
.y176{bottom:233.351200pt;}
.y32{bottom:234.982133pt;}
.y22{bottom:235.348800pt;}
.y13f{bottom:237.923067pt;}
.y110{bottom:237.938000pt;}
.y63{bottom:239.810267pt;}
.y91{bottom:239.825067pt;}
.yc2{bottom:245.897333pt;}
.yf4{bottom:247.851067pt;}
.y175{bottom:250.951200pt;}
.y31{bottom:253.382133pt;}
.y21{bottom:253.748800pt;}
.y13e{bottom:256.322933pt;}
.y10f{bottom:256.338000pt;}
.y62{bottom:258.210267pt;}
.y90{bottom:258.225067pt;}
.yc1{bottom:261.016400pt;}
.yf3{bottom:265.236800pt;}
.y174{bottom:269.351200pt;}
.y30{bottom:271.782133pt;}
.y20{bottom:272.148800pt;}
.y13d{bottom:274.722933pt;}
.y10e{bottom:274.738000pt;}
.yc0{bottom:276.072000pt;}
.y61{bottom:276.610133pt;}
.y8f{bottom:276.624933pt;}
.ybd{bottom:278.077600pt;}
.yf2{bottom:282.622667pt;}
.y2f{bottom:290.182133pt;}
.y1f{bottom:290.548800pt;}
.ybf{bottom:292.072000pt;}
.y13c{bottom:293.123067pt;}
.y10d{bottom:293.138000pt;}
.y60{bottom:295.010267pt;}
.y8e{bottom:295.025067pt;}
.yf1{bottom:299.189600pt;}
.y173{bottom:304.551333pt;}
.y2e{bottom:308.582133pt;}
.y1e{bottom:308.948800pt;}
.ybe{bottom:309.448133pt;}
.y13b{bottom:311.523067pt;}
.y10c{bottom:311.538000pt;}
.y5f{bottom:313.410267pt;}
.y8d{bottom:313.425067pt;}
.yf0{bottom:315.189600pt;}
.y172{bottom:322.151200pt;}
.y2d{bottom:326.982133pt;}
.y1d{bottom:327.348800pt;}
.y13a{bottom:329.923067pt;}
.y10b{bottom:329.938000pt;}
.yef{bottom:331.756533pt;}
.y5e{bottom:331.810267pt;}
.y8c{bottom:331.825067pt;}
.yb0{bottom:335.873733pt;}
.y2c{bottom:345.382133pt;}
.y1c{bottom:345.748800pt;}
.yee{bottom:347.945467pt;}
.y139{bottom:348.322933pt;}
.y10a{bottom:348.338000pt;}
.y5d{bottom:350.210267pt;}
.y8b{bottom:350.225067pt;}
.y171{bottom:357.351200pt;}
.y2b{bottom:363.782133pt;}
.yed{bottom:363.945467pt;}
.y1b{bottom:364.148800pt;}
.y138{bottom:366.723067pt;}
.y109{bottom:366.738000pt;}
.ybc{bottom:366.759200pt;}
.y5c{bottom:368.610267pt;}
.y8a{bottom:368.625067pt;}
.y170{bottom:374.951200pt;}
.yec{bottom:380.134533pt;}
.y2a{bottom:382.182133pt;}
.y1a{bottom:382.548800pt;}
.ybb{bottom:383.767067pt;}
.y137{bottom:385.123067pt;}
.y108{bottom:385.138000pt;}
.y5b{bottom:387.010267pt;}
.y89{bottom:387.025067pt;}
.y16f{bottom:392.551333pt;}
.yeb{bottom:397.520267pt;}
.y29{bottom:400.582133pt;}
.yba{bottom:400.774933pt;}
.y19{bottom:400.948800pt;}
.y136{bottom:403.523067pt;}
.y107{bottom:403.538000pt;}
.y5a{bottom:405.410267pt;}
.y88{bottom:405.425067pt;}
.y16e{bottom:410.151200pt;}
.yea{bottom:414.906133pt;}
.yb9{bottom:417.782933pt;}
.y18{bottom:419.348800pt;}
.y135{bottom:421.923067pt;}
.y106{bottom:421.938000pt;}
.y59{bottom:423.810267pt;}
.y87{bottom:423.825067pt;}
.y16d{bottom:427.751200pt;}
.ye9{bottom:432.292000pt;}
.yb8{bottom:434.790667pt;}
.y134{bottom:440.322933pt;}
.y105{bottom:440.338000pt;}
.y86{bottom:442.225067pt;}
.y16c{bottom:445.351200pt;}
.ye8{bottom:449.677733pt;}
.yb7{bottom:452.365467pt;}
.y133{bottom:458.723067pt;}
.y104{bottom:458.738000pt;}
.y58{bottom:460.610267pt;}
.y85{bottom:460.625067pt;}
.y16b{bottom:462.951200pt;}
.ye7{bottom:467.063600pt;}
.yb6{bottom:471.263200pt;}
.y17{bottom:472.739867pt;}
.y132{bottom:477.123067pt;}
.y57{bottom:479.010267pt;}
.y84{bottom:479.025067pt;}
.ye6{bottom:484.449467pt;}
.yb2{bottom:487.894400pt;}
.y16{bottom:488.739867pt;}
.yb5{bottom:490.644267pt;}
.y131{bottom:495.523067pt;}
.y103{bottom:495.538000pt;}
.y56{bottom:497.410267pt;}
.y83{bottom:497.425067pt;}
.y16a{bottom:498.151200pt;}
.ye5{bottom:501.835333pt;}
.y15{bottom:504.739867pt;}
.yb4{bottom:506.644267pt;}
.y130{bottom:513.923067pt;}
.y102{bottom:513.938000pt;}
.y55{bottom:515.810267pt;}
.y82{bottom:515.825067pt;}
.ye4{bottom:519.221067pt;}
.y14{bottom:520.739867pt;}
.yb3{bottom:524.346400pt;}
.y12f{bottom:532.322933pt;}
.y101{bottom:532.338000pt;}
.y169{bottom:533.351200pt;}
.y54{bottom:534.210267pt;}
.y81{bottom:534.225067pt;}
.ye3{bottom:536.606933pt;}
.yaf{bottom:546.456933pt;}
.y12e{bottom:550.723067pt;}
.y100{bottom:550.738000pt;}
.y53{bottom:552.610267pt;}
.y80{bottom:552.625067pt;}
.y13{bottom:552.739867pt;}
.ye2{bottom:555.504533pt;}
.y168{bottom:568.551333pt;}
.y12{bottom:568.739867pt;}
.y12d{bottom:569.123067pt;}
.yff{bottom:569.138000pt;}
.y52{bottom:571.010267pt;}
.yb1{bottom:575.068133pt;}
.ye1{bottom:575.914000pt;}
.y167{bottom:586.151200pt;}
.y12c{bottom:587.523067pt;}
.yfe{bottom:587.538000pt;}
.y51{bottom:589.410267pt;}
.y7f{bottom:589.425067pt;}
.ydd{bottom:593.510667pt;}
.ye0{bottom:595.504133pt;}
.yad{bottom:596.948133pt;}
.y11{bottom:600.739867pt;}
.y166{bottom:603.751200pt;}
.y12b{bottom:605.923067pt;}
.yfd{bottom:605.938000pt;}
.y50{bottom:607.810267pt;}
.y7e{bottom:607.825067pt;}
.ydf{bottom:611.504133pt;}
.yac{bottom:612.948133pt;}
.y10{bottom:616.739867pt;}
.y12a{bottom:624.322933pt;}
.yfc{bottom:624.338000pt;}
.y7d{bottom:626.225067pt;}
.yab{bottom:630.817200pt;}
.yde{bottom:631.305467pt;}
.yf{bottom:632.739867pt;}
.y165{bottom:638.951200pt;}
.y129{bottom:642.723067pt;}
.yfb{bottom:642.738000pt;}
.y4f{bottom:644.610267pt;}
.y7c{bottom:644.625067pt;}
.yaa{bottom:647.825200pt;}
.ye{bottom:648.739867pt;}
.ycc{bottom:658.329867pt;}
.y128{bottom:661.123067pt;}
.yfa{bottom:661.138000pt;}
.y4e{bottom:663.010267pt;}
.y7b{bottom:663.025067pt;}
.yd{bottom:664.739867pt;}
.ya9{bottom:664.833067pt;}
.y127{bottom:679.523067pt;}
.yf9{bottom:679.538000pt;}
.yc{bottom:680.739867pt;}
.y4d{bottom:681.410267pt;}
.y7a{bottom:681.425067pt;}
.ya8{bottom:681.840933pt;}
.yb{bottom:696.739867pt;}
.y126{bottom:697.923067pt;}
.ydc{bottom:697.938000pt;}
.ya7{bottom:698.848800pt;}
.y4c{bottom:699.810267pt;}
.y79{bottom:699.825067pt;}
.ya{bottom:712.739867pt;}
.ya6{bottom:715.856667pt;}
.y125{bottom:716.322933pt;}
.ydb{bottom:716.338000pt;}
.y4b{bottom:718.210267pt;}
.y78{bottom:718.225067pt;}
.y156{bottom:721.989600pt;}
.y164{bottom:722.004667pt;}
.ya5{bottom:733.809467pt;}
.y124{bottom:734.722933pt;}
.yda{bottom:734.738000pt;}
.y4a{bottom:736.610133pt;}
.y77{bottom:736.624933pt;}
.y155{bottom:740.389600pt;}
.ya4{bottom:750.610533pt;}
.y123{bottom:753.123067pt;}
.yd9{bottom:753.138000pt;}
.y49{bottom:755.010267pt;}
.y76{bottom:755.025067pt;}
.y154{bottom:758.789733pt;}
.y163{bottom:758.804667pt;}
.y9{bottom:768.923600pt;}
.ya0{bottom:769.024800pt;}
.ya3{bottom:769.929733pt;}
.y122{bottom:771.523067pt;}
.yd8{bottom:771.538000pt;}
.y48{bottom:773.410267pt;}
.y75{bottom:773.425067pt;}
.y153{bottom:777.189733pt;}
.y162{bottom:777.204667pt;}
.ya2{bottom:785.929733pt;}
.y8{bottom:787.323600pt;}
.y121{bottom:789.923067pt;}
.yd7{bottom:789.938000pt;}
.y47{bottom:791.810267pt;}
.y74{bottom:791.825067pt;}
.y152{bottom:795.589733pt;}
.y161{bottom:795.604667pt;}
.ya1{bottom:805.792667pt;}
.y120{bottom:808.322933pt;}
.yd6{bottom:808.338000pt;}
.y46{bottom:810.210267pt;}
.y73{bottom:810.225067pt;}
.y151{bottom:813.989600pt;}
.y160{bottom:814.004667pt;}
.y7{bottom:824.923600pt;}
.y11f{bottom:826.722933pt;}
.yd5{bottom:826.738000pt;}
.y45{bottom:828.610267pt;}
.y72{bottom:828.625067pt;}
.yae{bottom:830.677333pt;}
.y150{bottom:832.389600pt;}
.y15f{bottom:832.404667pt;}
.y11e{bottom:845.123067pt;}
.yd4{bottom:845.138000pt;}
.y44{bottom:847.010400pt;}
.y71{bottom:847.025200pt;}
.y6{bottom:847.323600pt;}
.y14f{bottom:850.789733pt;}
.y15e{bottom:850.804667pt;}
.y11d{bottom:863.523067pt;}
.yd3{bottom:863.538000pt;}
.y43{bottom:865.410267pt;}
.y70{bottom:865.425067pt;}
.y9f{bottom:865.425200pt;}
.y14e{bottom:869.189733pt;}
.y15d{bottom:869.204667pt;}
.y5{bottom:869.723600pt;}
.y11c{bottom:881.923067pt;}
.yd2{bottom:881.938000pt;}
.y42{bottom:883.810267pt;}
.y6f{bottom:883.825067pt;}
.y9e{bottom:883.825200pt;}
.y14d{bottom:887.589733pt;}
.y15c{bottom:887.604667pt;}
.y4{bottom:892.123600pt;}
.y11b{bottom:900.322933pt;}
.yd1{bottom:900.338000pt;}
.y41{bottom:902.210267pt;}
.y6e{bottom:902.225067pt;}
.y9d{bottom:902.225200pt;}
.y14c{bottom:905.989600pt;}
.y15b{bottom:906.004667pt;}
.y11a{bottom:918.722933pt;}
.yd0{bottom:918.738000pt;}
.y40{bottom:920.610267pt;}
.y6d{bottom:920.625067pt;}
.y9c{bottom:920.625200pt;}
.y14b{bottom:924.389600pt;}
.y15a{bottom:924.404667pt;}
.y3{bottom:936.923600pt;}
.y119{bottom:937.123067pt;}
.ycf{bottom:937.138000pt;}
.y3f{bottom:939.010400pt;}
.y6c{bottom:939.025200pt;}
.y14a{bottom:942.789733pt;}
.y159{bottom:942.804667pt;}
.y118{bottom:955.523067pt;}
.yce{bottom:955.538000pt;}
.y3e{bottom:957.410267pt;}
.y6b{bottom:957.425067pt;}
.y9b{bottom:957.425200pt;}
.y149{bottom:961.189733pt;}
.y158{bottom:961.204667pt;}
.y117{bottom:973.923067pt;}
.ycd{bottom:973.938000pt;}
.y3d{bottom:975.810267pt;}
.y6a{bottom:975.825067pt;}
.y9a{bottom:975.825200pt;}
.y148{bottom:979.589733pt;}
.y157{bottom:979.604667pt;}
.y39{bottom:983.369200pt;}
.y3c{bottom:1006.887200pt;}
.yca{bottom:1007.643200pt;}
.y147{bottom:1009.043600pt;}
.y98{bottom:1009.157867pt;}
.y2{bottom:1014.068400pt;}
.h3{height:40.734375pt;}
.hb{height:42.166667pt;}
.h7{height:42.585938pt;}
.h2{height:46.112508pt;}
.h8{height:47.005208pt;}
.hd{height:50.731771pt;}
.h4{height:51.705729pt;}
.h9{height:53.037760pt;}
.ha{height:54.055990pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.hc{height:79.005208pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:56.692933pt;}
.x31{left:60.377600pt;}
.x13{left:61.889467pt;}
.x3b{left:71.997467pt;}
.x16{left:79.370133pt;}
.x3a{left:85.049200pt;}
.x3d{left:90.370133pt;}
.x1{left:94.488133pt;}
.x2{left:98.834533pt;}
.x29{left:100.396400pt;}
.x21{left:102.380400pt;}
.x22{left:104.923200pt;}
.xc{left:117.165333pt;}
.x1b{left:122.695600pt;}
.xb{left:131.716533pt;}
.x9{left:144.917733pt;}
.x7{left:158.730400pt;}
.x38{left:172.278533pt;}
.x34{left:178.289600pt;}
.x30{left:185.691733pt;}
.x2b{left:196.969200pt;}
.x28{left:199.478533pt;}
.x2f{left:212.280800pt;}
.x24{left:213.242800pt;}
.x6{left:215.249867pt;}
.xd{left:218.050133pt;}
.xa{left:219.656533pt;}
.x27{left:226.067600pt;}
.x1c{left:229.124000pt;}
.x8{left:236.459600pt;}
.x3c{left:238.522800pt;}
.x5{left:241.652933pt;}
.x20{left:249.697333pt;}
.x35{left:258.738800pt;}
.xe{left:270.848267pt;}
.x2c{left:277.418400pt;}
.x25{left:293.692000pt;}
.x19{left:297.022667pt;}
.x1d{left:309.573200pt;}
.x33{left:379.716000pt;}
.x17{left:387.401600pt;}
.x2a{left:407.979867pt;}
.x18{left:410.078800pt;}
.x23{left:412.506533pt;}
.x3{left:424.100800pt;}
.xf{left:425.196800pt;}
.x4{left:431.140800pt;}
.x36{left:436.780133pt;}
.x1a{left:445.984267pt;}
.x10{left:447.874000pt;}
.x2d{left:466.337733pt;}
.x39{left:472.057733pt;}
.x1e{left:476.571333pt;}
.x26{left:478.084533pt;}
.x37{left:525.028800pt;}
.x2e{left:554.586400pt;}
.x1f{left:564.820000pt;}
.x14{left:565.998800pt;}
.x32{left:612.675600pt;}
.x15{left:614.187333pt;}
.x11{left:681.764933pt;}
}




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