
    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_674ef63d823b96211317575c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_c938d0b9b8814d7c0365159f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_2220d33e18e458da7234614b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_7e8f5b089d731221a55de5c3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_d686656860d5d78880eedcc0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_f4db4c8277841c69cfee1a28.woff')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_54836a6d1ba2f73c3010612b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.007324;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_5bbda05a0f597c3a5fa09e05.woff')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_630ec06486ff24c229b6e6e2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_77382b562af077b19d54498a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_d71ef497a52e1db681140af3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.005859;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_dc14bd974fd5304c75908d24.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000558;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_41eee9156f5c856906fb3bf5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls6{letter-spacing:-1.632000px;}
.ls3{letter-spacing:-1.428000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002400px;}
.ls7{letter-spacing:0.551400px;}
.ls4{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.766200px;}
.ls9{letter-spacing:15.531000px;}
.ls5{letter-spacing:15.531600px;}
.lsa{letter-spacing:18.047400px;}
.ls2{letter-spacing:24.087600px;}
.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;}
}
.ws0{word-spacing:-56.160000px;}
.ws48{word-spacing:-20.412000px;}
.ws2a{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.600000px;}
.ws12{word-spacing:-15.060000px;}
.ws14{word-spacing:-14.340000px;}
.ws5{word-spacing:-13.800000px;}
.ws11{word-spacing:-12.780000px;}
.ws6{word-spacing:-12.660000px;}
.ws21{word-spacing:-12.480000px;}
.ws7{word-spacing:-11.760000px;}
.ws1e{word-spacing:-11.640000px;}
.ws19{word-spacing:-11.520000px;}
.ws8{word-spacing:-11.280000px;}
.ws20{word-spacing:-11.160000px;}
.ws10{word-spacing:-10.320000px;}
.ws18{word-spacing:-9.480000px;}
.wsf{word-spacing:-9.120000px;}
.wsc{word-spacing:-8.880000px;}
.wsb{word-spacing:-8.820000px;}
.ws1d{word-spacing:-8.460000px;}
.wsd{word-spacing:-7.320000px;}
.ws16{word-spacing:-6.780000px;}
.ws1b{word-spacing:-6.600000px;}
.ws22{word-spacing:-5.880000px;}
.ws9{word-spacing:-4.740000px;}
.ws1a{word-spacing:-4.620000px;}
.ws17{word-spacing:-4.500000px;}
.ws15{word-spacing:-4.140000px;}
.wse{word-spacing:-3.660000px;}
.ws4{word-spacing:-2.667600px;}
.wsa{word-spacing:-2.340000px;}
.ws2b{word-spacing:-2.220000px;}
.ws34{word-spacing:-2.160000px;}
.ws2d{word-spacing:-1.680000px;}
.ws1c{word-spacing:-1.200000px;}
.ws13{word-spacing:-1.080000px;}
.ws3c{word-spacing:-1.020000px;}
.ws47{word-spacing:-0.960000px;}
.ws41{word-spacing:-0.900000px;}
.ws2e{word-spacing:-0.840000px;}
.ws45{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.540000px;}
.ws1f{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.420000px;}
.ws2{word-spacing:0.000000px;}
.ws23{word-spacing:0.120000px;}
.ws31{word-spacing:0.540000px;}
.ws37{word-spacing:0.660000px;}
.ws33{word-spacing:0.720000px;}
.ws26{word-spacing:0.780000px;}
.ws44{word-spacing:0.900000px;}
.ws38{word-spacing:0.960000px;}
.ws30{word-spacing:1.440000px;}
.ws36{word-spacing:1.632000px;}
.ws4c{word-spacing:2.040000px;}
.ws28{word-spacing:3.900000px;}
.ws32{word-spacing:3.960000px;}
.ws46{word-spacing:4.140000px;}
.ws3f{word-spacing:4.320000px;}
.ws49{word-spacing:4.620000px;}
.ws43{word-spacing:4.800000px;}
.ws40{word-spacing:4.920000px;}
.ws27{word-spacing:5.880000px;}
.ws35{word-spacing:5.940000px;}
.ws3a{word-spacing:6.000000px;}
.ws2f{word-spacing:6.120000px;}
.ws3b{word-spacing:6.300000px;}
.ws3e{word-spacing:7.200000px;}
.ws4b{word-spacing:7.680000px;}
.ws2c{word-spacing:7.860000px;}
.ws42{word-spacing:8.100000px;}
.ws4a{word-spacing:8.820000px;}
.ws29{word-spacing:232.723200px;}
.ws25{word-spacing:260.743200px;}
.ws1{word-spacing:274.629000px;}
.ws24{word-spacing:289.303200px;}
._12{margin-left:-2657.500800px;}
._14{margin-left:-104.412000px;}
._11{margin-left:-68.100000px;}
._a{margin-left:-3.600000px;}
._3{margin-left:-1.776000px;}
._8{width:1.044000px;}
._1{width:2.055000px;}
._4{width:3.588000px;}
._5{width:5.016000px;}
._7{width:6.072000px;}
._6{width:7.188000px;}
._9{width:8.826000px;}
._2{width:10.597800px;}
._0{width:13.713600px;}
._10{width:24.109200px;}
._e{width:35.100000px;}
._13{width:41.040000px;}
._f{width:78.103200px;}
._d{width:179.503200px;}
._b{width:291.403200px;}
._c{width:1018.009200px;}
.fc3{color:rgb(0,173,239);}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:34.980000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:132.000000px;}
.fs9{font-size:180.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:34.570500px;}
.y6{bottom:43.570200px;}
.y68{bottom:106.299300px;}
.y67{bottom:127.299450px;}
.y2c{bottom:130.797750px;}
.y8e{bottom:131.551350px;}
.y66{bottom:148.299450px;}
.y8d{bottom:152.551350px;}
.y2b{bottom:158.175750px;}
.yf3{bottom:162.699300px;}
.y65{bottom:169.299450px;}
.y8c{bottom:173.551500px;}
.y124{bottom:175.691550px;}
.yd2{bottom:183.534150px;}
.yf2{bottom:183.699300px;}
.y2a{bottom:185.553750px;}
.y64{bottom:190.299450px;}
.y8b{bottom:194.551500px;}
.yd1{bottom:204.534150px;}
.y123{bottom:205.195350px;}
.y29{bottom:212.931750px;}
.yf1{bottom:213.203400px;}
.y8a{bottom:215.551500px;}
.yd0{bottom:234.038250px;}
.yf0{bottom:234.203400px;}
.y122{bottom:234.699300px;}
.y28{bottom:240.309600px;}
.y63{bottom:253.199550px;}
.ycf{bottom:255.038250px;}
.yef{bottom:255.203400px;}
.y151{bottom:258.727500px;}
.y121{bottom:264.203400px;}
.y27{bottom:267.687600px;}
.y62{bottom:274.199550px;}
.y142{bottom:275.735400px;}
.yce{bottom:284.542200px;}
.yee{bottom:284.707200px;}
.y89{bottom:284.767650px;}
.y150{bottom:288.231450px;}
.y120{bottom:293.707200px;}
.y26{bottom:295.065450px;}
.y61{bottom:295.199550px;}
.y141{bottom:305.239350px;}
.ycd{bottom:305.542200px;}
.y88{bottom:305.767650px;}
.y14f{bottom:309.231450px;}
.y170{bottom:310.667850px;}
.y60{bottom:316.199550px;}
.y25{bottom:322.443450px;}
.y11f{bottom:323.211150px;}
.y140{bottom:326.239350px;}
.y87{bottom:326.767650px;}
.y16f{bottom:331.667850px;}
.ycc{bottom:335.046000px;}
.yed{bottom:336.970950px;}
.y5f{bottom:337.199550px;}
.y14e{bottom:338.735400px;}
.y11e{bottom:344.211150px;}
.y86{bottom:347.767650px;}
.y24{bottom:349.821450px;}
.y13f{bottom:355.743300px;}
.yec{bottom:357.970950px;}
.y16e{bottom:361.171800px;}
.y11d{bottom:365.211150px;}
.y5e{bottom:365.684400px;}
.y14d{bottom:368.239350px;}
.y23{bottom:377.199300px;}
.y85{bottom:377.271600px;}
.yeb{bottom:378.970950px;}
.y16d{bottom:382.171800px;}
.y13e{bottom:385.247250px;}
.y5d{bottom:386.684400px;}
.y11c{bottom:394.715100px;}
.y14c{bottom:397.743300px;}
.ycb{bottom:400.065750px;}
.y16c{bottom:403.171800px;}
.y125{bottom:403.696350px;}
.y22{bottom:404.577300px;}
.y5c{bottom:407.684400px;}
.yea{bottom:408.475050px;}
.y13d{bottom:414.751200px;}
.yca{bottom:421.065750px;}
.y11b{bottom:424.219050px;}
.y14b{bottom:427.247250px;}
.y5b{bottom:428.684400px;}
.ye9{bottom:429.475050px;}
.y21{bottom:431.955300px;}
.y16b{bottom:432.675750px;}
.y13c{bottom:435.751200px;}
.y84{bottom:438.039300px;}
.y14a{bottom:448.247250px;}
.ye8{bottom:450.475050px;}
.yc9{bottom:450.569700px;}
.y16a{bottom:455.175750px;}
.y13b{bottom:456.751200px;}
.y5a{bottom:457.169400px;}
.y83{bottom:459.039300px;}
.y20{bottom:459.333300px;}
.y149{bottom:469.247250px;}
.yc8{bottom:471.569700px;}
.y11a{bottom:476.482800px;}
.y13a{bottom:477.751200px;}
.y59{bottom:478.169400px;}
.ye7{bottom:479.978850px;}
.y82{bottom:480.039300px;}
.y1f{bottom:486.711150px;}
.y119{bottom:497.482800px;}
.y148{bottom:498.751200px;}
.y58{bottom:499.169400px;}
.y5{bottom:500.978700px;}
.y81{bottom:501.039300px;}
.yc7{bottom:501.073650px;}
.y152{bottom:503.617650px;}
.y139{bottom:507.255000px;}
.y145{bottom:509.995650px;}
.y1e{bottom:514.089150px;}
.yb2{bottom:518.482800px;}
.y169{bottom:520.195500px;}
.y80{bottom:522.039300px;}
.yc6{bottom:522.073650px;}
.y10b{bottom:524.872950px;}
.y57{bottom:527.654400px;}
.y147{bottom:528.255000px;}
.ye6{bottom:532.242750px;}
.y138{bottom:536.758950px;}
.yb1{bottom:539.482800px;}
.y168{bottom:541.195500px;}
.y1d{bottom:541.467150px;}
.y7f{bottom:543.039300px;}
.y10a{bottom:545.872950px;}
.y118{bottom:547.986750px;}
.yc5{bottom:551.577600px;}
.ye5{bottom:553.242750px;}
.y7e{bottom:564.039300px;}
.y4{bottom:565.778700px;}
.y109{bottom:566.872950px;}
.y1c{bottom:568.845000px;}
.yb0{bottom:568.986750px;}
.y167{bottom:570.699300px;}
.y56{bottom:572.010300px;}
.ye4{bottom:574.242750px;}
.yc4{bottom:581.081550px;}
.yaf{bottom:589.986750px;}
.y166{bottom:591.699300px;}
.y146{bottom:593.274750px;}
.y7d{bottom:593.543250px;}
.ye3{bottom:595.242750px;}
.y1b{bottom:596.223000px;}
.y108{bottom:596.376900px;}
.y137{bottom:601.778700px;}
.y55{bottom:610.514250px;}
.y117{bottom:610.986750px;}
.ye2{bottom:616.242750px;}
.y107{bottom:617.376900px;}
.yae{bottom:619.490700px;}
.y165{bottom:621.203400px;}
.y136{bottom:622.778700px;}
.y1a{bottom:623.601000px;}
.y3{bottom:630.578700px;}
.y54{bottom:631.514250px;}
.y106{bottom:638.376900px;}
.yad{bottom:640.490700px;}
.ye1{bottom:645.746550px;}
.yc3{bottom:646.101150px;}
.y19{bottom:650.978850px;}
.y135{bottom:652.282650px;}
.y7c{bottom:654.310950px;}
.y181{bottom:656.010450px;}
.y53{bottom:661.018200px;}
.yac{bottom:661.490700px;}
.ye0{bottom:666.746550px;}
.yc2{bottom:667.101150px;}
.y180{bottom:677.010450px;}
.y18{bottom:678.356850px;}
.y134{bottom:681.786600px;}
.y52{bottom:682.018200px;}
.ya0{bottom:682.306050px;}
.y116{bottom:682.490700px;}
.y7b{bottom:683.814900px;}
.y105{bottom:684.888750px;}
.y164{bottom:686.223000px;}
.ydf{bottom:687.746550px;}
.y2{bottom:695.378700px;}
.yc1{bottom:696.605100px;}
.y51{bottom:703.018200px;}
.y9f{bottom:703.306050px;}
.y115{bottom:703.490700px;}
.y7a{bottom:704.814900px;}
.y17{bottom:705.734850px;}
.y17f{bottom:706.514400px;}
.y163{bottom:707.223000px;}
.yab{bottom:708.002550px;}
.yde{bottom:708.746550px;}
.y133{bottom:711.290550px;}
.y3f{bottom:715.018350px;}
.yc0{bottom:717.605100px;}
.y50{bottom:724.018200px;}
.y114{bottom:724.490700px;}
.y79{bottom:725.814900px;}
.y17e{bottom:727.514400px;}
.y9e{bottom:732.810000px;}
.y16{bottom:733.112850px;}
.y3e{bottom:736.018350px;}
.y162{bottom:736.726950px;}
.ydd{bottom:738.250650px;}
.y132{bottom:740.794350px;}
.y104{bottom:741.404550px;}
.y4f{bottom:745.018200px;}
.y113{bottom:745.490700px;}
.y78{bottom:746.814900px;}
.ybf{bottom:747.109050px;}
.y17d{bottom:748.514400px;}
.y9d{bottom:753.810000px;}
.y3d{bottom:757.018350px;}
.y161{bottom:757.726950px;}
.y1{bottom:760.178700px;}
.y15{bottom:760.490700px;}
.y131{bottom:761.794350px;}
.y103{bottom:762.404550px;}
.yaa{bottom:764.518350px;}
.y4e{bottom:766.018200px;}
.y77{bottom:767.814900px;}
.y17c{bottom:769.514250px;}
.y9c{bottom:774.810000px;}
.y112{bottom:774.994650px;}
.ybe{bottom:776.613000px;}
.y3c{bottom:778.018200px;}
.y130{bottom:782.794350px;}
.y102{bottom:783.404550px;}
.ya9{bottom:787.018200px;}
.y160{bottom:787.230900px;}
.y14{bottom:787.868700px;}
.ydc{bottom:790.514250px;}
.y4d{bottom:795.522150px;}
.y9b{bottom:795.810000px;}
.y111{bottom:795.994500px;}
.y76{bottom:797.318850px;}
.y3b{bottom:799.018200px;}
.ybd{bottom:806.116950px;}
.ya8{bottom:808.018200px;}
.ydb{bottom:811.514250px;}
.y12f{bottom:812.298300px;}
.y101{bottom:812.908350px;}
.y178{bottom:815.062050px;}
.y13{bottom:815.246550px;}
.y144{bottom:816.137400px;}
.y4c{bottom:816.522150px;}
.y9a{bottom:816.810000px;}
.y110{bottom:816.994500px;}
.y17b{bottom:820.018200px;}
.y3a{bottom:828.522150px;}
.ya7{bottom:829.018200px;}
.yda{bottom:832.514250px;}
.y100{bottom:833.908350px;}
.ybc{bottom:835.620900px;}
.y177{bottom:836.062050px;}
.y4b{bottom:837.522150px;}
.y99{bottom:837.810000px;}
.y10f{bottom:837.994500px;}
.y185{bottom:839.696250px;}
.y17a{bottom:841.018200px;}
.y12e{bottom:841.802250px;}
.y12{bottom:842.624700px;}
.y39{bottom:849.522150px;}
.y75{bottom:849.582600px;}
.ya6{bottom:850.018200px;}
.y15f{bottom:852.250650px;}
.yff{bottom:854.908350px;}
.y176{bottom:857.062050px;}
.y4a{bottom:858.522150px;}
.y98{bottom:858.810000px;}
.y184{bottom:860.696250px;}
.yd9{bottom:862.018200px;}
.ybb{bottom:865.124850px;}
.y11{bottom:870.002550px;}
.y38{bottom:870.522150px;}
.y74{bottom:870.582600px;}
.y15e{bottom:873.250650px;}
.y49{bottom:879.522150px;}
.y97{bottom:879.810000px;}
.y183{bottom:881.696250px;}
.yd8{bottom:883.018200px;}
.yfe{bottom:884.412300px;}
.y10e{bottom:884.506350px;}
.yba{bottom:886.124850px;}
.y37{bottom:891.522150px;}
.y73{bottom:891.582600px;}
.y10{bottom:897.380550px;}
.ya5{bottom:900.522150px;}
.y182{bottom:902.696250px;}
.y15d{bottom:902.754450px;}
.yd7{bottom:904.018200px;}
.yfd{bottom:905.412300px;}
.y12d{bottom:906.821850px;}
.y10d{bottom:907.006350px;}
.y48{bottom:909.026100px;}
.y96{bottom:909.314100px;}
.y36{bottom:912.522150px;}
.y72{bottom:912.582600px;}
.yb9{bottom:915.628800px;}
.ya4{bottom:921.522150px;}
.y15c{bottom:923.754450px;}
.yf{bottom:924.758400px;}
.yd6{bottom:925.018200px;}
.yfc{bottom:926.412300px;}
.y175{bottom:927.821850px;}
.y47{bottom:930.026100px;}
.y95{bottom:930.314100px;}
.y35{bottom:933.522150px;}
.y12c{bottom:936.325800px;}
.ya3{bottom:942.522150px;}
.yd5{bottom:946.018200px;}
.y46{bottom:951.026100px;}
.ye{bottom:952.136400px;}
.y15b{bottom:953.258400px;}
.y34{bottom:954.522150px;}
.yfb{bottom:955.916250px;}
.y174{bottom:957.325800px;}
.ya2{bottom:963.522150px;}
.y12b{bottom:965.829750px;}
.yd4{bottom:967.018200px;}
.y45{bottom:972.026100px;}
.y71{bottom:974.469450px;}
.y179{bottom:975.522150px;}
.y15a{bottom:976.798500px;}
.y94{bottom:976.825800px;}
.yfa{bottom:976.916250px;}
.yd{bottom:979.514400px;}
.yb8{bottom:980.648400px;}
.y33{bottom:984.026100px;}
.ya1{bottom:984.522150px;}
.y173{bottom:986.829750px;}
.y44{bottom:993.026100px;}
.y12a{bottom:995.333700px;}
.y70{bottom:995.469450px;}
.yd3{bottom:996.522150px;}
.yf9{bottom:997.916250px;}
.y32{bottom:1005.026100px;}
.y10c{bottom:1005.522150px;}
.y159{bottom:1006.302450px;}
.yc{bottom:1006.892250px;}
.yb7{bottom:1010.152350px;}
.y43{bottom:1014.026100px;}
.y172{bottom:1016.333700px;}
.y6f{bottom:1016.469450px;}
.y129{bottom:1024.837650px;}
.y31{bottom:1026.026100px;}
.y158{bottom:1027.302450px;}
.yf8{bottom:1027.420200px;}
.yb{bottom:1034.270250px;}
.y42{bottom:1035.026100px;}
.y6e{bottom:1037.469450px;}
.yb6{bottom:1039.656300px;}
.y171{bottom:1045.837650px;}
.y30{bottom:1047.026100px;}
.yf7{bottom:1048.420200px;}
.y128{bottom:1054.341600px;}
.y41{bottom:1056.026100px;}
.y157{bottom:1056.806400px;}
.y6d{bottom:1058.469450px;}
.yb5{bottom:1060.656300px;}
.ya{bottom:1061.648100px;}
.y93{bottom:1062.845550px;}
.y2f{bottom:1068.026100px;}
.yf6{bottom:1069.420200px;}
.y127{bottom:1075.341600px;}
.y92{bottom:1083.845550px;}
.y156{bottom:1086.310350px;}
.y6c{bottom:1086.954300px;}
.y2e{bottom:1089.026100px;}
.y9{bottom:1089.026250px;}
.yb4{bottom:1090.160400px;}
.yf5{bottom:1090.420200px;}
.y126{bottom:1096.341600px;}
.y91{bottom:1104.845550px;}
.y6b{bottom:1107.954300px;}
.y155{bottom:1115.814300px;}
.y40{bottom:1119.545700px;}
.y90{bottom:1125.845550px;}
.y6a{bottom:1128.954300px;}
.y143{bottom:1130.782950px;}
.yf4{bottom:1136.932050px;}
.y154{bottom:1145.318250px;}
.y2d{bottom:1152.545700px;}
.y8{bottom:1152.545850px;}
.y8f{bottom:1155.349500px;}
.y69{bottom:1157.439300px;}
.yb3{bottom:1159.432050px;}
.y153{bottom:1166.318250px;}
.h8{height:41.317383px;}
.h6{height:45.908203px;}
.h7{height:46.744482px;}
.hb{height:52.516741px;}
.h4{height:55.089844px;}
.h9{height:64.271484px;}
.ha{height:73.453125px;}
.hd{height:73.523438px;}
.h3{height:83.794922px;}
.h5{height:100.998047px;}
.hc{height:157.550223px;}
.h2{height:165.269531px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:85.039350px;}
.x1{left:87.165300px;}
.xb{left:89.291250px;}
.x8{left:93.918300px;}
.xc{left:98.164350px;}
.x6{left:102.047250px;}
.xd{left:106.299150px;}
.x14{left:112.039350px;}
.x16{left:116.078700px;}
.x5{left:119.055000px;}
.x10{left:123.307050px;}
.x15{left:139.039350px;}
.x9{left:217.559100px;}
.x7{left:300.089100px;}
.xe{left:436.164750px;}
.x3{left:441.310650px;}
.x2{left:486.485400px;}
.xa{left:568.346400px;}
.x12{left:743.365500px;}
.x11{left:746.178000px;}
.xf{left:748.990650px;}
.x13{left:751.803150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls6{letter-spacing:-1.450667pt;}
.ls3{letter-spacing:-1.269333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002133pt;}
.ls7{letter-spacing:0.490133pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.681067pt;}
.ls9{letter-spacing:13.805333pt;}
.ls5{letter-spacing:13.805867pt;}
.lsa{letter-spacing:16.042133pt;}
.ls2{letter-spacing:21.411200pt;}
.ws0{word-spacing:-49.920000pt;}
.ws48{word-spacing:-18.144000pt;}
.ws2a{word-spacing:-14.400000pt;}
.ws3{word-spacing:-13.866667pt;}
.ws12{word-spacing:-13.386667pt;}
.ws14{word-spacing:-12.746667pt;}
.ws5{word-spacing:-12.266667pt;}
.ws11{word-spacing:-11.360000pt;}
.ws6{word-spacing:-11.253333pt;}
.ws21{word-spacing:-11.093333pt;}
.ws7{word-spacing:-10.453333pt;}
.ws1e{word-spacing:-10.346667pt;}
.ws19{word-spacing:-10.240000pt;}
.ws8{word-spacing:-10.026667pt;}
.ws20{word-spacing:-9.920000pt;}
.ws10{word-spacing:-9.173333pt;}
.ws18{word-spacing:-8.426667pt;}
.wsf{word-spacing:-8.106667pt;}
.wsc{word-spacing:-7.893333pt;}
.wsb{word-spacing:-7.840000pt;}
.ws1d{word-spacing:-7.520000pt;}
.wsd{word-spacing:-6.506667pt;}
.ws16{word-spacing:-6.026667pt;}
.ws1b{word-spacing:-5.866667pt;}
.ws22{word-spacing:-5.226667pt;}
.ws9{word-spacing:-4.213333pt;}
.ws1a{word-spacing:-4.106667pt;}
.ws17{word-spacing:-4.000000pt;}
.ws15{word-spacing:-3.680000pt;}
.wse{word-spacing:-3.253333pt;}
.ws4{word-spacing:-2.371200pt;}
.wsa{word-spacing:-2.080000pt;}
.ws2b{word-spacing:-1.973333pt;}
.ws34{word-spacing:-1.920000pt;}
.ws2d{word-spacing:-1.493333pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws13{word-spacing:-0.960000pt;}
.ws3c{word-spacing:-0.906667pt;}
.ws47{word-spacing:-0.853333pt;}
.ws41{word-spacing:-0.800000pt;}
.ws2e{word-spacing:-0.746667pt;}
.ws45{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.480000pt;}
.ws1f{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.373333pt;}
.ws2{word-spacing:0.000000pt;}
.ws23{word-spacing:0.106667pt;}
.ws31{word-spacing:0.480000pt;}
.ws37{word-spacing:0.586667pt;}
.ws33{word-spacing:0.640000pt;}
.ws26{word-spacing:0.693333pt;}
.ws44{word-spacing:0.800000pt;}
.ws38{word-spacing:0.853333pt;}
.ws30{word-spacing:1.280000pt;}
.ws36{word-spacing:1.450667pt;}
.ws4c{word-spacing:1.813333pt;}
.ws28{word-spacing:3.466667pt;}
.ws32{word-spacing:3.520000pt;}
.ws46{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.840000pt;}
.ws49{word-spacing:4.106667pt;}
.ws43{word-spacing:4.266667pt;}
.ws40{word-spacing:4.373333pt;}
.ws27{word-spacing:5.226667pt;}
.ws35{word-spacing:5.280000pt;}
.ws3a{word-spacing:5.333333pt;}
.ws2f{word-spacing:5.440000pt;}
.ws3b{word-spacing:5.600000pt;}
.ws3e{word-spacing:6.400000pt;}
.ws4b{word-spacing:6.826667pt;}
.ws2c{word-spacing:6.986667pt;}
.ws42{word-spacing:7.200000pt;}
.ws4a{word-spacing:7.840000pt;}
.ws29{word-spacing:206.865067pt;}
.ws25{word-spacing:231.771733pt;}
.ws1{word-spacing:244.114667pt;}
.ws24{word-spacing:257.158400pt;}
._12{margin-left:-2362.222933pt;}
._14{margin-left:-92.810667pt;}
._11{margin-left:-60.533333pt;}
._a{margin-left:-3.200000pt;}
._3{margin-left:-1.578667pt;}
._8{width:0.928000pt;}
._1{width:1.826667pt;}
._4{width:3.189333pt;}
._5{width:4.458667pt;}
._7{width:5.397333pt;}
._6{width:6.389333pt;}
._9{width:7.845333pt;}
._2{width:9.420267pt;}
._0{width:12.189867pt;}
._10{width:21.430400pt;}
._e{width:31.200000pt;}
._13{width:36.480000pt;}
._f{width:69.425067pt;}
._d{width:159.558400pt;}
._b{width:259.025067pt;}
._c{width:904.897067pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:117.333333pt;}
.fs9{font-size:160.000000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:30.729333pt;}
.y6{bottom:38.729067pt;}
.y68{bottom:94.488267pt;}
.y67{bottom:113.155067pt;}
.y2c{bottom:116.264667pt;}
.y8e{bottom:116.934533pt;}
.y66{bottom:131.821733pt;}
.y8d{bottom:135.601200pt;}
.y2b{bottom:140.600667pt;}
.yf3{bottom:144.621600pt;}
.y65{bottom:150.488400pt;}
.y8c{bottom:154.268000pt;}
.y124{bottom:156.170267pt;}
.yd2{bottom:163.141467pt;}
.yf2{bottom:163.288267pt;}
.y2a{bottom:164.936667pt;}
.y64{bottom:169.155067pt;}
.y8b{bottom:172.934667pt;}
.yd1{bottom:181.808133pt;}
.y123{bottom:182.395867pt;}
.y29{bottom:189.272667pt;}
.yf1{bottom:189.514133pt;}
.y8a{bottom:191.601333pt;}
.yd0{bottom:208.034000pt;}
.yf0{bottom:208.180800pt;}
.y122{bottom:208.621600pt;}
.y28{bottom:213.608533pt;}
.y63{bottom:225.066267pt;}
.ycf{bottom:226.700667pt;}
.yef{bottom:226.847467pt;}
.y151{bottom:229.980000pt;}
.y121{bottom:234.847467pt;}
.y27{bottom:237.944533pt;}
.y62{bottom:243.732933pt;}
.y142{bottom:245.098133pt;}
.yce{bottom:252.926400pt;}
.yee{bottom:253.073067pt;}
.y89{bottom:253.126800pt;}
.y150{bottom:256.205733pt;}
.y120{bottom:261.073067pt;}
.y26{bottom:262.280400pt;}
.y61{bottom:262.399600pt;}
.y141{bottom:271.323867pt;}
.ycd{bottom:271.593067pt;}
.y88{bottom:271.793467pt;}
.y14f{bottom:274.872400pt;}
.y170{bottom:276.149200pt;}
.y60{bottom:281.066267pt;}
.y25{bottom:286.616400pt;}
.y11f{bottom:287.298800pt;}
.y140{bottom:289.990533pt;}
.y87{bottom:290.460133pt;}
.y16f{bottom:294.815867pt;}
.ycc{bottom:297.818667pt;}
.yed{bottom:299.529733pt;}
.y5f{bottom:299.732933pt;}
.y14e{bottom:301.098133pt;}
.y11e{bottom:305.965467pt;}
.y86{bottom:309.126800pt;}
.y24{bottom:310.952400pt;}
.y13f{bottom:316.216267pt;}
.yec{bottom:318.196400pt;}
.y16e{bottom:321.041600pt;}
.y11d{bottom:324.632133pt;}
.y5e{bottom:325.052800pt;}
.y14d{bottom:327.323867pt;}
.y23{bottom:335.288267pt;}
.y85{bottom:335.352533pt;}
.yeb{bottom:336.863067pt;}
.y16d{bottom:339.708267pt;}
.y13e{bottom:342.442000pt;}
.y5d{bottom:343.719467pt;}
.y11c{bottom:350.857867pt;}
.y14c{bottom:353.549600pt;}
.ycb{bottom:355.614000pt;}
.y16c{bottom:358.374933pt;}
.y125{bottom:358.841200pt;}
.y22{bottom:359.624267pt;}
.y5c{bottom:362.386133pt;}
.yea{bottom:363.088933pt;}
.y13d{bottom:368.667733pt;}
.yca{bottom:374.280667pt;}
.y11b{bottom:377.083600pt;}
.y14b{bottom:379.775333pt;}
.y5b{bottom:381.052800pt;}
.ye9{bottom:381.755600pt;}
.y21{bottom:383.960267pt;}
.y16b{bottom:384.600667pt;}
.y13c{bottom:387.334400pt;}
.y84{bottom:389.368267pt;}
.y14a{bottom:398.442000pt;}
.ye8{bottom:400.422267pt;}
.yc9{bottom:400.506400pt;}
.y16a{bottom:404.600667pt;}
.y13b{bottom:406.001067pt;}
.y5a{bottom:406.372800pt;}
.y83{bottom:408.034933pt;}
.y20{bottom:408.296267pt;}
.y149{bottom:417.108667pt;}
.yc8{bottom:419.173067pt;}
.y11a{bottom:423.540267pt;}
.y13a{bottom:424.667733pt;}
.y59{bottom:425.039467pt;}
.ye7{bottom:426.647867pt;}
.y82{bottom:426.701600pt;}
.y1f{bottom:432.632133pt;}
.y119{bottom:442.206933pt;}
.y148{bottom:443.334400pt;}
.y58{bottom:443.706133pt;}
.y5{bottom:445.314400pt;}
.y81{bottom:445.368267pt;}
.yc7{bottom:445.398800pt;}
.y152{bottom:447.660133pt;}
.y139{bottom:450.893333pt;}
.y145{bottom:453.329467pt;}
.y1e{bottom:456.968133pt;}
.yb2{bottom:460.873600pt;}
.y169{bottom:462.396000pt;}
.y80{bottom:464.034933pt;}
.yc6{bottom:464.065467pt;}
.y10b{bottom:466.553733pt;}
.y57{bottom:469.026133pt;}
.y147{bottom:469.560000pt;}
.ye6{bottom:473.104667pt;}
.y138{bottom:477.119067pt;}
.yb1{bottom:479.540267pt;}
.y168{bottom:481.062667pt;}
.y1d{bottom:481.304133pt;}
.y7f{bottom:482.701600pt;}
.y10a{bottom:485.220400pt;}
.y118{bottom:487.099333pt;}
.yc5{bottom:490.291200pt;}
.ye5{bottom:491.771333pt;}
.y7e{bottom:501.368267pt;}
.y4{bottom:502.914400pt;}
.y109{bottom:503.887067pt;}
.y1c{bottom:505.640000pt;}
.yb0{bottom:505.766000pt;}
.y167{bottom:507.288267pt;}
.y56{bottom:508.453600pt;}
.ye4{bottom:510.438000pt;}
.yc4{bottom:516.516933pt;}
.yaf{bottom:524.432667pt;}
.y166{bottom:525.954933pt;}
.y146{bottom:527.355333pt;}
.y7d{bottom:527.594000pt;}
.ye3{bottom:529.104667pt;}
.y1b{bottom:529.976000pt;}
.y108{bottom:530.112800pt;}
.y137{bottom:534.914400pt;}
.y55{bottom:542.679333pt;}
.y117{bottom:543.099333pt;}
.ye2{bottom:547.771333pt;}
.y107{bottom:548.779467pt;}
.yae{bottom:550.658400pt;}
.y165{bottom:552.180800pt;}
.y136{bottom:553.581067pt;}
.y1a{bottom:554.312000pt;}
.y3{bottom:560.514400pt;}
.y54{bottom:561.346000pt;}
.y106{bottom:567.446133pt;}
.yad{bottom:569.325067pt;}
.ye1{bottom:573.996933pt;}
.yc3{bottom:574.312133pt;}
.y19{bottom:578.647867pt;}
.y135{bottom:579.806800pt;}
.y7c{bottom:581.609733pt;}
.y181{bottom:583.120400pt;}
.y53{bottom:587.571733pt;}
.yac{bottom:587.991733pt;}
.ye0{bottom:592.663600pt;}
.yc2{bottom:592.978800pt;}
.y180{bottom:601.787067pt;}
.y18{bottom:602.983867pt;}
.y134{bottom:606.032533pt;}
.y52{bottom:606.238400pt;}
.ya0{bottom:606.494267pt;}
.y116{bottom:606.658400pt;}
.y7b{bottom:607.835467pt;}
.y105{bottom:608.790000pt;}
.y164{bottom:609.976000pt;}
.ydf{bottom:611.330267pt;}
.y2{bottom:618.114400pt;}
.yc1{bottom:619.204533pt;}
.y51{bottom:624.905067pt;}
.y9f{bottom:625.160933pt;}
.y115{bottom:625.325067pt;}
.y7a{bottom:626.502133pt;}
.y17{bottom:627.319867pt;}
.y17f{bottom:628.012800pt;}
.y163{bottom:628.642667pt;}
.yab{bottom:629.335600pt;}
.yde{bottom:629.996933pt;}
.y133{bottom:632.258267pt;}
.y3f{bottom:635.571867pt;}
.yc0{bottom:637.871200pt;}
.y50{bottom:643.571733pt;}
.y114{bottom:643.991733pt;}
.y79{bottom:645.168800pt;}
.y17e{bottom:646.679467pt;}
.y9e{bottom:651.386667pt;}
.y16{bottom:651.655867pt;}
.y3e{bottom:654.238533pt;}
.y162{bottom:654.868400pt;}
.ydd{bottom:656.222800pt;}
.y132{bottom:658.483867pt;}
.y104{bottom:659.026267pt;}
.y4f{bottom:662.238400pt;}
.y113{bottom:662.658400pt;}
.y78{bottom:663.835467pt;}
.ybf{bottom:664.096933pt;}
.y17d{bottom:665.346133pt;}
.y9d{bottom:670.053333pt;}
.y3d{bottom:672.905200pt;}
.y161{bottom:673.535067pt;}
.y1{bottom:675.714400pt;}
.y15{bottom:675.991733pt;}
.y131{bottom:677.150533pt;}
.y103{bottom:677.692933pt;}
.yaa{bottom:679.571867pt;}
.y4e{bottom:680.905067pt;}
.y77{bottom:682.502133pt;}
.y17c{bottom:684.012667pt;}
.y9c{bottom:688.720000pt;}
.y112{bottom:688.884133pt;}
.ybe{bottom:690.322667pt;}
.y3c{bottom:691.571733pt;}
.y130{bottom:695.817200pt;}
.y102{bottom:696.359600pt;}
.ya9{bottom:699.571733pt;}
.y160{bottom:699.760800pt;}
.y14{bottom:700.327733pt;}
.ydc{bottom:702.679333pt;}
.y4d{bottom:707.130800pt;}
.y9b{bottom:707.386667pt;}
.y111{bottom:707.550667pt;}
.y76{bottom:708.727867pt;}
.y3b{bottom:710.238400pt;}
.ybd{bottom:716.548400pt;}
.ya8{bottom:718.238400pt;}
.ydb{bottom:721.346000pt;}
.y12f{bottom:722.042933pt;}
.y101{bottom:722.585200pt;}
.y178{bottom:724.499600pt;}
.y13{bottom:724.663600pt;}
.y144{bottom:725.455467pt;}
.y4c{bottom:725.797467pt;}
.y9a{bottom:726.053333pt;}
.y110{bottom:726.217333pt;}
.y17b{bottom:728.905067pt;}
.y3a{bottom:736.464133pt;}
.ya7{bottom:736.905067pt;}
.yda{bottom:740.012667pt;}
.y100{bottom:741.251867pt;}
.ybc{bottom:742.774133pt;}
.y177{bottom:743.166267pt;}
.y4b{bottom:744.464133pt;}
.y99{bottom:744.720000pt;}
.y10f{bottom:744.884000pt;}
.y185{bottom:746.396667pt;}
.y17a{bottom:747.571733pt;}
.y12e{bottom:748.268667pt;}
.y12{bottom:748.999733pt;}
.y39{bottom:755.130800pt;}
.y75{bottom:755.184533pt;}
.ya6{bottom:755.571733pt;}
.y15f{bottom:757.556133pt;}
.yff{bottom:759.918533pt;}
.y176{bottom:761.832933pt;}
.y4a{bottom:763.130800pt;}
.y98{bottom:763.386667pt;}
.y184{bottom:765.063333pt;}
.yd9{bottom:766.238400pt;}
.ybb{bottom:768.999867pt;}
.y11{bottom:773.335600pt;}
.y38{bottom:773.797467pt;}
.y74{bottom:773.851200pt;}
.y15e{bottom:776.222800pt;}
.y49{bottom:781.797467pt;}
.y97{bottom:782.053333pt;}
.y183{bottom:783.730000pt;}
.yd8{bottom:784.905067pt;}
.yfe{bottom:786.144267pt;}
.y10e{bottom:786.227867pt;}
.yba{bottom:787.666533pt;}
.y37{bottom:792.464133pt;}
.y73{bottom:792.517867pt;}
.y10{bottom:797.671600pt;}
.ya5{bottom:800.464133pt;}
.y182{bottom:802.396667pt;}
.y15d{bottom:802.448400pt;}
.yd7{bottom:803.571733pt;}
.yfd{bottom:804.810933pt;}
.y12d{bottom:806.063867pt;}
.y10d{bottom:806.227867pt;}
.y48{bottom:808.023200pt;}
.y96{bottom:808.279200pt;}
.y36{bottom:811.130800pt;}
.y72{bottom:811.184533pt;}
.yb9{bottom:813.892267pt;}
.ya4{bottom:819.130800pt;}
.y15c{bottom:821.115067pt;}
.yf{bottom:822.007467pt;}
.yd6{bottom:822.238400pt;}
.yfc{bottom:823.477600pt;}
.y175{bottom:824.730533pt;}
.y47{bottom:826.689867pt;}
.y95{bottom:826.945867pt;}
.y35{bottom:829.797467pt;}
.y12c{bottom:832.289600pt;}
.ya3{bottom:837.797467pt;}
.yd5{bottom:840.905067pt;}
.y46{bottom:845.356533pt;}
.ye{bottom:846.343467pt;}
.y15b{bottom:847.340800pt;}
.y34{bottom:848.464133pt;}
.yfb{bottom:849.703333pt;}
.y174{bottom:850.956267pt;}
.ya2{bottom:856.464133pt;}
.y12b{bottom:858.515333pt;}
.yd4{bottom:859.571733pt;}
.y45{bottom:864.023200pt;}
.y71{bottom:866.195067pt;}
.y179{bottom:867.130800pt;}
.y15a{bottom:868.265333pt;}
.y94{bottom:868.289600pt;}
.yfa{bottom:868.370000pt;}
.yd{bottom:870.679467pt;}
.yb8{bottom:871.687467pt;}
.y33{bottom:874.689867pt;}
.ya1{bottom:875.130800pt;}
.y173{bottom:877.182000pt;}
.y44{bottom:882.689867pt;}
.y12a{bottom:884.741067pt;}
.y70{bottom:884.861733pt;}
.yd3{bottom:885.797467pt;}
.yf9{bottom:887.036667pt;}
.y32{bottom:893.356533pt;}
.y10c{bottom:893.797467pt;}
.y159{bottom:894.491067pt;}
.yc{bottom:895.015333pt;}
.yb7{bottom:897.913200pt;}
.y43{bottom:901.356533pt;}
.y172{bottom:903.407733pt;}
.y6f{bottom:903.528400pt;}
.y129{bottom:910.966800pt;}
.y31{bottom:912.023200pt;}
.y158{bottom:913.157733pt;}
.yf8{bottom:913.262400pt;}
.yb{bottom:919.351333pt;}
.y42{bottom:920.023200pt;}
.y6e{bottom:922.195067pt;}
.yb6{bottom:924.138933pt;}
.y171{bottom:929.633467pt;}
.y30{bottom:930.689867pt;}
.yf7{bottom:931.929067pt;}
.y128{bottom:937.192533pt;}
.y41{bottom:938.689867pt;}
.y157{bottom:939.383467pt;}
.y6d{bottom:940.861733pt;}
.yb5{bottom:942.805600pt;}
.ya{bottom:943.687200pt;}
.y93{bottom:944.751600pt;}
.y2f{bottom:949.356533pt;}
.yf6{bottom:950.595733pt;}
.y127{bottom:955.859200pt;}
.y92{bottom:963.418267pt;}
.y156{bottom:965.609200pt;}
.y6c{bottom:966.181600pt;}
.y2e{bottom:968.023200pt;}
.y9{bottom:968.023333pt;}
.yb4{bottom:969.031467pt;}
.yf5{bottom:969.262400pt;}
.y126{bottom:974.525867pt;}
.y91{bottom:982.084933pt;}
.y6b{bottom:984.848267pt;}
.y155{bottom:991.834933pt;}
.y40{bottom:995.151733pt;}
.y90{bottom:1000.751600pt;}
.y6a{bottom:1003.514933pt;}
.y143{bottom:1005.140400pt;}
.yf4{bottom:1010.606267pt;}
.y154{bottom:1018.060667pt;}
.y2d{bottom:1024.485067pt;}
.y8{bottom:1024.485200pt;}
.y8f{bottom:1026.977333pt;}
.y69{bottom:1028.834933pt;}
.yb3{bottom:1030.606267pt;}
.y153{bottom:1036.727333pt;}
.h8{height:36.726562pt;}
.h6{height:40.807292pt;}
.h7{height:41.550651pt;}
.hb{height:46.681548pt;}
.h4{height:48.968750pt;}
.h9{height:57.130208pt;}
.ha{height:65.291667pt;}
.hd{height:65.354167pt;}
.h3{height:74.484375pt;}
.h5{height:89.776042pt;}
.hc{height:140.044643pt;}
.h2{height:146.906250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:75.590533pt;}
.x1{left:77.480267pt;}
.xb{left:79.370000pt;}
.x8{left:83.482933pt;}
.xc{left:87.257200pt;}
.x6{left:90.708667pt;}
.xd{left:94.488133pt;}
.x14{left:99.590533pt;}
.x16{left:103.181067pt;}
.x5{left:105.826667pt;}
.x10{left:109.606267pt;}
.x15{left:123.590533pt;}
.x9{left:193.385867pt;}
.x7{left:266.745867pt;}
.xe{left:387.702000pt;}
.x3{left:392.276133pt;}
.x2{left:432.431467pt;}
.xa{left:505.196800pt;}
.x12{left:660.769333pt;}
.x11{left:663.269333pt;}
.xf{left:665.769467pt;}
.x13{left:668.269467pt;}
}




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