
    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_b9e18dd6c5d2f457955718c9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751000;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_77a790ca2548b4245324b99b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.784000;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_8a9a9ab30bc0ea1aaedbf377.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_d969b8897ce094e55d385023.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_6ca42c2ca6ca57e468f6ae8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.179199;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_a618eebc9ed5ba795fef4d63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_729361c69c97a4625e729edf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_b9e18dd6c5d2f457955718c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751000;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_19375fc2be33995f09f88799.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;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_bda00a536e06e2ae88b4a823.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_dc8027fc5effe6f028fdbb72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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);}
.v1{vertical-align:-23.640600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:120.000000px;}
.ls1{letter-spacing:-1.800000px;}
.lsb{letter-spacing:-0.840000px;}
.lsc{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.936000px;}
.ls5{letter-spacing:1.008000px;}
.ls6{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.200000px;}
.ls3{letter-spacing:2.880000px;}
.ls2{letter-spacing:11.971380px;}
.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:-40.500000px;}
.ws2{word-spacing:-36.000000px;}
.ws7{word-spacing:-21.600000px;}
.ws9{word-spacing:-20.160000px;}
.ws8{word-spacing:-19.944000px;}
.ws3{word-spacing:-16.800000px;}
.ws1a{word-spacing:-16.620000px;}
.ws4{word-spacing:-14.820000px;}
.wsb{word-spacing:-5.184000px;}
.ws2c{word-spacing:-3.060000px;}
.ws10{word-spacing:-2.880000px;}
.ws21{word-spacing:-2.820000px;}
.ws31{word-spacing:-2.340000px;}
.wsf{word-spacing:-1.512000px;}
.ws32{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.200000px;}
.ws14{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.008000px;}
.ws19{word-spacing:-0.936000px;}
.ws11{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.576000px;}
.ws1d{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.288000px;}
.ws5{word-spacing:0.000000px;}
.ws34{word-spacing:0.120000px;}
.ws28{word-spacing:0.660000px;}
.ws2a{word-spacing:0.840000px;}
.ws18{word-spacing:1.584000px;}
.ws22{word-spacing:1.620000px;}
.ws6{word-spacing:1.800000px;}
.ws23{word-spacing:2.460000px;}
.ws1f{word-spacing:3.840000px;}
.ws2e{word-spacing:4.380000px;}
.ws33{word-spacing:4.440000px;}
.ws2f{word-spacing:4.680000px;}
.ws1e{word-spacing:4.740000px;}
.wsd{word-spacing:4.824000px;}
.ws30{word-spacing:4.920000px;}
.ws13{word-spacing:6.696000px;}
.ws25{word-spacing:9.060000px;}
.ws29{word-spacing:9.240000px;}
.ws17{word-spacing:9.720000px;}
.ws2b{word-spacing:11.640000px;}
.ws2d{word-spacing:11.880000px;}
.ws15{word-spacing:13.248000px;}
.wsc{word-spacing:13.392000px;}
.ws27{word-spacing:13.920000px;}
.wse{word-spacing:14.904000px;}
.ws24{word-spacing:15.420000px;}
.ws26{word-spacing:18.360000px;}
.ws20{word-spacing:20.160000px;}
.ws1c{word-spacing:21.000000px;}
.ws1{word-spacing:100.463400px;}
._2{margin-left:-45.000000px;}
._21{margin-left:-12.952800px;}
._e{margin-left:-11.268000px;}
._11{margin-left:-10.116000px;}
._1{margin-left:-8.100000px;}
._1f{margin-left:-7.048800px;}
._b{margin-left:-5.767200px;}
._0{margin-left:-4.500000px;}
._6{margin-left:-3.364800px;}
._3{margin-left:-2.160000px;}
._4{margin-left:-1.080000px;}
._16{width:1.116000px;}
._5{width:2.154000px;}
._a{width:3.333600px;}
._f{width:4.672800px;}
._15{width:5.760000px;}
._10{width:7.502400px;}
._d{width:8.949600px;}
._c{width:10.058400px;}
._13{width:11.800800px;}
._8{width:13.240800px;}
._14{width:15.141600px;}
._9{width:16.624800px;}
._12{width:17.920800px;}
._17{width:18.921600px;}
._25{width:20.205600px;}
._18{width:21.268800px;}
._19{width:22.428000px;}
._1e{width:23.544000px;}
._1d{width:25.120800px;}
._1a{width:26.848800px;}
._1b{width:28.245600px;}
._1c{width:29.304000px;}
._20{width:30.441600px;}
._23{width:41.520000px;}
._24{width:44.958000px;}
._28{width:53.818800px;}
._2a{width:113.278800px;}
._22{width:122.881800px;}
._29{width:128.758800px;}
._7{width:153.829800px;}
._27{width:197.818800px;}
._26{width:291.298800px;}
.fc4{color:transparent;}
.fc3{color:rgb(60,106,112);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(229,137,29);}
.fs5{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.fs7{font-size:239.070000px;}
.y0{bottom:0.000000px;}
.y31{bottom:38.232300px;}
.y30{bottom:38.870100px;}
.y45{bottom:92.232300px;}
.yb4{bottom:101.775750px;}
.y129{bottom:104.111250px;}
.y15d{bottom:104.832300px;}
.y74{bottom:108.091650px;}
.ydb{bottom:114.767700px;}
.y94{bottom:120.767700px;}
.y44{bottom:122.232300px;}
.y128{bottom:122.561250px;}
.y15c{bottom:122.982300px;}
.yb3{bottom:131.775750px;}
.y73{bottom:138.091650px;}
.y127{bottom:141.011250px;}
.y15b{bottom:141.132450px;}
.y64{bottom:143.256000px;}
.yda{bottom:144.767700px;}
.y93{bottom:151.517700px;}
.y43{bottom:152.232300px;}
.y15a{bottom:159.282300px;}
.y126{bottom:159.461400px;}
.yf7{bottom:159.767700px;}
.yb2{bottom:161.775750px;}
.y72{bottom:168.091650px;}
.y63{bottom:173.256000px;}
.y42{bottom:182.232300px;}
.y92{bottom:182.267700px;}
.y18a{bottom:182.498100px;}
.yd9{bottom:183.271800px;}
.y159{bottom:185.936250px;}
.y125{bottom:186.415200px;}
.yf6{bottom:191.267700px;}
.y2e{bottom:195.875400px;}
.yb1{bottom:200.279550px;}
.y189{bottom:200.498100px;}
.y62{bottom:203.256000px;}
.y158{bottom:204.086400px;}
.y124{bottom:204.865200px;}
.y71{bottom:206.595450px;}
.y2d{bottom:210.275400px;}
.y41{bottom:212.232300px;}
.yd8{bottom:213.271800px;}
.y188{bottom:218.498100px;}
.y91{bottom:221.521800px;}
.y157{bottom:222.236250px;}
.yf5{bottom:222.767700px;}
.y2c{bottom:224.675400px;}
.yb0{bottom:230.279550px;}
.y123{bottom:231.819150px;}
.y61{bottom:233.256000px;}
.y187{bottom:236.498100px;}
.y70{bottom:236.595450px;}
.y156{bottom:240.386250px;}
.y40{bottom:242.232300px;}
.yd7{bottom:243.271800px;}
.y122{bottom:250.269150px;}
.y90{bottom:252.271800px;}
.yf4{bottom:254.267700px;}
.y186{bottom:254.498100px;}
.yaf{bottom:260.279550px;}
.y6f{bottom:266.595450px;}
.y155{bottom:267.040200px;}
.y2b{bottom:267.275250px;}
.y121{bottom:268.719150px;}
.y28{bottom:269.525250px;}
.y60{bottom:271.759950px;}
.y185{bottom:272.498100px;}
.yd6{bottom:273.271800px;}
.y8f{bottom:283.021800px;}
.y154{bottom:285.190200px;}
.y2a{bottom:285.275250px;}
.yf3{bottom:285.767700px;}
.y27{bottom:287.525250px;}
.yae{bottom:290.279550px;}
.y120{bottom:295.673100px;}
.y6e{bottom:296.595450px;}
.y5f{bottom:301.759950px;}
.y29{bottom:303.275250px;}
.y153{bottom:303.340200px;}
.y26{bottom:305.525250px;}
.yd5{bottom:311.775750px;}
.y8e{bottom:313.771800px;}
.y11f{bottom:314.123100px;}
.yf2{bottom:317.267700px;}
.yad{bottom:320.279550px;}
.y184{bottom:321.248100px;}
.y152{bottom:329.994150px;}
.y5e{bottom:331.759950px;}
.y11e{bottom:332.573100px;}
.y183{bottom:339.248100px;}
.yd4{bottom:341.775750px;}
.y8d{bottom:344.521800px;}
.y25{bottom:348.125100px;}
.y151{bottom:348.144150px;}
.yf1{bottom:348.767700px;}
.yac{bottom:350.279550px;}
.y182{bottom:357.248100px;}
.y11d{bottom:359.527050px;}
.y150{bottom:366.294150px;}
.y5d{bottom:370.263900px;}
.yd3{bottom:371.775750px;}
.y6d{bottom:373.603500px;}
.y181{bottom:375.248100px;}
.y11c{bottom:377.977050px;}
.yf0{bottom:380.267700px;}
.y8c{bottom:383.775750px;}
.yab{bottom:388.783500px;}
.y14f{bottom:392.948100px;}
.y180{bottom:393.248100px;}
.y24{bottom:395.224950px;}
.y11b{bottom:396.427050px;}
.y5c{bottom:400.263900px;}
.yd2{bottom:401.775750px;}
.y14e{bottom:411.098100px;}
.yef{bottom:411.767850px;}
.y6c{bottom:412.107450px;}
.y23{bottom:413.224950px;}
.y8b{bottom:414.525600px;}
.y11a{bottom:414.877050px;}
.yaa{bottom:418.783500px;}
.y17f{bottom:425.002050px;}
.y14d{bottom:429.248100px;}
.y5b{bottom:430.263900px;}
.y22{bottom:431.224950px;}
.yd1{bottom:431.775600px;}
.y119{bottom:441.831000px;}
.y8a{bottom:445.275600px;}
.ya9{bottom:448.783500px;}
.yee{bottom:451.771800px;}
.y14c{bottom:455.902050px;}
.y21{bottom:457.728900px;}
.y5a{bottom:460.263900px;}
.y118{bottom:460.281000px;}
.yd0{bottom:470.279550px;}
.y14b{bottom:474.052050px;}
.y20{bottom:475.728900px;}
.ybc{bottom:476.025600px;}
.y117{bottom:478.731000px;}
.ya8{bottom:478.783500px;}
.y89{bottom:484.529550px;}
.y59{bottom:490.263900px;}
.y14a{bottom:492.202050px;}
.y1f{bottom:493.728900px;}
.y17e{bottom:496.009950px;}
.y116{bottom:497.181000px;}
.ycf{bottom:500.279550px;}
.ybb{bottom:506.775600px;}
.ya7{bottom:508.783500px;}
.y1e{bottom:511.728900px;}
.y17d{bottom:514.009950px;}
.y88{bottom:515.279550px;}
.y149{bottom:518.856000px;}
.y115{bottom:524.134950px;}
.y58{bottom:528.767850px;}
.y1d{bottom:529.728900px;}
.yce{bottom:530.279550px;}
.yed{bottom:531.779550px;}
.y17c{bottom:532.009950px;}
.y148{bottom:537.006000px;}
.y114{bottom:542.584950px;}
.y87{bottom:546.029550px;}
.ya6{bottom:547.287450px;}
.y1c{bottom:547.728900px;}
.y147{bottom:555.156000px;}
.y17b{bottom:558.513900px;}
.ycd{bottom:560.279550px;}
.y113{bottom:561.034950px;}
.yec{bottom:563.279550px;}
.y1b{bottom:565.728900px;}
.y17a{bottom:576.513900px;}
.yba{bottom:576.779550px;}
.ya5{bottom:577.287450px;}
.y112{bottom:579.484950px;}
.y146{bottom:581.809950px;}
.y86{bottom:585.283500px;}
.y1a{bottom:592.232850px;}
.y179{bottom:594.513900px;}
.yeb{bottom:594.779550px;}
.y111{bottom:597.934950px;}
.ycc{bottom:598.783500px;}
.y145{bottom:599.959950px;}
.ya4{bottom:607.287450px;}
.yb9{bottom:607.529550px;}
.y19{bottom:610.232850px;}
.y57{bottom:611.775600px;}
.y85{bottom:616.033500px;}
.y144{bottom:618.109950px;}
.y178{bottom:621.017850px;}
.y110{bottom:624.888900px;}
.yea{bottom:626.279550px;}
.y18{bottom:628.232850px;}
.ycb{bottom:628.783500px;}
.ya3{bottom:637.287450px;}
.y177{bottom:639.017850px;}
.y56{bottom:641.775600px;}
.y10f{bottom:643.338900px;}
.y143{bottom:644.763900px;}
.y17{bottom:646.232850px;}
.y84{bottom:646.783500px;}
.y176{bottom:657.017850px;}
.ye9{bottom:657.779550px;}
.yca{bottom:658.783500px;}
.y10e{bottom:661.788900px;}
.y142{bottom:662.913900px;}
.y16{bottom:664.232850px;}
.y3f{bottom:665.775600px;}
.ya2{bottom:667.287450px;}
.y83{bottom:677.533500px;}
.y55{bottom:680.279550px;}
.y141{bottom:681.063900px;}
.yf{bottom:683.224950px;}
.y175{bottom:683.521800px;}
.y10d{bottom:688.742850px;}
.yc9{bottom:688.783500px;}
.ye8{bottom:689.279550px;}
.y15{bottom:690.736800px;}
.y174{bottom:701.521800px;}
.y3e{bottom:704.279550px;}
.ya1{bottom:705.791400px;}
.y10c{bottom:707.192850px;}
.y140{bottom:707.717850px;}
.y82{bottom:708.283500px;}
.y14{bottom:708.736800px;}
.ye{bottom:709.728900px;}
.y54{bottom:710.279550px;}
.y19e{bottom:715.795200px;}
.y173{bottom:719.521800px;}
.ye7{bottom:720.779550px;}
.y10b{bottom:725.642850px;}
.y13f{bottom:725.867850px;}
.y13{bottom:726.736800px;}
.yc8{bottom:727.287450px;}
.yd{bottom:727.728900px;}
.y3d{bottom:734.279550px;}
.ya0{bottom:735.791400px;}
.yb8{bottom:739.033500px;}
.y19d{bottom:739.045200px;}
.y53{bottom:740.279550px;}
.y13e{bottom:744.017850px;}
.y12{bottom:744.736800px;}
.y172{bottom:746.025600px;}
.y81{bottom:747.537450px;}
.ye6{bottom:752.279550px;}
.y10a{bottom:752.596650px;}
.yc{bottom:754.232850px;}
.y19c{bottom:757.045200px;}
.yc7{bottom:757.287450px;}
.y11{bottom:762.736800px;}
.y171{bottom:764.025600px;}
.y3c{bottom:764.279550px;}
.y9f{bottom:765.791400px;}
.y13d{bottom:770.671650px;}
.y109{bottom:771.046650px;}
.yb{bottom:772.232850px;}
.y80{bottom:778.287450px;}
.y52{bottom:778.783500px;}
.y19b{bottom:780.295200px;}
.y10{bottom:780.736800px;}
.y170{bottom:782.025750px;}
.ye5{bottom:783.779700px;}
.yc6{bottom:787.287450px;}
.y13c{bottom:788.821800px;}
.y108{bottom:789.496800px;}
.y9e{bottom:795.791400px;}
.ya{bottom:798.736800px;}
.y3b{bottom:802.783500px;}
.y13b{bottom:806.971650px;}
.y16f{bottom:808.529550px;}
.y51{bottom:808.783500px;}
.y7f{bottom:809.037450px;}
.y107{bottom:816.450600px;}
.y9{bottom:816.736800px;}
.yc5{bottom:817.287450px;}
.ye4{bottom:823.783500px;}
.y9d{bottom:825.791400px;}
.y16e{bottom:826.529550px;}
.y19a{bottom:829.045200px;}
.y3a{bottom:832.783500px;}
.y13a{bottom:833.625600px;}
.y106{bottom:834.900750px;}
.y7e{bottom:839.787450px;}
.y16d{bottom:844.529550px;}
.y199{bottom:847.045200px;}
.y50{bottom:847.287450px;}
.y139{bottom:851.775750px;}
.y105{bottom:853.350750px;}
.ye3{bottom:855.283500px;}
.y9c{bottom:855.791400px;}
.y8{bottom:861.586650px;}
.y16c{bottom:862.529550px;}
.y39{bottom:862.783500px;}
.y198{bottom:865.045200px;}
.y138{bottom:869.925600px;}
.yb7{bottom:870.537450px;}
.y104{bottom:871.800600px;}
.y4f{bottom:877.287450px;}
.y7d{bottom:879.041400px;}
.y197{bottom:883.045200px;}
.y9b{bottom:885.791400px;}
.ye2{bottom:886.783500px;}
.y137{bottom:888.075600px;}
.y16b{bottom:889.033500px;}
.y103{bottom:890.250600px;}
.y38{bottom:892.783500px;}
.yb6{bottom:901.287450px;}
.y16a{bottom:907.033500px;}
.y4e{bottom:907.287450px;}
.y7{bottom:908.686500px;}
.y7c{bottom:909.791400px;}
.y136{bottom:914.729550px;}
.y9a{bottom:915.791400px;}
.y102{bottom:917.204550px;}
.ye1{bottom:918.283500px;}
.y169{bottom:925.033500px;}
.y37{bottom:931.287450px;}
.y196{bottom:931.795200px;}
.y135{bottom:932.879550px;}
.y101{bottom:935.654550px;}
.y4d{bottom:937.287450px;}
.y7b{bottom:940.541400px;}
.y168{bottom:943.033500px;}
.yc4{bottom:945.791250px;}
.y6{bottom:946.486500px;}
.ye0{bottom:949.783500px;}
.y195{bottom:949.795200px;}
.y134{bottom:951.029550px;}
.y99{bottom:954.295350px;}
.y6b{bottom:957.162450px;}
.y36{bottom:961.287450px;}
.y100{bottom:962.608500px;}
.y194{bottom:967.795200px;}
.y167{bottom:969.537450px;}
.y7a{bottom:971.291400px;}
.yc3{bottom:975.791250px;}
.y4c{bottom:975.791400px;}
.y133{bottom:977.683650px;}
.yff{bottom:981.058650px;}
.ydf{bottom:981.283500px;}
.y98{bottom:984.295350px;}
.y193{bottom:985.795200px;}
.y6a{bottom:987.162450px;}
.y166{bottom:987.537450px;}
.y35{bottom:991.287450px;}
.y132{bottom:995.833500px;}
.yfe{bottom:999.508650px;}
.y79{bottom:1002.041400px;}
.y5{bottom:1003.711350px;}
.y192{bottom:1003.795200px;}
.y165{bottom:1005.537450px;}
.yc2{bottom:1005.791250px;}
.y4b{bottom:1005.791400px;}
.yde{bottom:1012.783500px;}
.y97{bottom:1014.295350px;}
.y69{bottom:1017.162450px;}
.y34{bottom:1021.287450px;}
.y191{bottom:1021.795200px;}
.y131{bottom:1022.487450px;}
.y164{bottom:1023.537450px;}
.yfd{bottom:1026.462450px;}
.y4{bottom:1028.911350px;}
.y78{bottom:1032.791400px;}
.y4a{bottom:1035.791400px;}
.y130{bottom:1040.637450px;}
.yb5{bottom:1041.295350px;}
.yc1{bottom:1044.295200px;}
.y96{bottom:1044.295350px;}
.yfc{bottom:1044.912450px;}
.y163{bottom:1050.041400px;}
.y33{bottom:1051.287450px;}
.ydd{bottom:1052.787450px;}
.y68{bottom:1055.666400px;}
.y12f{bottom:1058.787450px;}
.yfb{bottom:1063.362450px;}
.y49{bottom:1065.791400px;}
.y162{bottom:1068.041400px;}
.y190{bottom:1070.545200px;}
.y77{bottom:1072.045350px;}
.yc0{bottom:1074.295200px;}
.y95{bottom:1074.295350px;}
.yfa{bottom:1081.812450px;}
.y12e{bottom:1085.441400px;}
.y67{bottom:1085.666400px;}
.y161{bottom:1086.041400px;}
.y18f{bottom:1088.545200px;}
.y76{bottom:1102.795350px;}
.y12d{bottom:1103.591400px;}
.ybf{bottom:1104.295200px;}
.y48{bottom:1104.295350px;}
.y18e{bottom:1106.545200px;}
.yf9{bottom:1108.766400px;}
.y160{bottom:1112.545350px;}
.y66{bottom:1115.666400px;}
.y32{bottom:1119.791400px;}
.y18d{bottom:1124.545200px;}
.yf8{bottom:1127.216400px;}
.y12c{bottom:1130.245350px;}
.y15f{bottom:1130.545350px;}
.ydc{bottom:1132.795350px;}
.y75{bottom:1133.545350px;}
.ybe{bottom:1134.295200px;}
.y47{bottom:1134.295350px;}
.y18c{bottom:1142.545200px;}
.y3{bottom:1146.439950px;}
.y12b{bottom:1148.395350px;}
.y15e{bottom:1148.545350px;}
.y65{bottom:1154.170350px;}
.y18b{bottom:1160.545200px;}
.ybd{bottom:1164.295200px;}
.y46{bottom:1164.295350px;}
.y12a{bottom:1166.545350px;}
.y2{bottom:1174.939950px;}
.y1{bottom:1203.439950px;}
.y2f{bottom:1215.602400px;}
.hb{height:36.048000px;}
.h8{height:45.000000px;}
.ha{height:46.617188px;}
.h9{height:54.000000px;}
.h6{height:54.072000px;}
.hc{height:57.142603px;}
.h7{height:58.271484px;}
.h4{height:63.000000px;}
.h3{height:67.500000px;}
.h2{height:67.590000px;}
.he{height:69.925781px;}
.h5{height:94.500000px;}
.hd{height:189.925781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:49.937250px;}
.xf{left:53.082300px;}
.x10{left:55.642800px;}
.xe{left:59.404500px;}
.x5{left:69.246600px;}
.x14{left:80.428350px;}
.xc{left:82.830300px;}
.x7{left:84.038700px;}
.x13{left:85.039350px;}
.x19{left:91.039500px;}
.x15{left:96.928650px;}
.xb{left:99.309750px;}
.x16{left:106.299150px;}
.x8{left:109.754100px;}
.x9{left:112.808250px;}
.x6{left:116.521650px;}
.x18{left:133.299150px;}
.x12{left:181.722450px;}
.xd{left:218.598450px;}
.x4{left:227.102400px;}
.x17{left:255.865350px;}
.x1a{left:273.874200px;}
.x11{left:492.696900px;}
.x1b{left:654.000150px;}
.x2{left:673.635300px;}
.x1{left:681.037800px;}
.x3{left:692.692200px;}
@media print{
.v1{vertical-align:-21.013867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:106.666667pt;}
.ls1{letter-spacing:-1.600000pt;}
.lsb{letter-spacing:-0.746667pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.832000pt;}
.ls5{letter-spacing:0.896000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.066667pt;}
.ls3{letter-spacing:2.560000pt;}
.ls2{letter-spacing:10.641227pt;}
.ws0{word-spacing:-36.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws7{word-spacing:-19.200000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.728000pt;}
.ws3{word-spacing:-14.933333pt;}
.ws1a{word-spacing:-14.773333pt;}
.ws4{word-spacing:-13.173333pt;}
.wsb{word-spacing:-4.608000pt;}
.ws2c{word-spacing:-2.720000pt;}
.ws10{word-spacing:-2.560000pt;}
.ws21{word-spacing:-2.506667pt;}
.ws31{word-spacing:-2.080000pt;}
.wsf{word-spacing:-1.344000pt;}
.ws32{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-1.066667pt;}
.ws14{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.896000pt;}
.ws19{word-spacing:-0.832000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.512000pt;}
.ws1d{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.256000pt;}
.ws5{word-spacing:0.000000pt;}
.ws34{word-spacing:0.106667pt;}
.ws28{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.746667pt;}
.ws18{word-spacing:1.408000pt;}
.ws22{word-spacing:1.440000pt;}
.ws6{word-spacing:1.600000pt;}
.ws23{word-spacing:2.186667pt;}
.ws1f{word-spacing:3.413333pt;}
.ws2e{word-spacing:3.893333pt;}
.ws33{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.160000pt;}
.ws1e{word-spacing:4.213333pt;}
.wsd{word-spacing:4.288000pt;}
.ws30{word-spacing:4.373333pt;}
.ws13{word-spacing:5.952000pt;}
.ws25{word-spacing:8.053333pt;}
.ws29{word-spacing:8.213333pt;}
.ws17{word-spacing:8.640000pt;}
.ws2b{word-spacing:10.346667pt;}
.ws2d{word-spacing:10.560000pt;}
.ws15{word-spacing:11.776000pt;}
.wsc{word-spacing:11.904000pt;}
.ws27{word-spacing:12.373333pt;}
.wse{word-spacing:13.248000pt;}
.ws24{word-spacing:13.706667pt;}
.ws26{word-spacing:16.320000pt;}
.ws20{word-spacing:17.920000pt;}
.ws1c{word-spacing:18.666667pt;}
.ws1{word-spacing:89.300800pt;}
._2{margin-left:-40.000000pt;}
._21{margin-left:-11.513600pt;}
._e{margin-left:-10.016000pt;}
._11{margin-left:-8.992000pt;}
._1{margin-left:-7.200000pt;}
._1f{margin-left:-6.265600pt;}
._b{margin-left:-5.126400pt;}
._0{margin-left:-4.000000pt;}
._6{margin-left:-2.990933pt;}
._3{margin-left:-1.920000pt;}
._4{margin-left:-0.960000pt;}
._16{width:0.992000pt;}
._5{width:1.914667pt;}
._a{width:2.963200pt;}
._f{width:4.153600pt;}
._15{width:5.120000pt;}
._10{width:6.668800pt;}
._d{width:7.955200pt;}
._c{width:8.940800pt;}
._13{width:10.489600pt;}
._8{width:11.769600pt;}
._14{width:13.459200pt;}
._9{width:14.777600pt;}
._12{width:15.929600pt;}
._17{width:16.819200pt;}
._25{width:17.960533pt;}
._18{width:18.905600pt;}
._19{width:19.936000pt;}
._1e{width:20.928000pt;}
._1d{width:22.329600pt;}
._1a{width:23.865600pt;}
._1b{width:25.107200pt;}
._1c{width:26.048000pt;}
._20{width:27.059200pt;}
._23{width:36.906667pt;}
._24{width:39.962667pt;}
._28{width:47.838933pt;}
._2a{width:100.692267pt;}
._22{width:109.228267pt;}
._29{width:114.452267pt;}
._7{width:136.737600pt;}
._27{width:175.838933pt;}
._26{width:258.932267pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.fs7{font-size:212.506667pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:33.984267pt;}
.y30{bottom:34.551200pt;}
.y45{bottom:81.984267pt;}
.yb4{bottom:90.467333pt;}
.y129{bottom:92.543333pt;}
.y15d{bottom:93.184267pt;}
.y74{bottom:96.081467pt;}
.ydb{bottom:102.015733pt;}
.y94{bottom:107.349067pt;}
.y44{bottom:108.650933pt;}
.y128{bottom:108.943333pt;}
.y15c{bottom:109.317600pt;}
.yb3{bottom:117.134000pt;}
.y73{bottom:122.748133pt;}
.y127{bottom:125.343333pt;}
.y15b{bottom:125.451067pt;}
.y64{bottom:127.338667pt;}
.yda{bottom:128.682400pt;}
.y93{bottom:134.682400pt;}
.y43{bottom:135.317600pt;}
.y15a{bottom:141.584267pt;}
.y126{bottom:141.743467pt;}
.yf7{bottom:142.015733pt;}
.yb2{bottom:143.800667pt;}
.y72{bottom:149.414800pt;}
.y63{bottom:154.005333pt;}
.y42{bottom:161.984267pt;}
.y92{bottom:162.015733pt;}
.y18a{bottom:162.220533pt;}
.yd9{bottom:162.908267pt;}
.y159{bottom:165.276667pt;}
.y125{bottom:165.702400pt;}
.yf6{bottom:170.015733pt;}
.y2e{bottom:174.111467pt;}
.yb1{bottom:178.026267pt;}
.y189{bottom:178.220533pt;}
.y62{bottom:180.672000pt;}
.y158{bottom:181.410133pt;}
.y124{bottom:182.102400pt;}
.y71{bottom:183.640400pt;}
.y2d{bottom:186.911467pt;}
.y41{bottom:188.650933pt;}
.yd8{bottom:189.574933pt;}
.y188{bottom:194.220533pt;}
.y91{bottom:196.908267pt;}
.y157{bottom:197.543333pt;}
.yf5{bottom:198.015733pt;}
.y2c{bottom:199.711467pt;}
.yb0{bottom:204.692933pt;}
.y123{bottom:206.061467pt;}
.y61{bottom:207.338667pt;}
.y187{bottom:210.220533pt;}
.y70{bottom:210.307067pt;}
.y156{bottom:213.676667pt;}
.y40{bottom:215.317600pt;}
.yd7{bottom:216.241600pt;}
.y122{bottom:222.461467pt;}
.y90{bottom:224.241600pt;}
.yf4{bottom:226.015733pt;}
.y186{bottom:226.220533pt;}
.yaf{bottom:231.359600pt;}
.y6f{bottom:236.973733pt;}
.y155{bottom:237.369067pt;}
.y2b{bottom:237.578000pt;}
.y121{bottom:238.861467pt;}
.y28{bottom:239.578000pt;}
.y60{bottom:241.564400pt;}
.y185{bottom:242.220533pt;}
.yd6{bottom:242.908267pt;}
.y8f{bottom:251.574933pt;}
.y154{bottom:253.502400pt;}
.y2a{bottom:253.578000pt;}
.yf3{bottom:254.015733pt;}
.y27{bottom:255.578000pt;}
.yae{bottom:258.026267pt;}
.y120{bottom:262.820533pt;}
.y6e{bottom:263.640400pt;}
.y5f{bottom:268.231067pt;}
.y29{bottom:269.578000pt;}
.y153{bottom:269.635733pt;}
.y26{bottom:271.578000pt;}
.yd5{bottom:277.134000pt;}
.y8e{bottom:278.908267pt;}
.y11f{bottom:279.220533pt;}
.yf2{bottom:282.015733pt;}
.yad{bottom:284.692933pt;}
.y184{bottom:285.553867pt;}
.y152{bottom:293.328133pt;}
.y5e{bottom:294.897733pt;}
.y11e{bottom:295.620533pt;}
.y183{bottom:301.553867pt;}
.yd4{bottom:303.800667pt;}
.y8d{bottom:306.241600pt;}
.y25{bottom:309.444533pt;}
.y151{bottom:309.461467pt;}
.yf1{bottom:310.015733pt;}
.yac{bottom:311.359600pt;}
.y182{bottom:317.553867pt;}
.y11d{bottom:319.579600pt;}
.y150{bottom:325.594800pt;}
.y5d{bottom:329.123467pt;}
.yd3{bottom:330.467333pt;}
.y6d{bottom:332.092000pt;}
.y181{bottom:333.553867pt;}
.y11c{bottom:335.979600pt;}
.yf0{bottom:338.015733pt;}
.y8c{bottom:341.134000pt;}
.yab{bottom:345.585333pt;}
.y14f{bottom:349.287200pt;}
.y180{bottom:349.553867pt;}
.y24{bottom:351.311067pt;}
.y11b{bottom:352.379600pt;}
.y5c{bottom:355.790133pt;}
.yd2{bottom:357.134000pt;}
.y14e{bottom:365.420533pt;}
.yef{bottom:366.015867pt;}
.y6c{bottom:366.317733pt;}
.y23{bottom:367.311067pt;}
.y8b{bottom:368.467200pt;}
.y11a{bottom:368.779600pt;}
.yaa{bottom:372.252000pt;}
.y17f{bottom:377.779600pt;}
.y14d{bottom:381.553867pt;}
.y5b{bottom:382.456800pt;}
.y22{bottom:383.311067pt;}
.yd1{bottom:383.800533pt;}
.y119{bottom:392.738667pt;}
.y8a{bottom:395.800533pt;}
.ya9{bottom:398.918667pt;}
.yee{bottom:401.574933pt;}
.y14c{bottom:405.246267pt;}
.y21{bottom:406.870133pt;}
.y5a{bottom:409.123467pt;}
.y118{bottom:409.138667pt;}
.yd0{bottom:418.026267pt;}
.y14b{bottom:421.379600pt;}
.y20{bottom:422.870133pt;}
.ybc{bottom:423.133867pt;}
.y117{bottom:425.538667pt;}
.ya8{bottom:425.585333pt;}
.y89{bottom:430.692933pt;}
.y59{bottom:435.790133pt;}
.y14a{bottom:437.512933pt;}
.y1f{bottom:438.870133pt;}
.y17e{bottom:440.897733pt;}
.y116{bottom:441.938667pt;}
.ycf{bottom:444.692933pt;}
.ybb{bottom:450.467200pt;}
.ya7{bottom:452.252000pt;}
.y1e{bottom:454.870133pt;}
.y17d{bottom:456.897733pt;}
.y88{bottom:458.026267pt;}
.y149{bottom:461.205333pt;}
.y115{bottom:465.897733pt;}
.y58{bottom:470.015867pt;}
.y1d{bottom:470.870133pt;}
.yce{bottom:471.359600pt;}
.yed{bottom:472.692933pt;}
.y17c{bottom:472.897733pt;}
.y148{bottom:477.338667pt;}
.y114{bottom:482.297733pt;}
.y87{bottom:485.359600pt;}
.ya6{bottom:486.477733pt;}
.y1c{bottom:486.870133pt;}
.y147{bottom:493.472000pt;}
.y17b{bottom:496.456800pt;}
.ycd{bottom:498.026267pt;}
.y113{bottom:498.697733pt;}
.yec{bottom:500.692933pt;}
.y1b{bottom:502.870133pt;}
.y17a{bottom:512.456800pt;}
.yba{bottom:512.692933pt;}
.ya5{bottom:513.144400pt;}
.y112{bottom:515.097733pt;}
.y146{bottom:517.164400pt;}
.y86{bottom:520.252000pt;}
.y1a{bottom:526.429200pt;}
.y179{bottom:528.456800pt;}
.yeb{bottom:528.692933pt;}
.y111{bottom:531.497733pt;}
.ycc{bottom:532.252000pt;}
.y145{bottom:533.297733pt;}
.ya4{bottom:539.811067pt;}
.yb9{bottom:540.026267pt;}
.y19{bottom:542.429200pt;}
.y57{bottom:543.800533pt;}
.y85{bottom:547.585333pt;}
.y144{bottom:549.431067pt;}
.y178{bottom:552.015867pt;}
.y110{bottom:555.456800pt;}
.yea{bottom:556.692933pt;}
.y18{bottom:558.429200pt;}
.ycb{bottom:558.918667pt;}
.ya3{bottom:566.477733pt;}
.y177{bottom:568.015867pt;}
.y56{bottom:570.467200pt;}
.y10f{bottom:571.856800pt;}
.y143{bottom:573.123467pt;}
.y17{bottom:574.429200pt;}
.y84{bottom:574.918667pt;}
.y176{bottom:584.015867pt;}
.ye9{bottom:584.692933pt;}
.yca{bottom:585.585333pt;}
.y10e{bottom:588.256800pt;}
.y142{bottom:589.256800pt;}
.y16{bottom:590.429200pt;}
.y3f{bottom:591.800533pt;}
.ya2{bottom:593.144400pt;}
.y83{bottom:602.252000pt;}
.y55{bottom:604.692933pt;}
.y141{bottom:605.390133pt;}
.yf{bottom:607.311067pt;}
.y175{bottom:607.574933pt;}
.y10d{bottom:612.215867pt;}
.yc9{bottom:612.252000pt;}
.ye8{bottom:612.692933pt;}
.y15{bottom:613.988267pt;}
.y174{bottom:623.574933pt;}
.y3e{bottom:626.026267pt;}
.ya1{bottom:627.370133pt;}
.y10c{bottom:628.615867pt;}
.y140{bottom:629.082533pt;}
.y82{bottom:629.585333pt;}
.y14{bottom:629.988267pt;}
.ye{bottom:630.870133pt;}
.y54{bottom:631.359600pt;}
.y19e{bottom:636.262400pt;}
.y173{bottom:639.574933pt;}
.ye7{bottom:640.692933pt;}
.y10b{bottom:645.015867pt;}
.y13f{bottom:645.215867pt;}
.y13{bottom:645.988267pt;}
.yc8{bottom:646.477733pt;}
.yd{bottom:646.870133pt;}
.y3d{bottom:652.692933pt;}
.ya0{bottom:654.036800pt;}
.yb8{bottom:656.918667pt;}
.y19d{bottom:656.929067pt;}
.y53{bottom:658.026267pt;}
.y13e{bottom:661.349200pt;}
.y12{bottom:661.988267pt;}
.y172{bottom:663.133867pt;}
.y81{bottom:664.477733pt;}
.ye6{bottom:668.692933pt;}
.y10a{bottom:668.974800pt;}
.yc{bottom:670.429200pt;}
.y19c{bottom:672.929067pt;}
.yc7{bottom:673.144400pt;}
.y11{bottom:677.988267pt;}
.y171{bottom:679.133867pt;}
.y3c{bottom:679.359600pt;}
.y9f{bottom:680.703467pt;}
.y13d{bottom:685.041467pt;}
.y109{bottom:685.374800pt;}
.yb{bottom:686.429200pt;}
.y80{bottom:691.811067pt;}
.y52{bottom:692.252000pt;}
.y19b{bottom:693.595733pt;}
.y10{bottom:693.988267pt;}
.y170{bottom:695.134000pt;}
.ye5{bottom:696.693067pt;}
.yc6{bottom:699.811067pt;}
.y13c{bottom:701.174933pt;}
.y108{bottom:701.774933pt;}
.y9e{bottom:707.370133pt;}
.ya{bottom:709.988267pt;}
.y3b{bottom:713.585333pt;}
.y13b{bottom:717.308133pt;}
.y16f{bottom:718.692933pt;}
.y51{bottom:718.918667pt;}
.y7f{bottom:719.144400pt;}
.y107{bottom:725.733867pt;}
.y9{bottom:725.988267pt;}
.yc5{bottom:726.477733pt;}
.ye4{bottom:732.252000pt;}
.y9d{bottom:734.036800pt;}
.y16e{bottom:734.692933pt;}
.y19a{bottom:736.929067pt;}
.y3a{bottom:740.252000pt;}
.y13a{bottom:741.000533pt;}
.y106{bottom:742.134000pt;}
.y7e{bottom:746.477733pt;}
.y16d{bottom:750.692933pt;}
.y199{bottom:752.929067pt;}
.y50{bottom:753.144400pt;}
.y139{bottom:757.134000pt;}
.y105{bottom:758.534000pt;}
.ye3{bottom:760.252000pt;}
.y9c{bottom:760.703467pt;}
.y8{bottom:765.854800pt;}
.y16c{bottom:766.692933pt;}
.y39{bottom:766.918667pt;}
.y198{bottom:768.929067pt;}
.y138{bottom:773.267200pt;}
.yb7{bottom:773.811067pt;}
.y104{bottom:774.933867pt;}
.y4f{bottom:779.811067pt;}
.y7d{bottom:781.370133pt;}
.y197{bottom:784.929067pt;}
.y9b{bottom:787.370133pt;}
.ye2{bottom:788.252000pt;}
.y137{bottom:789.400533pt;}
.y16b{bottom:790.252000pt;}
.y103{bottom:791.333867pt;}
.y38{bottom:793.585333pt;}
.yb6{bottom:801.144400pt;}
.y16a{bottom:806.252000pt;}
.y4e{bottom:806.477733pt;}
.y7{bottom:807.721333pt;}
.y7c{bottom:808.703467pt;}
.y136{bottom:813.092933pt;}
.y9a{bottom:814.036800pt;}
.y102{bottom:815.292933pt;}
.ye1{bottom:816.252000pt;}
.y169{bottom:822.252000pt;}
.y37{bottom:827.811067pt;}
.y196{bottom:828.262400pt;}
.y135{bottom:829.226267pt;}
.y101{bottom:831.692933pt;}
.y4d{bottom:833.144400pt;}
.y7b{bottom:836.036800pt;}
.y168{bottom:838.252000pt;}
.yc4{bottom:840.703333pt;}
.y6{bottom:841.321333pt;}
.ye0{bottom:844.252000pt;}
.y195{bottom:844.262400pt;}
.y134{bottom:845.359600pt;}
.y99{bottom:848.262533pt;}
.y6b{bottom:850.811067pt;}
.y36{bottom:854.477733pt;}
.y100{bottom:855.652000pt;}
.y194{bottom:860.262400pt;}
.y167{bottom:861.811067pt;}
.y7a{bottom:863.370133pt;}
.yc3{bottom:867.370000pt;}
.y4c{bottom:867.370133pt;}
.y133{bottom:869.052133pt;}
.yff{bottom:872.052133pt;}
.ydf{bottom:872.252000pt;}
.y98{bottom:874.929200pt;}
.y193{bottom:876.262400pt;}
.y6a{bottom:877.477733pt;}
.y166{bottom:877.811067pt;}
.y35{bottom:881.144400pt;}
.y132{bottom:885.185333pt;}
.yfe{bottom:888.452133pt;}
.y79{bottom:890.703467pt;}
.y5{bottom:892.187867pt;}
.y192{bottom:892.262400pt;}
.y165{bottom:893.811067pt;}
.yc2{bottom:894.036667pt;}
.y4b{bottom:894.036800pt;}
.yde{bottom:900.252000pt;}
.y97{bottom:901.595867pt;}
.y69{bottom:904.144400pt;}
.y34{bottom:907.811067pt;}
.y191{bottom:908.262400pt;}
.y131{bottom:908.877733pt;}
.y164{bottom:909.811067pt;}
.yfd{bottom:912.411067pt;}
.y4{bottom:914.587867pt;}
.y78{bottom:918.036800pt;}
.y4a{bottom:920.703467pt;}
.y130{bottom:925.011067pt;}
.yb5{bottom:925.595867pt;}
.yc1{bottom:928.262400pt;}
.y96{bottom:928.262533pt;}
.yfc{bottom:928.811067pt;}
.y163{bottom:933.370133pt;}
.y33{bottom:934.477733pt;}
.ydd{bottom:935.811067pt;}
.y68{bottom:938.370133pt;}
.y12f{bottom:941.144400pt;}
.yfb{bottom:945.211067pt;}
.y49{bottom:947.370133pt;}
.y162{bottom:949.370133pt;}
.y190{bottom:951.595733pt;}
.y77{bottom:952.929200pt;}
.yc0{bottom:954.929067pt;}
.y95{bottom:954.929200pt;}
.yfa{bottom:961.611067pt;}
.y12e{bottom:964.836800pt;}
.y67{bottom:965.036800pt;}
.y161{bottom:965.370133pt;}
.y18f{bottom:967.595733pt;}
.y76{bottom:980.262533pt;}
.y12d{bottom:980.970133pt;}
.ybf{bottom:981.595733pt;}
.y48{bottom:981.595867pt;}
.y18e{bottom:983.595733pt;}
.yf9{bottom:985.570133pt;}
.y160{bottom:988.929200pt;}
.y66{bottom:991.703467pt;}
.y32{bottom:995.370133pt;}
.y18d{bottom:999.595733pt;}
.yf8{bottom:1001.970133pt;}
.y12c{bottom:1004.662533pt;}
.y15f{bottom:1004.929200pt;}
.ydc{bottom:1006.929200pt;}
.y75{bottom:1007.595867pt;}
.ybe{bottom:1008.262400pt;}
.y47{bottom:1008.262533pt;}
.y18c{bottom:1015.595733pt;}
.y3{bottom:1019.057733pt;}
.y12b{bottom:1020.795867pt;}
.y15e{bottom:1020.929200pt;}
.y65{bottom:1025.929200pt;}
.y18b{bottom:1031.595733pt;}
.ybd{bottom:1034.929067pt;}
.y46{bottom:1034.929200pt;}
.y12a{bottom:1036.929200pt;}
.y2{bottom:1044.391067pt;}
.y1{bottom:1069.724400pt;}
.y2f{bottom:1080.535467pt;}
.hb{height:32.042667pt;}
.h8{height:40.000000pt;}
.ha{height:41.437500pt;}
.h9{height:48.000000pt;}
.h6{height:48.064000pt;}
.hc{height:50.793425pt;}
.h7{height:51.796875pt;}
.h4{height:56.000000pt;}
.h3{height:60.000000pt;}
.h2{height:60.080000pt;}
.he{height:62.156250pt;}
.h5{height:84.000000pt;}
.hd{height:168.822917pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:44.388667pt;}
.xf{left:47.184267pt;}
.x10{left:49.460267pt;}
.xe{left:52.804000pt;}
.x5{left:61.552533pt;}
.x14{left:71.491867pt;}
.xc{left:73.626933pt;}
.x7{left:74.701067pt;}
.x13{left:75.590533pt;}
.x19{left:80.924000pt;}
.x15{left:86.158800pt;}
.xb{left:88.275333pt;}
.x16{left:94.488133pt;}
.x8{left:97.559200pt;}
.x9{left:100.274000pt;}
.x6{left:103.574800pt;}
.x18{left:118.488133pt;}
.x12{left:161.531067pt;}
.xd{left:194.309733pt;}
.x4{left:201.868800pt;}
.x17{left:227.435867pt;}
.x1a{left:243.443733pt;}
.x11{left:437.952800pt;}
.x1b{left:581.333467pt;}
.x2{left:598.786933pt;}
.x1{left:605.366933pt;}
.x3{left:615.726400pt;}
}




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