
    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_cb6e801895cddd054569343b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.951000;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_af1c6b0cd7d237e20bd5c410.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_5c92883c190c2915811054cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967773;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_84f14b8cf4621f632c346bda.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.719727;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_75605aa98a74f685ef49ced4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.956543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f7b6cf564edf99853479794c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.176270;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_4dd80fe57fcac4f460857600.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985352;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_5f1c64bc76092c82d34a52fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.056641;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_beeda878e09a5dfaf0af258a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_51706c3c21121873569ea7b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.924000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3bfe39b224f36ce66b970b00.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.998535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c1b0fd9f7d6d0692a746454c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3455e75c4c1eebbb53481556.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.286134px;}
.v1{vertical-align:16.675782px;}
.ls41{letter-spacing:-16.500000px;}
.ls1a{letter-spacing:-2.409000px;}
.ls11{letter-spacing:-0.021600px;}
.ls17{letter-spacing:-0.014400px;}
.ls13{letter-spacing:-0.013200px;}
.ls12{letter-spacing:-0.011520px;}
.ls21{letter-spacing:-0.007200px;}
.ls10{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000399px;}
.ls2d{letter-spacing:0.001260px;}
.ls37{letter-spacing:0.001860px;}
.ls38{letter-spacing:0.002460px;}
.ls3f{letter-spacing:0.002580px;}
.ls2b{letter-spacing:0.002940px;}
.ls30{letter-spacing:0.003600px;}
.ls36{letter-spacing:0.003840px;}
.ls29{letter-spacing:0.004140px;}
.ls40{letter-spacing:0.004740px;}
.ls2f{letter-spacing:0.004800px;}
.ls3d{letter-spacing:0.005100px;}
.ls31{letter-spacing:0.010200px;}
.ls2a{letter-spacing:0.010800px;}
.ls4{letter-spacing:0.011520px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.012096px;}
.ls28{letter-spacing:0.012600px;}
.ls18{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.014400px;}
.ls3e{letter-spacing:0.018000px;}
.ls32{letter-spacing:0.020400px;}
.ls25{letter-spacing:0.027000px;}
.lsc{letter-spacing:0.102000px;}
.ls3c{letter-spacing:0.257400px;}
.ls7{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.418200px;}
.ls5{letter-spacing:0.660000px;}
.lsb{letter-spacing:0.834000px;}
.ls14{letter-spacing:0.885000px;}
.ls2e{letter-spacing:0.886020px;}
.lsa{letter-spacing:1.464000px;}
.ls8{letter-spacing:1.758000px;}
.ls33{letter-spacing:2.326740px;}
.ls26{letter-spacing:2.413320px;}
.lsd{letter-spacing:2.442000px;}
.ls15{letter-spacing:2.518200px;}
.ls22{letter-spacing:2.548800px;}
.lsf{letter-spacing:2.622000px;}
.ls19{letter-spacing:3.003000px;}
.ls6{letter-spacing:3.534000px;}
.lse{letter-spacing:3.570000px;}
.ls9{letter-spacing:3.690000px;}
.ls20{letter-spacing:3.719520px;}
.ls1f{letter-spacing:3.736800px;}
.ls24{letter-spacing:4.327800px;}
.ls1c{letter-spacing:4.823400px;}
.ls0{letter-spacing:4.838400px;}
.ls23{letter-spacing:5.853600px;}
.ls39{letter-spacing:6.837600px;}
.ls27{letter-spacing:7.422000px;}
.ls34{letter-spacing:10.785000px;}
.ls3b{letter-spacing:10.942800px;}
.ls2c{letter-spacing:10.956000px;}
.ls16{letter-spacing:16.651800px;}
.ls35{letter-spacing:18.862800px;}
.ls1e{letter-spacing:22.766400px;}
.ls3a{letter-spacing:24.654600px;}
.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;}
}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.348000px;}
.ws10{word-spacing:-18.014400px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.ws15{word-spacing:-16.757400px;}
.ws8{word-spacing:-16.680000px;}
.ws11{word-spacing:-16.513200px;}
.wsc{word-spacing:-16.500000px;}
.ws12{word-spacing:-16.486800px;}
.ws1{word-spacing:-16.024320px;}
.ws4{word-spacing:-16.012800px;}
.ws2{word-spacing:-16.001280px;}
.ws6{word-spacing:-14.678400px;}
.ws9{word-spacing:-13.344000px;}
.wsa{word-spacing:-6.396000px;}
.wsb{word-spacing:-1.208400px;}
.ws14{word-spacing:-0.079200px;}
.ws13{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:4.752000px;}
.wse{word-spacing:4.780800px;}
._1c{margin-left:-18.360000px;}
._1e{margin-left:-8.028480px;}
._9{margin-left:-6.638400px;}
._0{margin-left:-4.860000px;}
._13{margin-left:-3.534000px;}
._b{margin-left:-2.232720px;}
._6{margin-left:-1.148400px;}
._7{width:1.221000px;}
._8{width:2.758800px;}
._10{width:4.509600px;}
._a{width:6.394080px;}
._5{width:8.089200px;}
._1b{width:9.867600px;}
._1a{width:11.203200px;}
._1d{width:12.258000px;}
._e{width:13.290000px;}
._f{width:15.096720px;}
._2{width:16.156800px;}
._17{width:18.494880px;}
._11{width:20.191920px;}
._4{width:22.096800px;}
._19{width:23.232000px;}
._18{width:24.366000px;}
._21{width:25.411200px;}
._3{width:26.492400px;}
._14{width:27.996000px;}
._12{width:29.010000px;}
._15{width:30.198000px;}
._20{width:31.269000px;}
._16{width:32.469600px;}
._1f{width:36.475200px;}
._1{width:51.516000px;}
._d{width:199.320000px;}
._c{width:2861.271000px;}
.fc1{color:rgb(171,69,0);}
.fc5{color:rgb(45,45,45);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(66,66,66);}
.fs7{font-size:44.000004px;}
.fs6{font-size:48.000000px;}
.fs5{font-size:52.800000px;}
.fs4{font-size:57.600000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.399650px;}
.y19{bottom:7.470480px;}
.y41{bottom:7.919550px;}
.y2e{bottom:8.876100px;}
.yad{bottom:9.450435px;}
.yce{bottom:12.720480px;}
.y114{bottom:15.720480px;}
.y14{bottom:18.720480px;}
.ye4{bottom:21.720480px;}
.y18{bottom:25.470480px;}
.y2d{bottom:26.876100px;}
.y6a{bottom:27.720480px;}
.yac{bottom:33.450435px;}
.ycd{bottom:36.720480px;}
.y105{bottom:39.720480px;}
.y148{bottom:41.220480px;}
.y13{bottom:42.720480px;}
.y17{bottom:43.470480px;}
.y2c{bottom:44.876100px;}
.y81{bottom:45.720480px;}
.y69{bottom:51.720480px;}
.yab{bottom:57.450435px;}
.y154{bottom:57.720480px;}
.y15{bottom:60.029520px;}
.ycc{bottom:60.720480px;}
.y16{bottom:61.470480px;}
.y147{bottom:62.220480px;}
.y2b{bottom:62.876100px;}
.y113{bottom:63.720480px;}
.y12{bottom:66.720480px;}
.y80{bottom:69.720480px;}
.y68{bottom:75.720480px;}
.y2a{bottom:80.876100px;}
.yaa{bottom:81.450435px;}
.y104{bottom:81.720480px;}
.y3f{bottom:82.624050px;}
.ycb{bottom:84.720480px;}
.ye3{bottom:87.720480px;}
.y11{bottom:90.720480px;}
.y146{bottom:92.220480px;}
.y7f{bottom:93.720480px;}
.y82{bottom:97.049565px;}
.y29{bottom:98.876100px;}
.y67{bottom:99.720480px;}
.y42{bottom:99.779520px;}
.y3e{bottom:100.624050px;}
.ya9{bottom:105.450435px;}
.yca{bottom:108.720480px;}
.ye2{bottom:111.720480px;}
.y145{bottom:113.220480px;}
.y10{bottom:114.720480px;}
.y28{bottom:116.876100px;}
.y7e{bottom:117.720480px;}
.y3d{bottom:118.624050px;}
.y66{bottom:123.720480px;}
.y103{bottom:126.720480px;}
.ya8{bottom:129.450435px;}
.yc9{bottom:132.720480px;}
.y27{bottom:134.876100px;}
.ye1{bottom:135.720480px;}
.y3{bottom:135.779520px;}
.y3c{bottom:136.624050px;}
.y13c{bottom:138.720480px;}
.y7d{bottom:141.720480px;}
.y144{bottom:143.220480px;}
.yf{bottom:147.720480px;}
.y102{bottom:150.720480px;}
.y26{bottom:152.876100px;}
.ya7{bottom:153.450435px;}
.y125{bottom:153.720480px;}
.y3b{bottom:154.624050px;}
.yc8{bottom:156.720480px;}
.ye0{bottom:159.720480px;}
.y13b{bottom:162.720480px;}
.y143{bottom:164.220480px;}
.y7c{bottom:165.720480px;}
.y153{bottom:168.720480px;}
.y25{bottom:170.876100px;}
.y65{bottom:171.720480px;}
.y3a{bottom:172.624050px;}
.y101{bottom:174.720480px;}
.y124{bottom:177.720480px;}
.yc7{bottom:180.720480px;}
.ydf{bottom:183.720480px;}
.y13a{bottom:186.720480px;}
.y24{bottom:188.876100px;}
.y7b{bottom:189.720480px;}
.y39{bottom:190.624050px;}
.y142{bottom:194.220480px;}
.y64{bottom:195.720480px;}
.ye{bottom:198.720480px;}
.ya6{bottom:201.450435px;}
.y123{bottom:201.720480px;}
.yc6{bottom:204.720480px;}
.y23{bottom:206.876100px;}
.yde{bottom:207.720480px;}
.y38{bottom:208.624050px;}
.y139{bottom:210.720480px;}
.y7a{bottom:213.720480px;}
.yd{bottom:219.720480px;}
.ya5{bottom:222.450435px;}
.y100{bottom:222.720480px;}
.y22{bottom:224.876100px;}
.y122{bottom:225.720480px;}
.y37{bottom:226.624050px;}
.yc5{bottom:228.720480px;}
.ydd{bottom:231.720480px;}
.y141{bottom:233.220480px;}
.y138{bottom:234.720480px;}
.y79{bottom:237.720480px;}
.yc{bottom:240.720480px;}
.y21{bottom:242.876100px;}
.ya4{bottom:243.450435px;}
.y63{bottom:243.720480px;}
.y36{bottom:244.624050px;}
.yff{bottom:246.720480px;}
.y121{bottom:249.720480px;}
.yc4{bottom:252.720480px;}
.y112{bottom:255.720480px;}
.y137{bottom:258.720480px;}
.y20{bottom:260.876100px;}
.yb{bottom:261.720480px;}
.y35{bottom:262.624050px;}
.ya3{bottom:264.450435px;}
.y62{bottom:267.720480px;}
.yfe{bottom:270.720480px;}
.y120{bottom:273.720480px;}
.yc3{bottom:276.720480px;}
.y1f{bottom:278.876100px;}
.ydc{bottom:279.720480px;}
.y34{bottom:280.624050px;}
.y136{bottom:282.720480px;}
.ya2{bottom:285.450435px;}
.y78{bottom:285.720480px;}
.y61{bottom:291.720480px;}
.yfd{bottom:294.720480px;}
.y1e{bottom:296.876100px;}
.y11f{bottom:297.720480px;}
.y33{bottom:298.624050px;}
.yc2{bottom:300.720480px;}
.y111{bottom:303.720480px;}
.ya1{bottom:306.450435px;}
.y135{bottom:306.720480px;}
.y77{bottom:309.720480px;}
.y1d{bottom:314.876100px;}
.y60{bottom:315.720480px;}
.y32{bottom:316.624050px;}
.yfc{bottom:318.720480px;}
.ydb{bottom:321.720480px;}
.yc1{bottom:324.720480px;}
.ya0{bottom:327.450435px;}
.y110{bottom:327.720480px;}
.y11e{bottom:330.720480px;}
.y1c{bottom:332.876100px;}
.y76{bottom:333.720480px;}
.y31{bottom:334.624050px;}
.y140{bottom:338.220480px;}
.y5f{bottom:339.720480px;}
.yda{bottom:342.720480px;}
.y9f{bottom:348.450435px;}
.yc0{bottom:348.720480px;}
.y10f{bottom:351.720480px;}
.y1b{bottom:352.376100px;}
.y30{bottom:354.124050px;}
.y134{bottom:354.720480px;}
.y75{bottom:357.720480px;}
.y152{bottom:360.720480px;}
.y5e{bottom:363.720480px;}
.yfb{bottom:366.720480px;}
.y9e{bottom:369.450435px;}
.ybf{bottom:372.720480px;}
.y10e{bottom:375.720480px;}
.y133{bottom:378.720480px;}
.y74{bottom:381.720480px;}
.yd9{bottom:384.720480px;}
.y5d{bottom:387.720480px;}
.y9d{bottom:390.450435px;}
.yfa{bottom:390.720480px;}
.y11d{bottom:393.720480px;}
.ybe{bottom:396.720480px;}
.y132{bottom:402.720480px;}
.y73{bottom:405.720480px;}
.y9c{bottom:411.450435px;}
.y5c{bottom:411.720480px;}
.yf9{bottom:414.720480px;}
.ybd{bottom:420.720480px;}
.y10d{bottom:423.720480px;}
.y131{bottom:426.720480px;}
.y72{bottom:429.720480px;}
.y9b{bottom:432.450435px;}
.y5b{bottom:435.720480px;}
.yf8{bottom:438.720480px;}
.y151{bottom:441.720480px;}
.ybc{bottom:444.720480px;}
.yd8{bottom:447.720480px;}
.y130{bottom:450.720480px;}
.y2f{bottom:452.875950px;}
.y71{bottom:453.720480px;}
.y1a{bottom:454.623900px;}
.y5a{bottom:459.720480px;}
.yf7{bottom:462.720480px;}
.y10c{bottom:465.720480px;}
.ybb{bottom:468.720480px;}
.y150{bottom:471.720480px;}
.y12f{bottom:474.720480px;}
.y9a{bottom:477.450435px;}
.y70{bottom:477.720480px;}
.y11c{bottom:480.720480px;}
.y59{bottom:483.720480px;}
.yf6{bottom:486.720480px;}
.yd7{bottom:489.720480px;}
.y12e{bottom:498.720480px;}
.y99{bottom:501.450435px;}
.y6f{bottom:501.720480px;}
.y11b{bottom:504.720480px;}
.y58{bottom:507.720480px;}
.yd6{bottom:510.720480px;}
.y12d{bottom:522.720480px;}
.y98{bottom:525.450435px;}
.y6e{bottom:525.720480px;}
.y10b{bottom:528.720480px;}
.y57{bottom:531.720480px;}
.y15a{bottom:540.720480px;}
.y12c{bottom:546.720480px;}
.y97{bottom:549.450435px;}
.y6d{bottom:549.720480px;}
.yba{bottom:552.720480px;}
.y56{bottom:555.720480px;}
.yf5{bottom:558.720480px;}
.y10a{bottom:561.720480px;}
.y12b{bottom:570.720480px;}
.y96{bottom:573.450435px;}
.yd5{bottom:573.720480px;}
.yb9{bottom:576.720480px;}
.y55{bottom:579.720480px;}
.y6c{bottom:582.720480px;}
.y159{bottom:591.720480px;}
.yd4{bottom:594.720480px;}
.y95{bottom:597.450435px;}
.yb8{bottom:600.720480px;}
.y54{bottom:603.720480px;}
.yd3{bottom:615.720480px;}
.y12a{bottom:618.720480px;}
.y94{bottom:621.450435px;}
.yf4{bottom:621.720480px;}
.y6b{bottom:624.720480px;}
.y53{bottom:627.720480px;}
.y14f{bottom:633.720480px;}
.yd2{bottom:636.720480px;}
.yf3{bottom:642.720480px;}
.y93{bottom:645.450435px;}
.yb7{bottom:648.720480px;}
.y52{bottom:651.720480px;}
.yd1{bottom:657.720480px;}
.y14e{bottom:663.720480px;}
.y129{bottom:666.720480px;}
.y92{bottom:669.450435px;}
.y11a{bottom:669.720480px;}
.yb6{bottom:672.720480px;}
.y51{bottom:675.720480px;}
.yd0{bottom:678.720480px;}
.y14d{bottom:684.720480px;}
.y119{bottom:690.720480px;}
.y91{bottom:693.450435px;}
.yb5{bottom:696.720480px;}
.y50{bottom:699.720480px;}
.y158{bottom:702.720480px;}
.y118{bottom:711.720480px;}
.yf2{bottom:714.720480px;}
.ya{bottom:716.220480px;}
.y90{bottom:717.450435px;}
.yb4{bottom:720.720480px;}
.y4f{bottom:723.720480px;}
.ycf{bottom:729.720480px;}
.y117{bottom:732.720480px;}
.yf1{bottom:738.720480px;}
.y8f{bottom:741.450435px;}
.yb3{bottom:744.720480px;}
.y9{bottom:747.720480px;}
.y116{bottom:753.720480px;}
.y13f{bottom:759.720480px;}
.yf0{bottom:762.720480px;}
.y8e{bottom:765.450435px;}
.yb2{bottom:768.720480px;}
.y4e{bottom:771.720480px;}
.y115{bottom:774.720480px;}
.y8{bottom:780.720480px;}
.yef{bottom:786.720480px;}
.y8d{bottom:789.450435px;}
.yb1{bottom:792.720480px;}
.y4d{bottom:795.720480px;}
.y13e{bottom:801.720480px;}
.y14c{bottom:804.720480px;}
.yee{bottom:810.720480px;}
.y8c{bottom:813.450435px;}
.y7{bottom:813.720480px;}
.yb0{bottom:816.720480px;}
.y4c{bottom:819.720480px;}
.y13d{bottom:822.720480px;}
.y157{bottom:825.720480px;}
.yed{bottom:834.720480px;}
.y8b{bottom:837.450435px;}
.y109{bottom:837.720480px;}
.yaf{bottom:840.720480px;}
.y4b{bottom:843.720480px;}
.y6{bottom:855.720480px;}
.yec{bottom:858.720480px;}
.y8a{bottom:861.450435px;}
.yae{bottom:864.720480px;}
.y4a{bottom:867.720480px;}
.y128{bottom:870.720480px;}
.y108{bottom:879.720480px;}
.yeb{bottom:882.720480px;}
.y89{bottom:885.450435px;}
.y14b{bottom:885.720480px;}
.y5{bottom:888.720480px;}
.y49{bottom:891.720480px;}
.y107{bottom:900.720480px;}
.yea{bottom:906.720480px;}
.y88{bottom:909.450435px;}
.y127{bottom:912.720480px;}
.y48{bottom:915.720480px;}
.y4{bottom:921.720480px;}
.y156{bottom:927.720480px;}
.ye9{bottom:930.720480px;}
.y87{bottom:933.450435px;}
.y14a{bottom:936.720480px;}
.y47{bottom:939.720480px;}
.y106{bottom:942.720480px;}
.y126{bottom:954.720480px;}
.y86{bottom:957.450435px;}
.y155{bottom:957.720480px;}
.y46{bottom:963.720480px;}
.y149{bottom:966.720480px;}
.ye8{bottom:975.720480px;}
.y85{bottom:981.450435px;}
.y45{bottom:987.720480px;}
.ye7{bottom:996.720480px;}
.y84{bottom:1005.450435px;}
.y44{bottom:1011.720480px;}
.ye6{bottom:1017.720480px;}
.y43{bottom:1035.720480px;}
.y83{bottom:1038.450435px;}
.ye5{bottom:1038.720480px;}
.y40{bottom:1098.567450px;}
.y1{bottom:1188.100350px;}
.h1{height:25.500000px;}
.he{height:27.750000px;}
.hd{height:43.200000px;}
.h11{height:43.500000px;}
.h2{height:44.340000px;}
.h17{height:48.533203px;}
.hf{height:49.500000px;}
.h14{height:51.465820px;}
.h7{height:52.031250px;}
.h12{height:52.277344px;}
.h5{height:52.945312px;}
.hb{height:54.000000px;}
.h16{height:56.144531px;}
.h6{height:59.329102px;}
.h8{height:64.722656px;}
.h9{height:79.500000px;}
.h4{height:81.000000px;}
.ha{height:374.707050px;}
.hc{height:376.500000px;}
.h3{height:1023.345450px;}
.h15{height:1059.758400px;}
.h10{height:1060.170900px;}
.h13{height:1062.900900px;}
.h0{height:1263.000000px;}
.w8{width:36.738000px;}
.w2{width:122.385000px;}
.w1{width:247.470000px;}
.w7{width:309.975600px;}
.w5{width:339.197250px;}
.w6{width:343.945650px;}
.we{width:731.497050px;}
.w9{width:732.322200px;}
.wa{width:732.394200px;}
.wd{width:733.673400px;}
.wb{width:734.907900px;}
.w3{width:735.921300px;}
.w4{width:737.742750px;}
.wc{width:740.421300px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:4.210620px;}
.xa{left:5.953200px;}
.x5{left:7.210620px;}
.x13{left:9.460620px;}
.xe{left:26.411070px;}
.x7{left:28.210620px;}
.x16{left:30.460620px;}
.x17{left:36.460620px;}
.x10{left:47.411070px;}
.x15{left:51.460620px;}
.x11{left:59.411070px;}
.xf{left:68.411070px;}
.x14{left:72.460620px;}
.x12{left:76.039380px;}
.x4{left:78.289380px;}
.xd{left:80.088930px;}
.x1{left:81.289380px;}
.x8{left:100.007490px;}
.xc{left:209.971800px;}
.x6{left:241.210620px;}
.x3{left:385.057500px;}
.x9{left:448.546800px;}
.xb{left:498.802800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.587675pt;}
.v1{vertical-align:14.822917pt;}
.ls41{letter-spacing:-14.666667pt;}
.ls1a{letter-spacing:-2.141333pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls17{letter-spacing:-0.012800pt;}
.ls13{letter-spacing:-0.011733pt;}
.ls12{letter-spacing:-0.010240pt;}
.ls21{letter-spacing:-0.006400pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000355pt;}
.ls2d{letter-spacing:0.001120pt;}
.ls37{letter-spacing:0.001653pt;}
.ls38{letter-spacing:0.002187pt;}
.ls3f{letter-spacing:0.002293pt;}
.ls2b{letter-spacing:0.002613pt;}
.ls30{letter-spacing:0.003200pt;}
.ls36{letter-spacing:0.003413pt;}
.ls29{letter-spacing:0.003680pt;}
.ls40{letter-spacing:0.004213pt;}
.ls2f{letter-spacing:0.004267pt;}
.ls3d{letter-spacing:0.004533pt;}
.ls31{letter-spacing:0.009067pt;}
.ls2a{letter-spacing:0.009600pt;}
.ls4{letter-spacing:0.010240pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.010752pt;}
.ls28{letter-spacing:0.011200pt;}
.ls18{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.012800pt;}
.ls3e{letter-spacing:0.016000pt;}
.ls32{letter-spacing:0.018133pt;}
.ls25{letter-spacing:0.024000pt;}
.lsc{letter-spacing:0.090667pt;}
.ls3c{letter-spacing:0.228800pt;}
.ls7{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.371733pt;}
.ls5{letter-spacing:0.586667pt;}
.lsb{letter-spacing:0.741333pt;}
.ls14{letter-spacing:0.786667pt;}
.ls2e{letter-spacing:0.787573pt;}
.lsa{letter-spacing:1.301333pt;}
.ls8{letter-spacing:1.562667pt;}
.ls33{letter-spacing:2.068213pt;}
.ls26{letter-spacing:2.145173pt;}
.lsd{letter-spacing:2.170667pt;}
.ls15{letter-spacing:2.238400pt;}
.ls22{letter-spacing:2.265600pt;}
.lsf{letter-spacing:2.330667pt;}
.ls19{letter-spacing:2.669333pt;}
.ls6{letter-spacing:3.141333pt;}
.lse{letter-spacing:3.173333pt;}
.ls9{letter-spacing:3.280000pt;}
.ls20{letter-spacing:3.306240pt;}
.ls1f{letter-spacing:3.321600pt;}
.ls24{letter-spacing:3.846933pt;}
.ls1c{letter-spacing:4.287467pt;}
.ls0{letter-spacing:4.300800pt;}
.ls23{letter-spacing:5.203200pt;}
.ls39{letter-spacing:6.077867pt;}
.ls27{letter-spacing:6.597333pt;}
.ls34{letter-spacing:9.586667pt;}
.ls3b{letter-spacing:9.726933pt;}
.ls2c{letter-spacing:9.738667pt;}
.ls16{letter-spacing:14.801600pt;}
.ls35{letter-spacing:16.766933pt;}
.ls1e{letter-spacing:20.236800pt;}
.ls3a{letter-spacing:21.915200pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.309333pt;}
.ws10{word-spacing:-16.012800pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.ws15{word-spacing:-14.895467pt;}
.ws8{word-spacing:-14.826667pt;}
.ws11{word-spacing:-14.678400pt;}
.wsc{word-spacing:-14.666667pt;}
.ws12{word-spacing:-14.654933pt;}
.ws1{word-spacing:-14.243840pt;}
.ws4{word-spacing:-14.233600pt;}
.ws2{word-spacing:-14.223360pt;}
.ws6{word-spacing:-13.047467pt;}
.ws9{word-spacing:-11.861333pt;}
.wsa{word-spacing:-5.685333pt;}
.wsb{word-spacing:-1.074133pt;}
.ws14{word-spacing:-0.070400pt;}
.ws13{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:4.224000pt;}
.wse{word-spacing:4.249600pt;}
._1c{margin-left:-16.320000pt;}
._1e{margin-left:-7.136427pt;}
._9{margin-left:-5.900800pt;}
._0{margin-left:-4.320000pt;}
._13{margin-left:-3.141333pt;}
._b{margin-left:-1.984640pt;}
._6{margin-left:-1.020800pt;}
._7{width:1.085333pt;}
._8{width:2.452267pt;}
._10{width:4.008533pt;}
._a{width:5.683627pt;}
._5{width:7.190400pt;}
._1b{width:8.771200pt;}
._1a{width:9.958400pt;}
._1d{width:10.896000pt;}
._e{width:11.813333pt;}
._f{width:13.419307pt;}
._2{width:14.361600pt;}
._17{width:16.439893pt;}
._11{width:17.948373pt;}
._4{width:19.641600pt;}
._19{width:20.650667pt;}
._18{width:21.658667pt;}
._21{width:22.587733pt;}
._3{width:23.548800pt;}
._14{width:24.885333pt;}
._12{width:25.786667pt;}
._15{width:26.842667pt;}
._20{width:27.794667pt;}
._16{width:28.861867pt;}
._1f{width:32.422400pt;}
._1{width:45.792000pt;}
._d{width:177.173333pt;}
._c{width:2543.352000pt;}
.fs7{font-size:39.111115pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:46.933333pt;}
.fs4{font-size:51.200000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.577467pt;}
.y19{bottom:6.640427pt;}
.y41{bottom:7.039600pt;}
.y2e{bottom:7.889867pt;}
.yad{bottom:8.400387pt;}
.yce{bottom:11.307093pt;}
.y114{bottom:13.973760pt;}
.y14{bottom:16.640427pt;}
.ye4{bottom:19.307093pt;}
.y18{bottom:22.640427pt;}
.y2d{bottom:23.889867pt;}
.y6a{bottom:24.640427pt;}
.yac{bottom:29.733720pt;}
.ycd{bottom:32.640427pt;}
.y105{bottom:35.307093pt;}
.y148{bottom:36.640427pt;}
.y13{bottom:37.973760pt;}
.y17{bottom:38.640427pt;}
.y2c{bottom:39.889867pt;}
.y81{bottom:40.640427pt;}
.y69{bottom:45.973760pt;}
.yab{bottom:51.067053pt;}
.y154{bottom:51.307093pt;}
.y15{bottom:53.359573pt;}
.ycc{bottom:53.973760pt;}
.y16{bottom:54.640427pt;}
.y147{bottom:55.307093pt;}
.y2b{bottom:55.889867pt;}
.y113{bottom:56.640427pt;}
.y12{bottom:59.307093pt;}
.y80{bottom:61.973760pt;}
.y68{bottom:67.307093pt;}
.y2a{bottom:71.889867pt;}
.yaa{bottom:72.400387pt;}
.y104{bottom:72.640427pt;}
.y3f{bottom:73.443600pt;}
.ycb{bottom:75.307093pt;}
.ye3{bottom:77.973760pt;}
.y11{bottom:80.640427pt;}
.y146{bottom:81.973760pt;}
.y7f{bottom:83.307093pt;}
.y82{bottom:86.266280pt;}
.y29{bottom:87.889867pt;}
.y67{bottom:88.640427pt;}
.y42{bottom:88.692907pt;}
.y3e{bottom:89.443600pt;}
.ya9{bottom:93.733720pt;}
.yca{bottom:96.640427pt;}
.ye2{bottom:99.307093pt;}
.y145{bottom:100.640427pt;}
.y10{bottom:101.973760pt;}
.y28{bottom:103.889867pt;}
.y7e{bottom:104.640427pt;}
.y3d{bottom:105.443600pt;}
.y66{bottom:109.973760pt;}
.y103{bottom:112.640427pt;}
.ya8{bottom:115.067053pt;}
.yc9{bottom:117.973760pt;}
.y27{bottom:119.889867pt;}
.ye1{bottom:120.640427pt;}
.y3{bottom:120.692907pt;}
.y3c{bottom:121.443600pt;}
.y13c{bottom:123.307093pt;}
.y7d{bottom:125.973760pt;}
.y144{bottom:127.307093pt;}
.yf{bottom:131.307093pt;}
.y102{bottom:133.973760pt;}
.y26{bottom:135.889867pt;}
.ya7{bottom:136.400387pt;}
.y125{bottom:136.640427pt;}
.y3b{bottom:137.443600pt;}
.yc8{bottom:139.307093pt;}
.ye0{bottom:141.973760pt;}
.y13b{bottom:144.640427pt;}
.y143{bottom:145.973760pt;}
.y7c{bottom:147.307093pt;}
.y153{bottom:149.973760pt;}
.y25{bottom:151.889867pt;}
.y65{bottom:152.640427pt;}
.y3a{bottom:153.443600pt;}
.y101{bottom:155.307093pt;}
.y124{bottom:157.973760pt;}
.yc7{bottom:160.640427pt;}
.ydf{bottom:163.307093pt;}
.y13a{bottom:165.973760pt;}
.y24{bottom:167.889867pt;}
.y7b{bottom:168.640427pt;}
.y39{bottom:169.443600pt;}
.y142{bottom:172.640427pt;}
.y64{bottom:173.973760pt;}
.ye{bottom:176.640427pt;}
.ya6{bottom:179.067053pt;}
.y123{bottom:179.307093pt;}
.yc6{bottom:181.973760pt;}
.y23{bottom:183.889867pt;}
.yde{bottom:184.640427pt;}
.y38{bottom:185.443600pt;}
.y139{bottom:187.307093pt;}
.y7a{bottom:189.973760pt;}
.yd{bottom:195.307093pt;}
.ya5{bottom:197.733720pt;}
.y100{bottom:197.973760pt;}
.y22{bottom:199.889867pt;}
.y122{bottom:200.640427pt;}
.y37{bottom:201.443600pt;}
.yc5{bottom:203.307093pt;}
.ydd{bottom:205.973760pt;}
.y141{bottom:207.307093pt;}
.y138{bottom:208.640427pt;}
.y79{bottom:211.307093pt;}
.yc{bottom:213.973760pt;}
.y21{bottom:215.889867pt;}
.ya4{bottom:216.400387pt;}
.y63{bottom:216.640427pt;}
.y36{bottom:217.443600pt;}
.yff{bottom:219.307093pt;}
.y121{bottom:221.973760pt;}
.yc4{bottom:224.640427pt;}
.y112{bottom:227.307093pt;}
.y137{bottom:229.973760pt;}
.y20{bottom:231.889867pt;}
.yb{bottom:232.640427pt;}
.y35{bottom:233.443600pt;}
.ya3{bottom:235.067053pt;}
.y62{bottom:237.973760pt;}
.yfe{bottom:240.640427pt;}
.y120{bottom:243.307093pt;}
.yc3{bottom:245.973760pt;}
.y1f{bottom:247.889867pt;}
.ydc{bottom:248.640427pt;}
.y34{bottom:249.443600pt;}
.y136{bottom:251.307093pt;}
.ya2{bottom:253.733720pt;}
.y78{bottom:253.973760pt;}
.y61{bottom:259.307093pt;}
.yfd{bottom:261.973760pt;}
.y1e{bottom:263.889867pt;}
.y11f{bottom:264.640427pt;}
.y33{bottom:265.443600pt;}
.yc2{bottom:267.307093pt;}
.y111{bottom:269.973760pt;}
.ya1{bottom:272.400387pt;}
.y135{bottom:272.640427pt;}
.y77{bottom:275.307093pt;}
.y1d{bottom:279.889867pt;}
.y60{bottom:280.640427pt;}
.y32{bottom:281.443600pt;}
.yfc{bottom:283.307093pt;}
.ydb{bottom:285.973760pt;}
.yc1{bottom:288.640427pt;}
.ya0{bottom:291.067053pt;}
.y110{bottom:291.307093pt;}
.y11e{bottom:293.973760pt;}
.y1c{bottom:295.889867pt;}
.y76{bottom:296.640427pt;}
.y31{bottom:297.443600pt;}
.y140{bottom:300.640427pt;}
.y5f{bottom:301.973760pt;}
.yda{bottom:304.640427pt;}
.y9f{bottom:309.733720pt;}
.yc0{bottom:309.973760pt;}
.y10f{bottom:312.640427pt;}
.y1b{bottom:313.223200pt;}
.y30{bottom:314.776933pt;}
.y134{bottom:315.307093pt;}
.y75{bottom:317.973760pt;}
.y152{bottom:320.640427pt;}
.y5e{bottom:323.307093pt;}
.yfb{bottom:325.973760pt;}
.y9e{bottom:328.400387pt;}
.ybf{bottom:331.307093pt;}
.y10e{bottom:333.973760pt;}
.y133{bottom:336.640427pt;}
.y74{bottom:339.307093pt;}
.yd9{bottom:341.973760pt;}
.y5d{bottom:344.640427pt;}
.y9d{bottom:347.067053pt;}
.yfa{bottom:347.307093pt;}
.y11d{bottom:349.973760pt;}
.ybe{bottom:352.640427pt;}
.y132{bottom:357.973760pt;}
.y73{bottom:360.640427pt;}
.y9c{bottom:365.733720pt;}
.y5c{bottom:365.973760pt;}
.yf9{bottom:368.640427pt;}
.ybd{bottom:373.973760pt;}
.y10d{bottom:376.640427pt;}
.y131{bottom:379.307093pt;}
.y72{bottom:381.973760pt;}
.y9b{bottom:384.400387pt;}
.y5b{bottom:387.307093pt;}
.yf8{bottom:389.973760pt;}
.y151{bottom:392.640427pt;}
.ybc{bottom:395.307093pt;}
.yd8{bottom:397.973760pt;}
.y130{bottom:400.640427pt;}
.y2f{bottom:402.556400pt;}
.y71{bottom:403.307093pt;}
.y1a{bottom:404.110133pt;}
.y5a{bottom:408.640427pt;}
.yf7{bottom:411.307093pt;}
.y10c{bottom:413.973760pt;}
.ybb{bottom:416.640427pt;}
.y150{bottom:419.307093pt;}
.y12f{bottom:421.973760pt;}
.y9a{bottom:424.400387pt;}
.y70{bottom:424.640427pt;}
.y11c{bottom:427.307093pt;}
.y59{bottom:429.973760pt;}
.yf6{bottom:432.640427pt;}
.yd7{bottom:435.307093pt;}
.y12e{bottom:443.307093pt;}
.y99{bottom:445.733720pt;}
.y6f{bottom:445.973760pt;}
.y11b{bottom:448.640427pt;}
.y58{bottom:451.307093pt;}
.yd6{bottom:453.973760pt;}
.y12d{bottom:464.640427pt;}
.y98{bottom:467.067053pt;}
.y6e{bottom:467.307093pt;}
.y10b{bottom:469.973760pt;}
.y57{bottom:472.640427pt;}
.y15a{bottom:480.640427pt;}
.y12c{bottom:485.973760pt;}
.y97{bottom:488.400387pt;}
.y6d{bottom:488.640427pt;}
.yba{bottom:491.307093pt;}
.y56{bottom:493.973760pt;}
.yf5{bottom:496.640427pt;}
.y10a{bottom:499.307093pt;}
.y12b{bottom:507.307093pt;}
.y96{bottom:509.733720pt;}
.yd5{bottom:509.973760pt;}
.yb9{bottom:512.640427pt;}
.y55{bottom:515.307093pt;}
.y6c{bottom:517.973760pt;}
.y159{bottom:525.973760pt;}
.yd4{bottom:528.640427pt;}
.y95{bottom:531.067053pt;}
.yb8{bottom:533.973760pt;}
.y54{bottom:536.640427pt;}
.yd3{bottom:547.307093pt;}
.y12a{bottom:549.973760pt;}
.y94{bottom:552.400387pt;}
.yf4{bottom:552.640427pt;}
.y6b{bottom:555.307093pt;}
.y53{bottom:557.973760pt;}
.y14f{bottom:563.307093pt;}
.yd2{bottom:565.973760pt;}
.yf3{bottom:571.307093pt;}
.y93{bottom:573.733720pt;}
.yb7{bottom:576.640427pt;}
.y52{bottom:579.307093pt;}
.yd1{bottom:584.640427pt;}
.y14e{bottom:589.973760pt;}
.y129{bottom:592.640427pt;}
.y92{bottom:595.067053pt;}
.y11a{bottom:595.307093pt;}
.yb6{bottom:597.973760pt;}
.y51{bottom:600.640427pt;}
.yd0{bottom:603.307093pt;}
.y14d{bottom:608.640427pt;}
.y119{bottom:613.973760pt;}
.y91{bottom:616.400387pt;}
.yb5{bottom:619.307093pt;}
.y50{bottom:621.973760pt;}
.y158{bottom:624.640427pt;}
.y118{bottom:632.640427pt;}
.yf2{bottom:635.307093pt;}
.ya{bottom:636.640427pt;}
.y90{bottom:637.733720pt;}
.yb4{bottom:640.640427pt;}
.y4f{bottom:643.307093pt;}
.ycf{bottom:648.640427pt;}
.y117{bottom:651.307093pt;}
.yf1{bottom:656.640427pt;}
.y8f{bottom:659.067053pt;}
.yb3{bottom:661.973760pt;}
.y9{bottom:664.640427pt;}
.y116{bottom:669.973760pt;}
.y13f{bottom:675.307093pt;}
.yf0{bottom:677.973760pt;}
.y8e{bottom:680.400387pt;}
.yb2{bottom:683.307093pt;}
.y4e{bottom:685.973760pt;}
.y115{bottom:688.640427pt;}
.y8{bottom:693.973760pt;}
.yef{bottom:699.307093pt;}
.y8d{bottom:701.733720pt;}
.yb1{bottom:704.640427pt;}
.y4d{bottom:707.307093pt;}
.y13e{bottom:712.640427pt;}
.y14c{bottom:715.307093pt;}
.yee{bottom:720.640427pt;}
.y8c{bottom:723.067053pt;}
.y7{bottom:723.307093pt;}
.yb0{bottom:725.973760pt;}
.y4c{bottom:728.640427pt;}
.y13d{bottom:731.307093pt;}
.y157{bottom:733.973760pt;}
.yed{bottom:741.973760pt;}
.y8b{bottom:744.400387pt;}
.y109{bottom:744.640427pt;}
.yaf{bottom:747.307093pt;}
.y4b{bottom:749.973760pt;}
.y6{bottom:760.640427pt;}
.yec{bottom:763.307093pt;}
.y8a{bottom:765.733720pt;}
.yae{bottom:768.640427pt;}
.y4a{bottom:771.307093pt;}
.y128{bottom:773.973760pt;}
.y108{bottom:781.973760pt;}
.yeb{bottom:784.640427pt;}
.y89{bottom:787.067053pt;}
.y14b{bottom:787.307093pt;}
.y5{bottom:789.973760pt;}
.y49{bottom:792.640427pt;}
.y107{bottom:800.640427pt;}
.yea{bottom:805.973760pt;}
.y88{bottom:808.400387pt;}
.y127{bottom:811.307093pt;}
.y48{bottom:813.973760pt;}
.y4{bottom:819.307093pt;}
.y156{bottom:824.640427pt;}
.ye9{bottom:827.307093pt;}
.y87{bottom:829.733720pt;}
.y14a{bottom:832.640427pt;}
.y47{bottom:835.307093pt;}
.y106{bottom:837.973760pt;}
.y126{bottom:848.640427pt;}
.y86{bottom:851.067053pt;}
.y155{bottom:851.307093pt;}
.y46{bottom:856.640427pt;}
.y149{bottom:859.307093pt;}
.ye8{bottom:867.307093pt;}
.y85{bottom:872.400387pt;}
.y45{bottom:877.973760pt;}
.ye7{bottom:885.973760pt;}
.y84{bottom:893.733720pt;}
.y44{bottom:899.307093pt;}
.ye6{bottom:904.640427pt;}
.y43{bottom:920.640427pt;}
.y83{bottom:923.067053pt;}
.ye5{bottom:923.307093pt;}
.y40{bottom:976.504400pt;}
.y1{bottom:1056.089200pt;}
.h1{height:22.666667pt;}
.he{height:24.666667pt;}
.hd{height:38.400000pt;}
.h11{height:38.666667pt;}
.h2{height:39.413333pt;}
.h17{height:43.140625pt;}
.hf{height:44.000000pt;}
.h14{height:45.747396pt;}
.h7{height:46.250000pt;}
.h12{height:46.468750pt;}
.h5{height:47.062500pt;}
.hb{height:48.000000pt;}
.h16{height:49.906250pt;}
.h6{height:52.736979pt;}
.h8{height:57.531250pt;}
.h9{height:70.666667pt;}
.h4{height:72.000000pt;}
.ha{height:333.072933pt;}
.hc{height:334.666667pt;}
.h3{height:909.640400pt;}
.h15{height:942.007467pt;}
.h10{height:942.374133pt;}
.h13{height:944.800800pt;}
.h0{height:1122.666667pt;}
.w8{width:32.656000pt;}
.w2{width:108.786667pt;}
.w1{width:219.973333pt;}
.w7{width:275.533867pt;}
.w5{width:301.508667pt;}
.w6{width:305.729467pt;}
.we{width:650.219600pt;}
.w9{width:650.953067pt;}
.wa{width:651.017067pt;}
.wd{width:652.154133pt;}
.wb{width:653.251467pt;}
.w3{width:654.152267pt;}
.w4{width:655.771333pt;}
.wc{width:658.152267pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:3.742773pt;}
.xa{left:5.291733pt;}
.x5{left:6.409440pt;}
.x13{left:8.409440pt;}
.xe{left:23.476507pt;}
.x7{left:25.076107pt;}
.x16{left:27.076107pt;}
.x17{left:32.409440pt;}
.x10{left:42.143173pt;}
.x15{left:45.742773pt;}
.x11{left:52.809840pt;}
.xf{left:60.809840pt;}
.x14{left:64.409440pt;}
.x12{left:67.590560pt;}
.x4{left:69.590560pt;}
.xd{left:71.190160pt;}
.x1{left:72.257227pt;}
.x8{left:88.895547pt;}
.xc{left:186.641600pt;}
.x6{left:214.409440pt;}
.x3{left:342.273333pt;}
.x9{left:398.708267pt;}
.xb{left:443.380267pt;}
}




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