
    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_6ef6208a5abfeaca132a7553.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_93eb88c9f1449baa3c41656c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_165bbc3be31f4f316c65ee82.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_b3d127ffbfa5139df63389c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_875f9988e012e5d77c9da171.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_5ab0f412ab0ec6b0d3841398.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_f80f56556a4afadb1ffb8eab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_47f243684a35f020155cbbd7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3e1113653b3cce5c8b1e5fd4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.062988;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_368062a721eb1eee93f92eae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.062988;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_fb362c66c54fcb5e26094f36.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_28b83800c23216dac6aabf19.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.123047;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:ffe;src:url('chunks/assets/font_c237ddba9b5c72344c763b17.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.123047;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:fff;src:url('chunks/assets/font_040b53784252ed2b01e3667e.woff2')format("woff");}.fff{font-family:fff;line-height:1.201172;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:ff10;src:url('chunks/assets/font_23418b47efa80c5eee90c078.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937500;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:ff11;src:url('chunks/assets/font_129add5171c383bbfd9adf4f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.201172;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:ff12;src:url('chunks/assets/font_d0ff30a86490cd3d18ba91ee.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.130371;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:ff13;src:url('chunks/assets/font_d6f526779b9a926442d2f867.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.056152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:27.360000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls2e{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.304800px;}
.ls9{letter-spacing:-0.226200px;}
.ls1d{letter-spacing:-0.145200px;}
.lsf{letter-spacing:-0.127200px;}
.ls24{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.005040px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.015120px;}
.ls26{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.052560px;}
.lse{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.206400px;}
.ls2c{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.235200px;}
.lsa{letter-spacing:0.238200px;}
.lsb{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.440000px;}
.ls13{letter-spacing:2.880000px;}
.ls19{letter-spacing:3.600000px;}
.ls23{letter-spacing:3.780000px;}
.ls12{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.760000px;}
.ls16{letter-spacing:7.920000px;}
.ls28{letter-spacing:9.360000px;}
.ls1a{letter-spacing:15.120000px;}
.ls21{letter-spacing:16.560000px;}
.ls20{letter-spacing:19.440000px;}
.ls29{letter-spacing:20.160000px;}
.ls18{letter-spacing:21.600000px;}
.ls22{letter-spacing:23.040000px;}
.ls2d{letter-spacing:26.640000px;}
.ls25{letter-spacing:43.920000px;}
.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;}
}
.ws1{word-spacing:-27.412440px;}
.ws10{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.568000px;}
.ws13{word-spacing:-17.424000px;}
.ws12{word-spacing:-17.352000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.992560px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.934960px;}
.wsf{word-spacing:-14.886720px;}
.ws5{word-spacing:-13.505760px;}
.ws4{word-spacing:-11.755200px;}
.wsb{word-spacing:-10.440000px;}
.ws0{word-spacing:-10.213800px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-8.519760px;}
._6{margin-left:-6.860160px;}
._7{margin-left:-5.583120px;}
._e{margin-left:-3.956640px;}
._8{margin-left:-2.603520px;}
._2{margin-left:-1.419840px;}
._0{width:1.169280px;}
._5{width:2.353440px;}
._b{width:3.449280px;}
._a{width:5.258880px;}
._9{width:7.051680px;}
._11{width:8.676960px;}
._10{width:9.979920px;}
._f{width:11.772720px;}
._16{width:12.795840px;}
._18{width:14.400000px;}
._19{width:16.311600px;}
._c{width:17.879760px;}
._d{width:18.973440px;}
._12{width:20.597520px;}
._1d{width:21.888000px;}
._1e{width:23.112000px;}
._1f{width:24.408000px;}
._23{width:26.856000px;}
._20{width:28.728000px;}
._1c{width:30.960000px;}
._25{width:32.184000px;}
._24{width:33.336000px;}
._17{width:36.288000px;}
._27{width:38.592000px;}
._26{width:42.192000px;}
._21{width:43.680000px;}
._29{width:69.624000px;}
._28{width:70.920000px;}
._4{width:75.487200px;}
._22{width:90.084000px;}
._1b{width:99.055200px;}
._1{width:343.147200px;}
._3{width:423.517920px;}
._14{width:1050.407040px;}
._15{width:1236.900000px;}
._13{width:2163.516000px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(116,116,116);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.360000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:19.800000px;}
.y67{bottom:21.960000px;}
.y16f{bottom:22.500000px;}
.y177{bottom:22.530000px;}
.y3b{bottom:22.680000px;}
.y9{bottom:23.940000px;}
.y68{bottom:24.480000px;}
.y3c{bottom:27.180000px;}
.y16e{bottom:42.840000px;}
.y176{bottom:42.870000px;}
.y174{bottom:43.020000px;}
.y7{bottom:57.960000px;}
.y16d{bottom:63.180000px;}
.y3a{bottom:78.876000px;}
.y6{bottom:80.136000px;}
.y16c{bottom:83.340000px;}
.y16b{bottom:103.680000px;}
.y171{bottom:103.725000px;}
.y16a{bottom:123.840000px;}
.y65{bottom:130.716000px;}
.y35{bottom:131.436000px;}
.y64{bottom:135.936000px;}
.y14c{bottom:137.736000px;}
.y168{bottom:144.936000px;}
.y163{bottom:146.556000px;}
.y63{bottom:147.996000px;}
.y34{bottom:148.356000px;}
.y9b{bottom:153.210000px;}
.y14b{bottom:158.070000px;}
.y33{bottom:165.090000px;}
.y12b{bottom:166.890000px;}
.y9a{bottom:170.310000px;}
.y14a{bottom:178.230000px;}
.y32{bottom:182.010000px;}
.y62{bottom:182.370000px;}
.y167{bottom:183.090000px;}
.y13a{bottom:184.170000px;}
.y162{bottom:185.250000px;}
.y31{bottom:185.790000px;}
.y61{bottom:187.590000px;}
.y149{bottom:198.570000px;}
.y60{bottom:199.650000px;}
.y30{bottom:200.010000px;}
.yca{bottom:201.450000px;}
.y99{bottom:204.870000px;}
.y5f{bottom:216.930000px;}
.yff{bottom:218.730000px;}
.y12e{bottom:221.070000px;}
.y12a{bottom:221.430000px;}
.y5e{bottom:222.150000px;}
.y161{bottom:223.950000px;}
.y98{bottom:234.210000px;}
.y5d{bottom:236.010000px;}
.y148{bottom:236.730000px;}
.y97{bottom:239.430000px;}
.yc9{bottom:241.230000px;}
.y129{bottom:241.770000px;}
.y2f{bottom:250.050000px;}
.y96{bottom:251.490000px;}
.y115{bottom:256.710000px;}
.y139{bottom:256.890000px;}
.y147{bottom:257.070000px;}
.y166{bottom:259.590000px;}
.yc8{bottom:261.570000px;}
.y128{bottom:261.930000px;}
.y160{bottom:262.650000px;}
.y2e{bottom:268.230000px;}
.y95{bottom:268.590000px;}
.y114{bottom:270.390000px;}
.y94{bottom:273.810000px;}
.ye4{bottom:277.230000px;}
.y93{bottom:285.870000px;}
.y2d{bottom:286.590000px;}
.y92{bottom:291.090000px;}
.y138{bottom:295.230000px;}
.y146{bottom:297.570000px;}
.yfe{bottom:297.930000px;}
.yc7{bottom:299.730000px;}
.y127{bottom:300.090000px;}
.y15f{bottom:301.350000px;}
.y91{bottom:303.150000px;}
.y2c{bottom:304.950000px;}
.y5b{bottom:306.030000px;}
.y90{bottom:308.370000px;}
.y5c{bottom:312.870000px;}
.ye3{bottom:315.390000px;}
.y145{bottom:317.775000px;}
.yfd{bottom:318.315000px;}
.y8f{bottom:320.475000px;}
.y2b{bottom:323.355000px;}
.y8e{bottom:325.695000px;}
.y5a{bottom:326.415000px;}
.y113{bottom:331.635000px;}
.y17c{bottom:332.355000px;}
.y137{bottom:333.435000px;}
.yc6{bottom:337.935000px;}
.y144{bottom:338.115000px;}
.yfc{bottom:338.475000px;}
.y8d{bottom:339.555000px;}
.y15e{bottom:340.635000px;}
.y2a{bottom:341.535000px;}
.y59{bottom:346.575000px;}
.y112{bottom:351.975000px;}
.ye2{bottom:353.775000px;}
.y143{bottom:358.275000px;}
.y126{bottom:358.635000px;}
.y29{bottom:359.895000px;}
.y136{bottom:360.615000px;}
.y15d{bottom:360.975000px;}
.y8b{bottom:365.475000px;}
.y58{bottom:366.915000px;}
.y17b{bottom:370.695000px;}
.y8c{bottom:372.315000px;}
.ye1{bottom:374.115000px;}
.yc5{bottom:376.275000px;}
.yfb{bottom:376.635000px;}
.y28{bottom:378.255000px;}
.y15c{bottom:381.315000px;}
.y89{bottom:385.815000px;}
.y57{bottom:387.075000px;}
.yb0{bottom:389.235000px;}
.y111{bottom:390.135000px;}
.y8a{bottom:392.655000px;}
.ye0{bottom:394.275000px;}
.yb1{bottom:396.075000px;}
.y27{bottom:396.435000px;}
.yc4{bottom:396.615000px;}
.yfa{bottom:396.975000px;}
.y15b{bottom:401.475000px;}
.y88{bottom:405.975000px;}
.y17a{bottom:408.855000px;}
.y12d{bottom:414.435000px;}
.ydf{bottom:414.615000px;}
.y26{bottom:414.795000px;}
.yc3{bottom:416.775000px;}
.y15a{bottom:421.815000px;}
.y55{bottom:425.235000px;}
.yaf{bottom:427.575000px;}
.y110{bottom:428.475000px;}
.y56{bottom:432.075000px;}
.y25{bottom:433.155000px;}
.yde{bottom:434.775000px;}
.yf9{bottom:435.135000px;}
.y142{bottom:437.115000px;}
.y159{bottom:441.975000px;}
.y86{bottom:444.135000px;}
.y54{bottom:445.575000px;}
.y179{bottom:447.195000px;}
.y10f{bottom:448.815000px;}
.y87{bottom:450.975000px;}
.y24{bottom:451.515000px;}
.yc2{bottom:454.935000px;}
.ydc{bottom:455.115000px;}
.y125{bottom:455.475000px;}
.y141{bottom:457.275000px;}
.ydd{bottom:461.955000px;}
.y158{bottom:462.315000px;}
.y178{bottom:462.855000px;}
.y85{bottom:464.475000px;}
.yae{bottom:465.735000px;}
.y53{bottom:465.915000px;}
.y10e{bottom:468.975000px;}
.y23{bottom:469.695000px;}
.yf8{bottom:473.475000px;}
.yc1{bottom:475.275000px;}
.y124{bottom:475.815000px;}
.y140{bottom:477.615000px;}
.y157{bottom:482.475000px;}
.y84{bottom:484.815000px;}
.y52{bottom:486.075000px;}
.y22{bottom:488.055000px;}
.y10c{bottom:489.315000px;}
.y134{bottom:495.615000px;}
.y123{bottom:495.975000px;}
.y10d{bottom:496.155000px;}
.y135{bottom:502.455000px;}
.y156{bottom:502.815000px;}
.y83{bottom:504.975000px;}
.y21{bottom:506.415000px;}
.y10b{bottom:509.475000px;}
.yf7{bottom:511.635000px;}
.ydb{bottom:512.895000px;}
.yad{bottom:513.255000px;}
.yc0{bottom:513.435000px;}
.y165{bottom:513.975000px;}
.y13f{bottom:515.055000px;}
.y133{bottom:515.775000px;}
.y121{bottom:516.315000px;}
.y122{bottom:523.155000px;}
.y20{bottom:524.595000px;}
.y82{bottom:525.315000px;}
.yac{bottom:526.575000px;}
.yf6{bottom:531.975000px;}
.y132{bottom:536.115000px;}
.y120{bottom:536.475000px;}
.y155{bottom:540.975000px;}
.y1f{bottom:542.955000px;}
.y51{bottom:543.855000px;}
.y81{bottom:545.475000px;}
.yab{bottom:546.915000px;}
.y10a{bottom:547.635000px;}
.ybf{bottom:551.775000px;}
.yda{bottom:552.135000px;}
.yf4{bottom:552.315000px;}
.y13e{bottom:554.475000px;}
.yf5{bottom:559.155000px;}
.y1e{bottom:561.315000px;}
.y175{bottom:562.575000px;}
.y80{bottom:565.815000px;}
.ya9{bottom:567.075000px;}
.y108{bottom:567.975000px;}
.yf3{bottom:572.505000px;}
.y131{bottom:573.585000px;}
.yaa{bottom:573.945000px;}
.y11f{bottom:574.665000px;}
.y109{bottom:574.845000px;}
.y154{bottom:581.505000px;}
.y50{bottom:583.305000px;}
.ya7{bottom:587.445000px;}
.y107{bottom:588.345000px;}
.ybe{bottom:589.965000px;}
.yd9{bottom:590.505000px;}
.yf2{bottom:592.845000px;}
.ya8{bottom:594.285000px;}
.y11e{bottom:595.005000px;}
.y1d{bottom:597.525000px;}
.y153{bottom:601.845000px;}
.y4f{bottom:603.645000px;}
.y7e{bottom:604.005000px;}
.ya6{bottom:607.605000px;}
.y106{bottom:608.505000px;}
.ybd{bottom:610.305000px;}
.y7f{bottom:610.845000px;}
.y130{bottom:613.005000px;}
.y1c{bottom:615.885000px;}
.y173{bottom:621.825000px;}
.y152{bottom:622.005000px;}
.y4e{bottom:623.805000px;}
.y7d{bottom:624.345000px;}
.ya5{bottom:627.945000px;}
.yd8{bottom:628.665000px;}
.y105{bottom:628.845000px;}
.yf1{bottom:631.005000px;}
.y11d{bottom:633.165000px;}
.y12f{bottom:633.345000px;}
.y1b{bottom:634.245000px;}
.y151{bottom:642.345000px;}
.y4d{bottom:644.145000px;}
.y7c{bottom:644.505000px;}
.ybc{bottom:648.465000px;}
.y13d{bottom:651.165000px;}
.yf0{bottom:651.345000px;}
.y1a{bottom:652.605000px;}
.y150{bottom:662.505000px;}
.y4c{bottom:664.305000px;}
.y7b{bottom:664.845000px;}
.ya4{bottom:665.385000px;}
.yd7{bottom:667.005000px;}
.ybb{bottom:668.805000px;}
.y19{bottom:670.965000px;}
.y11c{bottom:671.505000px;}
.y104{bottom:673.845000px;}
.y172{bottom:681.045000px;}
.y14f{bottom:682.845000px;}
.y4a{bottom:684.645000px;}
.y7a{bottom:685.005000px;}
.yd6{bottom:687.345000px;}
.y18{bottom:689.145000px;}
.yef{bottom:689.505000px;}
.y4b{bottom:691.485000px;}
.y14e{bottom:703.005000px;}
.y49{bottom:704.805000px;}
.yba{bottom:706.965000px;}
.y17{bottom:707.505000px;}
.y11b{bottom:709.665000px;}
.y13c{bottom:709.845000px;}
.yd5{bottom:714.345000px;}
.y170{bottom:720.105000px;}
.y78{bottom:723.165000px;}
.y14d{bottom:723.345000px;}
.ya3{bottom:725.145000px;}
.y16{bottom:725.865000px;}
.yee{bottom:727.665000px;}
.yd4{bottom:727.845000px;}
.y79{bottom:730.005000px;}
.y11a{bottom:736.845000px;}
.y48{bottom:742.965000px;}
.y76{bottom:743.505000px;}
.y15{bottom:744.045000px;}
.ya2{bottom:745.305000px;}
.yd2{bottom:748.005000px;}
.y77{bottom:750.345000px;}
.yd3{bottom:754.845000px;}
.y14{bottom:762.405000px;}
.y47{bottom:763.305000px;}
.y75{bottom:763.845000px;}
.yed{bottom:766.005000px;}
.y164{bottom:768.165000px;}
.y103{bottom:768.345000px;}
.y119{bottom:770.505000px;}
.y13{bottom:780.765000px;}
.ya1{bottom:782.925000px;}
.yb9{bottom:783.465000px;}
.y46{bottom:783.645000px;}
.y74{bottom:784.005000px;}
.yd1{bottom:786.165000px;}
.yec{bottom:786.345000px;}
.y101{bottom:788.505000px;}
.y118{bottom:790.845000px;}
.y102{bottom:795.345000px;}
.y12{bottom:799.125000px;}
.y45{bottom:803.805000px;}
.y73{bottom:804.345000px;}
.yd0{bottom:806.505000px;}
.y100{bottom:808.845000px;}
.yb8{bottom:810.645000px;}
.y11{bottom:817.305000px;}
.y9f{bottom:822.210000px;}
.yb7{bottom:824.190000px;}
.y12c{bottom:826.710000px;}
.ycf{bottom:826.890000px;}
.ya0{bottom:829.050000px;}
.y10{bottom:835.710000px;}
.y169{bottom:840.210000px;}
.y44{bottom:842.010000px;}
.y71{bottom:842.550000px;}
.yb6{bottom:844.350000px;}
.yce{bottom:847.050000px;}
.y72{bottom:849.390000px;}
.y43{bottom:862.350000px;}
.y70{bottom:862.890000px;}
.yb5{bottom:864.690000px;}
.yea{bottom:867.390000px;}
.yf{bottom:871.350000px;}
.yeb{bottom:874.230000px;}
.y42{bottom:882.690000px;}
.y6f{bottom:883.050000px;}
.yb4{bottom:884.850000px;}
.ycd{bottom:885.210000px;}
.y117{bottom:887.550000px;}
.y41{bottom:902.850000px;}
.y9e{bottom:903.390000px;}
.yd{bottom:904.290000px;}
.yb3{bottom:905.190000px;}
.ye8{bottom:905.550000px;}
.ye{bottom:911.130000px;}
.ye9{bottom:912.390000px;}
.y6d{bottom:921.210000px;}
.y40{bottom:923.190000px;}
.ycc{bottom:923.550000px;}
.y116{bottom:925.710000px;}
.ye7{bottom:925.890000px;}
.y6e{bottom:928.050000px;}
.y6b{bottom:941.550000px;}
.yb2{bottom:942.630000px;}
.y3f{bottom:943.350000px;}
.yc{bottom:943.710000px;}
.y13b{bottom:943.890000px;}
.y6c{bottom:948.390000px;}
.ycb{bottom:961.710000px;}
.y69{bottom:961.890000px;}
.y3e{bottom:963.690000px;}
.ye6{bottom:964.050000px;}
.y6a{bottom:968.730000px;}
.yb{bottom:982.050000px;}
.y9d{bottom:988.890000px;}
.y3d{bottom:1001.130000px;}
.ye5{bottom:1002.210000px;}
.ya{bottom:1002.390000px;}
.y9c{bottom:1009.230000px;}
.y66{bottom:1029.210000px;}
.y39{bottom:1048.290000px;}
.y38{bottom:1060.350000px;}
.y5{bottom:1061.070000px;}
.y37{bottom:1072.440000px;}
.y4{bottom:1080.180000px;}
.y36{bottom:1082.340000px;}
.y3{bottom:1092.420000px;}
.y2{bottom:1104.480000px;}
.y1{bottom:1118.160000px;}
.he{height:33.431484px;}
.h19{height:33.685312px;}
.h15{height:34.038984px;}
.ha{height:35.357344px;}
.h14{height:35.907891px;}
.h2{height:36.560391px;}
.h1c{height:38.340000px;}
.h17{height:39.073359px;}
.hb{height:41.479805px;}
.h10{height:42.233555px;}
.hf{height:51.385430px;}
.h16{height:52.319180px;}
.h5{height:52.596000px;}
.h18{height:53.136000px;}
.h12{height:55.836000px;}
.h11{height:56.900391px;}
.h9{height:58.078125px;}
.h1d{height:58.500000px;}
.h1e{height:58.536000px;}
.hd{height:59.439023px;}
.h4{height:60.855469px;}
.h7{height:60.960938px;}
.hc{height:61.189805px;}
.h1{height:61.734375px;}
.h13{height:61.910156px;}
.h8{height:62.717344px;}
.h3{height:63.035156px;}
.h1f{height:99.000000px;}
.h1b{height:119.196000px;}
.h6{height:119.594180px;}
.h1a{height:139.500000px;}
.h0{height:1188.000000px;}
.w2{width:61.776000px;}
.w4{width:63.756000px;}
.w5{width:64.836000px;}
.w6{width:330.690000px;}
.w7{width:330.735000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x52{left:8.100000px;}
.x3{left:15.480000px;}
.xf{left:16.560000px;}
.x1{left:127.655986px;}
.xc{left:132.155986px;}
.x2b{left:137.375986px;}
.xa{left:160.949986px;}
.x4a{left:171.389986px;}
.x4{left:175.349986px;}
.xd{left:177.149986px;}
.x49{left:186.509973px;}
.x27{left:196.589973px;}
.x28{left:206.309986px;}
.x3f{left:217.289973px;}
.x6{left:220.169986px;}
.x40{left:227.009986px;}
.x1e{left:232.589973px;}
.x42{left:236.189986px;}
.x1f{left:237.449986px;}
.x38{left:246.269986px;}
.x34{left:265.709973px;}
.x12{left:270.569973px;}
.x13{left:275.429986px;}
.x4b{left:278.849973px;}
.x1a{left:289.514973px;}
.x4e{left:290.954973px;}
.x1b{left:294.374986px;}
.x4f{left:300.674986px;}
.x14{left:315.254973px;}
.x15{left:320.114986px;}
.x2c{left:331.814973px;}
.x18{left:335.234973px;}
.x19{left:340.094986px;}
.x2d{left:341.534986px;}
.xb{left:343.694986px;}
.x5{left:348.914986px;}
.x22{left:353.774973px;}
.x10{left:357.374973px;}
.x25{left:360.794973px;}
.x11{left:362.234986px;}
.x23{left:363.494986px;}
.x3d{left:368.894973px;}
.x26{left:370.514986px;}
.x3e{left:378.614986px;}
.x7{left:379.694986px;}
.x35{left:393.014973px;}
.x36{left:402.734986px;}
.x39{left:439.814973px;}
.x4c{left:441.434973px;}
.x3a{left:449.534986px;}
.x4d{left:451.154986px;}
.x53{left:459.075000px;}
.x20{left:489.164973px;}
.x21{left:498.884986px;}
.x16{left:500.504973px;}
.x17{left:505.364986px;}
.x45{left:528.944973px;}
.x8{left:534.164973px;}
.x9{left:538.304986px;}
.x24{left:547.304973px;}
.x37{left:548.924986px;}
.x1c{left:551.624973px;}
.x1d{left:556.484986px;}
.x2e{left:621.104973px;}
.x43{left:622.904973px;}
.x48{left:626.504973px;}
.x2f{left:630.824986px;}
.x44{left:632.624986px;}
.x46{left:635.684973px;}
.x47{left:645.404986px;}
.x50{left:650.264973px;}
.x30{left:651.524973px;}
.x51{left:659.984986px;}
.x31{left:661.244986px;}
.x41{left:670.244986px;}
.x32{left:696.209973px;}
.x33{left:705.929986px;}
.x29{left:736.169973px;}
.x2a{left:745.889986px;}
.x3b{left:780.809973px;}
.x3c{left:790.529986px;}
.x2{left:830.490000px;}
.xe{left:832.830000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:24.320000pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls2e{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.270933pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1d{letter-spacing:-0.129067pt;}
.lsf{letter-spacing:-0.113067pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.004480pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.013440pt;}
.ls26{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.046720pt;}
.lse{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.209067pt;}
.lsa{letter-spacing:0.211733pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls13{letter-spacing:2.560000pt;}
.ls19{letter-spacing:3.200000pt;}
.ls23{letter-spacing:3.360000pt;}
.ls12{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls16{letter-spacing:7.040000pt;}
.ls28{letter-spacing:8.320000pt;}
.ls1a{letter-spacing:13.440000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls29{letter-spacing:17.920000pt;}
.ls18{letter-spacing:19.200000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls2d{letter-spacing:23.680000pt;}
.ls25{letter-spacing:39.040000pt;}
.ws1{word-spacing:-24.366613pt;}
.ws10{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.616000pt;}
.ws13{word-spacing:-15.488000pt;}
.ws12{word-spacing:-15.424000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.326720pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.275520pt;}
.wsf{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.005120pt;}
.ws4{word-spacing:-10.449067pt;}
.wsb{word-spacing:-9.280000pt;}
.ws0{word-spacing:-9.078933pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-7.573120pt;}
._6{margin-left:-6.097920pt;}
._7{margin-left:-4.962773pt;}
._e{margin-left:-3.517013pt;}
._8{margin-left:-2.314240pt;}
._2{margin-left:-1.262080pt;}
._0{width:1.039360pt;}
._5{width:2.091947pt;}
._b{width:3.066027pt;}
._a{width:4.674560pt;}
._9{width:6.268160pt;}
._11{width:7.712853pt;}
._10{width:8.871040pt;}
._f{width:10.464640pt;}
._16{width:11.374080pt;}
._18{width:12.800000pt;}
._19{width:14.499200pt;}
._c{width:15.893120pt;}
._d{width:16.865280pt;}
._12{width:18.308907pt;}
._1d{width:19.456000pt;}
._1e{width:20.544000pt;}
._1f{width:21.696000pt;}
._23{width:23.872000pt;}
._20{width:25.536000pt;}
._1c{width:27.520000pt;}
._25{width:28.608000pt;}
._24{width:29.632000pt;}
._17{width:32.256000pt;}
._27{width:34.304000pt;}
._26{width:37.504000pt;}
._21{width:38.826667pt;}
._29{width:61.888000pt;}
._28{width:63.040000pt;}
._4{width:67.099733pt;}
._22{width:80.074667pt;}
._1b{width:88.049067pt;}
._1{width:305.019733pt;}
._3{width:376.460373pt;}
._14{width:933.695147pt;}
._15{width:1099.466667pt;}
._13{width:1923.125333pt;}
.fs6{font-size:24.320000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:17.600000pt;}
.y67{bottom:19.520000pt;}
.y16f{bottom:20.000000pt;}
.y177{bottom:20.026667pt;}
.y3b{bottom:20.160000pt;}
.y9{bottom:21.280000pt;}
.y68{bottom:21.760000pt;}
.y3c{bottom:24.160000pt;}
.y16e{bottom:38.080000pt;}
.y176{bottom:38.106667pt;}
.y174{bottom:38.240000pt;}
.y7{bottom:51.520000pt;}
.y16d{bottom:56.160000pt;}
.y3a{bottom:70.112000pt;}
.y6{bottom:71.232000pt;}
.y16c{bottom:74.080000pt;}
.y16b{bottom:92.160000pt;}
.y171{bottom:92.200000pt;}
.y16a{bottom:110.080000pt;}
.y65{bottom:116.192000pt;}
.y35{bottom:116.832000pt;}
.y64{bottom:120.832000pt;}
.y14c{bottom:122.432000pt;}
.y168{bottom:128.832000pt;}
.y163{bottom:130.272000pt;}
.y63{bottom:131.552000pt;}
.y34{bottom:131.872000pt;}
.y9b{bottom:136.186667pt;}
.y14b{bottom:140.506667pt;}
.y33{bottom:146.746667pt;}
.y12b{bottom:148.346667pt;}
.y9a{bottom:151.386667pt;}
.y14a{bottom:158.426667pt;}
.y32{bottom:161.786667pt;}
.y62{bottom:162.106667pt;}
.y167{bottom:162.746667pt;}
.y13a{bottom:163.706667pt;}
.y162{bottom:164.666667pt;}
.y31{bottom:165.146667pt;}
.y61{bottom:166.746667pt;}
.y149{bottom:176.506667pt;}
.y60{bottom:177.466667pt;}
.y30{bottom:177.786667pt;}
.yca{bottom:179.066667pt;}
.y99{bottom:182.106667pt;}
.y5f{bottom:192.826667pt;}
.yff{bottom:194.426667pt;}
.y12e{bottom:196.506667pt;}
.y12a{bottom:196.826667pt;}
.y5e{bottom:197.466667pt;}
.y161{bottom:199.066667pt;}
.y98{bottom:208.186667pt;}
.y5d{bottom:209.786667pt;}
.y148{bottom:210.426667pt;}
.y97{bottom:212.826667pt;}
.yc9{bottom:214.426667pt;}
.y129{bottom:214.906667pt;}
.y2f{bottom:222.266667pt;}
.y96{bottom:223.546667pt;}
.y115{bottom:228.186667pt;}
.y139{bottom:228.346667pt;}
.y147{bottom:228.506667pt;}
.y166{bottom:230.746667pt;}
.yc8{bottom:232.506667pt;}
.y128{bottom:232.826667pt;}
.y160{bottom:233.466667pt;}
.y2e{bottom:238.426667pt;}
.y95{bottom:238.746667pt;}
.y114{bottom:240.346667pt;}
.y94{bottom:243.386667pt;}
.ye4{bottom:246.426667pt;}
.y93{bottom:254.106667pt;}
.y2d{bottom:254.746667pt;}
.y92{bottom:258.746667pt;}
.y138{bottom:262.426667pt;}
.y146{bottom:264.506667pt;}
.yfe{bottom:264.826667pt;}
.yc7{bottom:266.426667pt;}
.y127{bottom:266.746667pt;}
.y15f{bottom:267.866667pt;}
.y91{bottom:269.466667pt;}
.y2c{bottom:271.066667pt;}
.y5b{bottom:272.026667pt;}
.y90{bottom:274.106667pt;}
.y5c{bottom:278.106667pt;}
.ye3{bottom:280.346667pt;}
.y145{bottom:282.466667pt;}
.yfd{bottom:282.946667pt;}
.y8f{bottom:284.866667pt;}
.y2b{bottom:287.426667pt;}
.y8e{bottom:289.506667pt;}
.y5a{bottom:290.146667pt;}
.y113{bottom:294.786667pt;}
.y17c{bottom:295.426667pt;}
.y137{bottom:296.386667pt;}
.yc6{bottom:300.386667pt;}
.y144{bottom:300.546667pt;}
.yfc{bottom:300.866667pt;}
.y8d{bottom:301.826667pt;}
.y15e{bottom:302.786667pt;}
.y2a{bottom:303.586667pt;}
.y59{bottom:308.066667pt;}
.y112{bottom:312.866667pt;}
.ye2{bottom:314.466667pt;}
.y143{bottom:318.466667pt;}
.y126{bottom:318.786667pt;}
.y29{bottom:319.906667pt;}
.y136{bottom:320.546667pt;}
.y15d{bottom:320.866667pt;}
.y8b{bottom:324.866667pt;}
.y58{bottom:326.146667pt;}
.y17b{bottom:329.506667pt;}
.y8c{bottom:330.946667pt;}
.ye1{bottom:332.546667pt;}
.yc5{bottom:334.466667pt;}
.yfb{bottom:334.786667pt;}
.y28{bottom:336.226667pt;}
.y15c{bottom:338.946667pt;}
.y89{bottom:342.946667pt;}
.y57{bottom:344.066667pt;}
.yb0{bottom:345.986667pt;}
.y111{bottom:346.786667pt;}
.y8a{bottom:349.026667pt;}
.ye0{bottom:350.466667pt;}
.yb1{bottom:352.066667pt;}
.y27{bottom:352.386667pt;}
.yc4{bottom:352.546667pt;}
.yfa{bottom:352.866667pt;}
.y15b{bottom:356.866667pt;}
.y88{bottom:360.866667pt;}
.y17a{bottom:363.426667pt;}
.y12d{bottom:368.386667pt;}
.ydf{bottom:368.546667pt;}
.y26{bottom:368.706667pt;}
.yc3{bottom:370.466667pt;}
.y15a{bottom:374.946667pt;}
.y55{bottom:377.986667pt;}
.yaf{bottom:380.066667pt;}
.y110{bottom:380.866667pt;}
.y56{bottom:384.066667pt;}
.y25{bottom:385.026667pt;}
.yde{bottom:386.466667pt;}
.yf9{bottom:386.786667pt;}
.y142{bottom:388.546667pt;}
.y159{bottom:392.866667pt;}
.y86{bottom:394.786667pt;}
.y54{bottom:396.066667pt;}
.y179{bottom:397.506667pt;}
.y10f{bottom:398.946667pt;}
.y87{bottom:400.866667pt;}
.y24{bottom:401.346667pt;}
.yc2{bottom:404.386667pt;}
.ydc{bottom:404.546667pt;}
.y125{bottom:404.866667pt;}
.y141{bottom:406.466667pt;}
.ydd{bottom:410.626667pt;}
.y158{bottom:410.946667pt;}
.y178{bottom:411.426667pt;}
.y85{bottom:412.866667pt;}
.yae{bottom:413.986667pt;}
.y53{bottom:414.146667pt;}
.y10e{bottom:416.866667pt;}
.y23{bottom:417.506667pt;}
.yf8{bottom:420.866667pt;}
.yc1{bottom:422.466667pt;}
.y124{bottom:422.946667pt;}
.y140{bottom:424.546667pt;}
.y157{bottom:428.866667pt;}
.y84{bottom:430.946667pt;}
.y52{bottom:432.066667pt;}
.y22{bottom:433.826667pt;}
.y10c{bottom:434.946667pt;}
.y134{bottom:440.546667pt;}
.y123{bottom:440.866667pt;}
.y10d{bottom:441.026667pt;}
.y135{bottom:446.626667pt;}
.y156{bottom:446.946667pt;}
.y83{bottom:448.866667pt;}
.y21{bottom:450.146667pt;}
.y10b{bottom:452.866667pt;}
.yf7{bottom:454.786667pt;}
.ydb{bottom:455.906667pt;}
.yad{bottom:456.226667pt;}
.yc0{bottom:456.386667pt;}
.y165{bottom:456.866667pt;}
.y13f{bottom:457.826667pt;}
.y133{bottom:458.466667pt;}
.y121{bottom:458.946667pt;}
.y122{bottom:465.026667pt;}
.y20{bottom:466.306667pt;}
.y82{bottom:466.946667pt;}
.yac{bottom:468.066667pt;}
.yf6{bottom:472.866667pt;}
.y132{bottom:476.546667pt;}
.y120{bottom:476.866667pt;}
.y155{bottom:480.866667pt;}
.y1f{bottom:482.626667pt;}
.y51{bottom:483.426667pt;}
.y81{bottom:484.866667pt;}
.yab{bottom:486.146667pt;}
.y10a{bottom:486.786667pt;}
.ybf{bottom:490.466667pt;}
.yda{bottom:490.786667pt;}
.yf4{bottom:490.946667pt;}
.y13e{bottom:492.866667pt;}
.yf5{bottom:497.026667pt;}
.y1e{bottom:498.946667pt;}
.y175{bottom:500.066667pt;}
.y80{bottom:502.946667pt;}
.ya9{bottom:504.066667pt;}
.y108{bottom:504.866667pt;}
.yf3{bottom:508.893333pt;}
.y131{bottom:509.853333pt;}
.yaa{bottom:510.173333pt;}
.y11f{bottom:510.813333pt;}
.y109{bottom:510.973333pt;}
.y154{bottom:516.893333pt;}
.y50{bottom:518.493333pt;}
.ya7{bottom:522.173333pt;}
.y107{bottom:522.973333pt;}
.ybe{bottom:524.413333pt;}
.yd9{bottom:524.893333pt;}
.yf2{bottom:526.973333pt;}
.ya8{bottom:528.253333pt;}
.y11e{bottom:528.893333pt;}
.y1d{bottom:531.133333pt;}
.y153{bottom:534.973333pt;}
.y4f{bottom:536.573333pt;}
.y7e{bottom:536.893333pt;}
.ya6{bottom:540.093333pt;}
.y106{bottom:540.893333pt;}
.ybd{bottom:542.493333pt;}
.y7f{bottom:542.973333pt;}
.y130{bottom:544.893333pt;}
.y1c{bottom:547.453333pt;}
.y173{bottom:552.733333pt;}
.y152{bottom:552.893333pt;}
.y4e{bottom:554.493333pt;}
.y7d{bottom:554.973333pt;}
.ya5{bottom:558.173333pt;}
.yd8{bottom:558.813333pt;}
.y105{bottom:558.973333pt;}
.yf1{bottom:560.893333pt;}
.y11d{bottom:562.813333pt;}
.y12f{bottom:562.973333pt;}
.y1b{bottom:563.773333pt;}
.y151{bottom:570.973333pt;}
.y4d{bottom:572.573333pt;}
.y7c{bottom:572.893333pt;}
.ybc{bottom:576.413333pt;}
.y13d{bottom:578.813333pt;}
.yf0{bottom:578.973333pt;}
.y1a{bottom:580.093333pt;}
.y150{bottom:588.893333pt;}
.y4c{bottom:590.493333pt;}
.y7b{bottom:590.973333pt;}
.ya4{bottom:591.453333pt;}
.yd7{bottom:592.893333pt;}
.ybb{bottom:594.493333pt;}
.y19{bottom:596.413333pt;}
.y11c{bottom:596.893333pt;}
.y104{bottom:598.973333pt;}
.y172{bottom:605.373333pt;}
.y14f{bottom:606.973333pt;}
.y4a{bottom:608.573333pt;}
.y7a{bottom:608.893333pt;}
.yd6{bottom:610.973333pt;}
.y18{bottom:612.573333pt;}
.yef{bottom:612.893333pt;}
.y4b{bottom:614.653333pt;}
.y14e{bottom:624.893333pt;}
.y49{bottom:626.493333pt;}
.yba{bottom:628.413333pt;}
.y17{bottom:628.893333pt;}
.y11b{bottom:630.813333pt;}
.y13c{bottom:630.973333pt;}
.yd5{bottom:634.973333pt;}
.y170{bottom:640.093333pt;}
.y78{bottom:642.813333pt;}
.y14d{bottom:642.973333pt;}
.ya3{bottom:644.573333pt;}
.y16{bottom:645.213333pt;}
.yee{bottom:646.813333pt;}
.yd4{bottom:646.973333pt;}
.y79{bottom:648.893333pt;}
.y11a{bottom:654.973333pt;}
.y48{bottom:660.413333pt;}
.y76{bottom:660.893333pt;}
.y15{bottom:661.373333pt;}
.ya2{bottom:662.493333pt;}
.yd2{bottom:664.893333pt;}
.y77{bottom:666.973333pt;}
.yd3{bottom:670.973333pt;}
.y14{bottom:677.693333pt;}
.y47{bottom:678.493333pt;}
.y75{bottom:678.973333pt;}
.yed{bottom:680.893333pt;}
.y164{bottom:682.813333pt;}
.y103{bottom:682.973333pt;}
.y119{bottom:684.893333pt;}
.y13{bottom:694.013333pt;}
.ya1{bottom:695.933333pt;}
.yb9{bottom:696.413333pt;}
.y46{bottom:696.573333pt;}
.y74{bottom:696.893333pt;}
.yd1{bottom:698.813333pt;}
.yec{bottom:698.973333pt;}
.y101{bottom:700.893333pt;}
.y118{bottom:702.973333pt;}
.y102{bottom:706.973333pt;}
.y12{bottom:710.333333pt;}
.y45{bottom:714.493333pt;}
.y73{bottom:714.973333pt;}
.yd0{bottom:716.893333pt;}
.y100{bottom:718.973333pt;}
.yb8{bottom:720.573333pt;}
.y11{bottom:726.493333pt;}
.y9f{bottom:730.853333pt;}
.yb7{bottom:732.613333pt;}
.y12c{bottom:734.853333pt;}
.ycf{bottom:735.013333pt;}
.ya0{bottom:736.933333pt;}
.y10{bottom:742.853333pt;}
.y169{bottom:746.853333pt;}
.y44{bottom:748.453333pt;}
.y71{bottom:748.933333pt;}
.yb6{bottom:750.533333pt;}
.yce{bottom:752.933333pt;}
.y72{bottom:755.013333pt;}
.y43{bottom:766.533333pt;}
.y70{bottom:767.013333pt;}
.yb5{bottom:768.613333pt;}
.yea{bottom:771.013333pt;}
.yf{bottom:774.533333pt;}
.yeb{bottom:777.093333pt;}
.y42{bottom:784.613333pt;}
.y6f{bottom:784.933333pt;}
.yb4{bottom:786.533333pt;}
.ycd{bottom:786.853333pt;}
.y117{bottom:788.933333pt;}
.y41{bottom:802.533333pt;}
.y9e{bottom:803.013333pt;}
.yd{bottom:803.813333pt;}
.yb3{bottom:804.613333pt;}
.ye8{bottom:804.933333pt;}
.ye{bottom:809.893333pt;}
.ye9{bottom:811.013333pt;}
.y6d{bottom:818.853333pt;}
.y40{bottom:820.613333pt;}
.ycc{bottom:820.933333pt;}
.y116{bottom:822.853333pt;}
.ye7{bottom:823.013333pt;}
.y6e{bottom:824.933333pt;}
.y6b{bottom:836.933333pt;}
.yb2{bottom:837.893333pt;}
.y3f{bottom:838.533333pt;}
.yc{bottom:838.853333pt;}
.y13b{bottom:839.013333pt;}
.y6c{bottom:843.013333pt;}
.ycb{bottom:854.853333pt;}
.y69{bottom:855.013333pt;}
.y3e{bottom:856.613333pt;}
.ye6{bottom:856.933333pt;}
.y6a{bottom:861.093333pt;}
.yb{bottom:872.933333pt;}
.y9d{bottom:879.013333pt;}
.y3d{bottom:889.893333pt;}
.ye5{bottom:890.853333pt;}
.ya{bottom:891.013333pt;}
.y9c{bottom:897.093333pt;}
.y66{bottom:914.853333pt;}
.y39{bottom:931.813333pt;}
.y38{bottom:942.533333pt;}
.y5{bottom:943.173333pt;}
.y37{bottom:953.280000pt;}
.y4{bottom:960.160000pt;}
.y36{bottom:962.080000pt;}
.y3{bottom:971.040000pt;}
.y2{bottom:981.760000pt;}
.y1{bottom:993.920000pt;}
.he{height:29.716875pt;}
.h19{height:29.942500pt;}
.h15{height:30.256875pt;}
.ha{height:31.428750pt;}
.h14{height:31.918125pt;}
.h2{height:32.498125pt;}
.h1c{height:34.080000pt;}
.h17{height:34.731875pt;}
.hb{height:36.870937pt;}
.h10{height:37.540937pt;}
.hf{height:45.675938pt;}
.h16{height:46.505938pt;}
.h5{height:46.752000pt;}
.h18{height:47.232000pt;}
.h12{height:49.632000pt;}
.h11{height:50.578125pt;}
.h9{height:51.625000pt;}
.h1d{height:52.000000pt;}
.h1e{height:52.032000pt;}
.hd{height:52.834688pt;}
.h4{height:54.093750pt;}
.h7{height:54.187500pt;}
.hc{height:54.390938pt;}
.h1{height:54.875000pt;}
.h13{height:55.031250pt;}
.h8{height:55.748750pt;}
.h3{height:56.031250pt;}
.h1f{height:88.000000pt;}
.h1b{height:105.952000pt;}
.h6{height:106.305937pt;}
.h1a{height:124.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:54.912000pt;}
.w4{width:56.672000pt;}
.w5{width:57.632000pt;}
.w6{width:293.946667pt;}
.w7{width:293.986667pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x52{left:7.200000pt;}
.x3{left:13.760000pt;}
.xf{left:14.720000pt;}
.x1{left:113.471988pt;}
.xc{left:117.471988pt;}
.x2b{left:122.111988pt;}
.xa{left:143.066655pt;}
.x4a{left:152.346655pt;}
.x4{left:155.866655pt;}
.xd{left:157.466655pt;}
.x49{left:165.786642pt;}
.x27{left:174.746642pt;}
.x28{left:183.386655pt;}
.x3f{left:193.146642pt;}
.x6{left:195.706655pt;}
.x40{left:201.786655pt;}
.x1e{left:206.746642pt;}
.x42{left:209.946655pt;}
.x1f{left:211.066655pt;}
.x38{left:218.906655pt;}
.x34{left:236.186642pt;}
.x12{left:240.506642pt;}
.x13{left:244.826655pt;}
.x4b{left:247.866642pt;}
.x1a{left:257.346642pt;}
.x4e{left:258.626642pt;}
.x1b{left:261.666655pt;}
.x4f{left:267.266655pt;}
.x14{left:280.226642pt;}
.x15{left:284.546655pt;}
.x2c{left:294.946642pt;}
.x18{left:297.986642pt;}
.x19{left:302.306655pt;}
.x2d{left:303.586655pt;}
.xb{left:305.506655pt;}
.x5{left:310.146655pt;}
.x22{left:314.466642pt;}
.x10{left:317.666642pt;}
.x25{left:320.706642pt;}
.x11{left:321.986655pt;}
.x23{left:323.106655pt;}
.x3d{left:327.906642pt;}
.x26{left:329.346655pt;}
.x3e{left:336.546655pt;}
.x7{left:337.506655pt;}
.x35{left:349.346642pt;}
.x36{left:357.986655pt;}
.x39{left:390.946642pt;}
.x4c{left:392.386642pt;}
.x3a{left:399.586655pt;}
.x4d{left:401.026655pt;}
.x53{left:408.066667pt;}
.x20{left:434.813309pt;}
.x21{left:443.453321pt;}
.x16{left:444.893309pt;}
.x17{left:449.213321pt;}
.x45{left:470.173309pt;}
.x8{left:474.813309pt;}
.x9{left:478.493321pt;}
.x24{left:486.493309pt;}
.x37{left:487.933321pt;}
.x1c{left:490.333309pt;}
.x1d{left:494.653321pt;}
.x2e{left:552.093309pt;}
.x43{left:553.693309pt;}
.x48{left:556.893309pt;}
.x2f{left:560.733321pt;}
.x44{left:562.333321pt;}
.x46{left:565.053309pt;}
.x47{left:573.693321pt;}
.x50{left:578.013309pt;}
.x30{left:579.133309pt;}
.x51{left:586.653321pt;}
.x31{left:587.773321pt;}
.x41{left:595.773321pt;}
.x32{left:618.853309pt;}
.x33{left:627.493321pt;}
.x29{left:654.373309pt;}
.x2a{left:663.013321pt;}
.x3b{left:694.053309pt;}
.x3c{left:702.693321pt;}
.x2{left:738.213333pt;}
.xe{left:740.293333pt;}
}




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