
    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_4ab5c64ef7113e6f411be6b8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_00f5f88118e485ba50f6a04e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_40f6feabb637c70ff7359949.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d0ad8840c40d7db6cfc2b14c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_d0445f7914e8635e61eb7630.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_fec0b6faf1cd5647b0b697cf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_653d8761ab2fa5b54e25ff96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_19d7f29164149f573ad73812.woff')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_8a235a3b778680919135a259.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aeb80b2166c4993041df2355.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3c77a30961fcdbe0e5a41312.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_10e05657eda254af4bb47b70.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_ce9ee0ebec2f256407c413ce.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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_5990d6a755c6f2b49f97d2be.woff')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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);}
.m2{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,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);}
.v5{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:40.920000px;}
.v3{vertical-align:72.000000px;}
.v2{vertical-align:92.160000px;}
.v4{vertical-align:161.544000px;}
.ls2a{letter-spacing:-0.363600px;}
.ls20{letter-spacing:-0.358200px;}
.ls21{letter-spacing:-0.319800px;}
.lsb{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.115200px;}
.ls10{letter-spacing:-0.112200px;}
.ls33{letter-spacing:-0.072000px;}
.ls23{letter-spacing:-0.060600px;}
.ls2f{letter-spacing:-0.058320px;}
.ls29{letter-spacing:-0.048240px;}
.ls1f{letter-spacing:-0.039600px;}
.ls25{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000006px;}
.lse{letter-spacing:0.038160px;}
.ls11{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.067800px;}
.ls15{letter-spacing:0.136200px;}
.ls32{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.204600px;}
.ls12{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.283200px;}
.ls30{letter-spacing:0.364320px;}
.ls1e{letter-spacing:0.873216px;}
.ls31{letter-spacing:30.143520px;}
.ls19{letter-spacing:36.216288px;}
.ls18{letter-spacing:36.288000px;}
.lsc{letter-spacing:49.233600px;}
.lsd{letter-spacing:49.284000px;}
.ls2e{letter-spacing:49.320000px;}
.ls8{letter-spacing:53.316000px;}
.ls26{letter-spacing:57.549600px;}
.ls1b{letter-spacing:57.600000px;}
.ls0{letter-spacing:59.136768px;}
.ls9{letter-spacing:61.833600px;}
.lsa{letter-spacing:61.884000px;}
.ls3{letter-spacing:65.841600px;}
.ls4{letter-spacing:65.892000px;}
.ls14{letter-spacing:70.149600px;}
.ls13{letter-spacing:70.200000px;}
.ls16{letter-spacing:76.449600px;}
.ls17{letter-spacing:76.500000px;}
.ls5{letter-spacing:102.312000px;}
.ls2c{letter-spacing:124.149600px;}
.ls2d{letter-spacing:124.200000px;}
.ls2b{letter-spacing:124.320000px;}
.ls2{letter-spacing:253.956000px;}
.ls28{letter-spacing:255.549600px;}
.ls27{letter-spacing:255.600000px;}
.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;}
}
.ws15{word-spacing:-48.848544px;}
.ws10{word-spacing:-48.600000px;}
.ws2d{word-spacing:-40.680000px;}
.ws6{word-spacing:-40.032006px;}
.ws5{word-spacing:-40.032000px;}
.ws22{word-spacing:-38.196960px;}
.ws27{word-spacing:-37.946304px;}
.ws13{word-spacing:-37.913760px;}
.ws26{word-spacing:-37.874160px;}
.ws16{word-spacing:-35.364240px;}
.ws11{word-spacing:-35.310240px;}
.ws2e{word-spacing:-32.576544px;}
.ws1b{word-spacing:-32.544000px;}
.ws2a{word-spacing:-32.528304px;}
.ws2b{word-spacing:-32.212944px;}
.ws1d{word-spacing:-30.172176px;}
.ws7{word-spacing:-30.024000px;}
.ws12{word-spacing:-29.777760px;}
.ws28{word-spacing:-27.206784px;}
.ws29{word-spacing:-27.198144px;}
.ws2{word-spacing:-27.174240px;}
.ws19{word-spacing:-24.440544px;}
.ws2c{word-spacing:-24.408000px;}
.ws0{word-spacing:-17.606304px;}
.ws23{word-spacing:-17.573760px;}
.ws1f{word-spacing:-16.488000px;}
.ws24{word-spacing:-16.304544px;}
.ws9{word-spacing:-16.272000px;}
.ws25{word-spacing:-14.855040px;}
.ws17{word-spacing:-13.505760px;}
.wse{word-spacing:-10.934784px;}
.wsd{word-spacing:-10.902240px;}
.ws3{word-spacing:-2.275200px;}
.ws20{word-spacing:-0.795264px;}
.wsf{word-spacing:-0.058939px;}
.ws1{word-spacing:0.000000px;}
.ws21{word-spacing:0.120000px;}
.ws18{word-spacing:0.152880px;}
.ws31{word-spacing:1.384800px;}
.wsa{word-spacing:565.919520px;}
.ws14{word-spacing:710.104320px;}
.wsb{word-spacing:1274.699520px;}
.wsc{word-spacing:1346.579520px;}
.ws30{word-spacing:1866.385344px;}
.ws1e{word-spacing:1886.532000px;}
.ws4{word-spacing:1905.216000px;}
.ws2f{word-spacing:1997.227680px;}
.ws1a{word-spacing:2161.008000px;}
.ws8{word-spacing:2197.848000px;}
.ws1c{word-spacing:4581.948000px;}
._c{margin-left:-4881.266880px;}
._d{margin-left:-4790.460000px;}
._a{margin-left:-14.688000px;}
._9{margin-left:-10.944000px;}
._4{margin-left:-5.916960px;}
._5{margin-left:-4.809600px;}
._b{margin-left:-3.762000px;}
._3{margin-left:-2.525040px;}
._0{margin-left:-1.056960px;}
._1{width:1.010880px;}
._2{width:2.818080px;}
._7{width:31.527840px;}
._8{width:2177.274240px;}
._6{width:2214.114240px;}
._e{width:2223.244080px;}
.fc7{color:transparent;}
.fc3{color:rgb(215,0,110);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(137,137,137);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(0,56,101);}
.fc1{color:rgb(75,160,175);}
.fc0{color:rgb(5,95,130);}
.fs24{font-size:7.200000px;}
.fsd{font-size:48.240000px;}
.fse{font-size:48.384000px;}
.fs10{font-size:58.938898px;}
.fs1a{font-size:59.760000px;}
.fs20{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs1f{font-size:72.144000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:77.904000px;}
.fs16{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs1e{font-size:90.000000px;}
.fs1d{font-size:90.144000px;}
.fs9{font-size:108.000000px;}
.fs1c{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs13{font-size:131.760000px;}
.fs12{font-size:131.904000px;}
.fs0{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs11{font-size:156.240000px;}
.fs19{font-size:156.384000px;}
.fs15{font-size:167.760000px;}
.fs14{font-size:167.904000px;}
.fs22{font-size:180.000000px;}
.fsb{font-size:216.000000px;}
.fs18{font-size:216.144000px;}
.fsc{font-size:239.760000px;}
.fs23{font-size:239.904000px;}
.fs1{font-size:264.240000px;}
.fs2{font-size:264.384000px;}
.fs21{font-size:288.000000px;}
.fs5{font-size:324.144000px;}
.fs1b{font-size:360.000000px;}
.fsf{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:15.956633px;}
.y65{bottom:30.888000px;}
.y11d{bottom:30.960000px;}
.y12{bottom:31.392000px;}
.y117{bottom:32.472000px;}
.yfa{bottom:40.968000px;}
.y68{bottom:45.288000px;}
.yc4{bottom:54.900000px;}
.y2e{bottom:59.214576px;}
.y30{bottom:59.214591px;}
.y47{bottom:65.736000px;}
.yce{bottom:67.680000px;}
.y11a{bottom:67.968000px;}
.y67{bottom:77.724000px;}
.yd1{bottom:80.280000px;}
.y82{bottom:84.240000px;}
.y6{bottom:89.676000px;}
.y46{bottom:90.936000px;}
.y119{bottom:93.168000px;}
.y11{bottom:93.600000px;}
.y27{bottom:97.308000px;}
.y3d{bottom:104.436000px;}
.y5{bottom:106.056000px;}
.yf0{bottom:106.236000px;}
.y56{bottom:108.576000px;}
.y66{bottom:110.124000px;}
.y54{bottom:111.276000px;}
.y1f{bottom:112.932000px;}
.y129{bottom:113.292000px;}
.yde{bottom:114.192000px;}
.yf9{bottom:115.704000px;}
.ybb{bottom:115.890000px;}
.y45{bottom:116.136000px;}
.ye8{bottom:116.316000px;}
.y63{bottom:116.676000px;}
.ya2{bottom:116.928000px;}
.y118{bottom:118.368000px;}
.yb9{bottom:125.316000px;}
.y108{bottom:125.784000px;}
.y43{bottom:126.144000px;}
.y55{bottom:126.576000px;}
.y81{bottom:127.440000px;}
.y10{bottom:133.596000px;}
.yef{bottom:135.756000px;}
.y28{bottom:136.260000px;}
.ya1{bottom:136.728000px;}
.y3c{bottom:140.076000px;}
.y128{bottom:141.012000px;}
.y44{bottom:141.336000px;}
.y8d{bottom:143.712000px;}
.y9c{bottom:144.108000px;}
.y1e{bottom:145.332000px;}
.y2d{bottom:145.747876px;}
.y31{bottom:145.747890px;}
.y104{bottom:146.052000px;}
.y72{bottom:148.392000px;}
.y53{bottom:148.716000px;}
.yf1{bottom:151.920000px;}
.yd4{bottom:160.125000px;}
.ydd{bottom:160.455000px;}
.ye7{bottom:161.670000px;}
.y62{bottom:162.930000px;}
.ya0{bottom:163.620000px;}
.y107{bottom:164.670000px;}
.y26{bottom:164.985000px;}
.yb8{bottom:165.630000px;}
.y9b{bottom:165.705000px;}
.y80{bottom:170.640000px;}
.yf{bottom:173.190000px;}
.yf8{bottom:177.990000px;}
.y1d{bottom:179.715000px;}
.yc1{bottom:180.900000px;}
.y57{bottom:182.130000px;}
.y3b{bottom:183.090000px;}
.y52{bottom:186.150000px;}
.y103{bottom:186.375000px;}
.y9a{bottom:187.305000px;}
.y2c{bottom:189.003825px;}
.y123{bottom:189.825000px;}
.y8c{bottom:190.155000px;}
.yd3{bottom:196.170000px;}
.y9f{bottom:197.025000px;}
.y106{bottom:203.550000px;}
.yb7{bottom:205.995000px;}
.ydc{bottom:206.895000px;}
.ye6{bottom:207.075000px;}
.y7f{bottom:207.930000px;}
.y71{bottom:208.695000px;}
.y61{bottom:209.010000px;}
.y9e{bottom:218.625000px;}
.ye{bottom:220.890000px;}
.y99{bottom:223.530000px;}
.yd0{bottom:223.815000px;}
.ybf{bottom:223.890000px;}
.yc3{bottom:223.950000px;}
.y3a{bottom:226.335000px;}
.y42{bottom:226.695000px;}
.yd2{bottom:232.170000px;}
.y8b{bottom:236.415000px;}
.yf7{bottom:237.600000px;}
.y51{bottom:238.755000px;}
.y9d{bottom:244.155000px;}
.y122{bottom:244.290000px;}
.yee{bottom:246.270000px;}
.yb6{bottom:246.315000px;}
.y98{bottom:246.930000px;}
.yae{bottom:249.450000px;}
.y7e{bottom:251.130000px;}
.ydb{bottom:253.365000px;}
.y70{bottom:254.085000px;}
.y86{bottom:257.430000px;}
.ycf{bottom:259.815000px;}
.ybd{bottom:259.920000px;}
.yc2{bottom:259.950000px;}
.yd{bottom:260.895000px;}
.y39{bottom:261.975000px;}
.ye5{bottom:267.375000px;}
.ycd{bottom:273.495000px;}
.yed{bottom:275.835000px;}
.y116{bottom:278.610000px;}
.y102{bottom:282.165000px;}
.y91{bottom:284.145000px;}
.y8a{bottom:284.505000px;}
.y60{bottom:284.760000px;}
.yf6{bottom:289.440000px;}
.ybc{bottom:289.980000px;}
.y105{bottom:290.415000px;}
.y23{bottom:290.730000px;}
.y50{bottom:291.135000px;}
.y1c{bottom:293.760000px;}
.y7d{bottom:294.330000px;}
.yad{bottom:294.810000px;}
.yda{bottom:299.625000px;}
.y2a{bottom:300.165000px;}
.yc{bottom:300.495000px;}
.y85{bottom:300.630000px;}
.yb5{bottom:301.755000px;}
.y38{bottom:305.175000px;}
.y121{bottom:309.090000px;}
.ycc{bottom:309.495000px;}
.y115{bottom:311.010000px;}
.ye4{bottom:312.735000px;}
.y6f{bottom:314.565000px;}
.y101{bottom:322.485000px;}
.y1{bottom:323.355000px;}
.y1b{bottom:326.160000px;}
.y41{bottom:327.240000px;}
.y4f{bottom:328.575000px;}
.y90{bottom:329.505000px;}
.yc9{bottom:331.920000px;}
.y11c{bottom:334.155000px;}
.y6a{bottom:335.805000px;}
.yac{bottom:340.200000px;}
.y120{bottom:341.535000px;}
.yb4{bottom:342.075000px;}
.y114{bottom:343.440000px;}
.y84{bottom:343.875000px;}
.y89{bottom:344.805000px;}
.ycb{bottom:345.495000px;}
.yd9{bottom:347.865000px;}
.yb{bottom:348.195000px;}
.y37{bottom:349.815000px;}
.yf5{bottom:357.870000px;}
.ye3{bottom:358.125000px;}
.y1a{bottom:360.570000px;}
.yc7{bottom:367.950000px;}
.y22{bottom:371.235000px;}
.y5f{bottom:372.705000px;}
.y11f{bottom:373.935000px;}
.y6e{bottom:374.865000px;}
.y113{bottom:375.840000px;}
.y100{bottom:377.745000px;}
.ya{bottom:380.595000px;}
.y4e{bottom:380.985000px;}
.yb3{bottom:382.425000px;}
.yab{bottom:385.560000px;}
.yec{bottom:386.355000px;}
.yca{bottom:386.820000px;}
.y83{bottom:387.075000px;}
.y8f{bottom:389.805000px;}
.y4{bottom:391.110000px;}
.y29{bottom:397.410000px;}
.y5e{bottom:399.165000px;}
.ye2{bottom:403.485000px;}
.yc5{bottom:403.950000px;}
.y7c{bottom:404.460000px;}
.y88{bottom:405.285000px;}
.y36{bottom:405.465000px;}
.y11e{bottom:406.335000px;}
.yd8{bottom:406.770000px;}
.y69{bottom:407.130000px;}
.yeb{bottom:415.875000px;}
.yba{bottom:415.980000px;}
.yff{bottom:418.110000px;}
.y4d{bottom:418.425000px;}
.y10c{bottom:418.755000px;}
.y9{bottom:420.405000px;}
.yc8{bottom:422.850000px;}
.y112{bottom:423.180000px;}
.y5d{bottom:425.490000px;}
.ya7{bottom:426.810000px;}
.y40{bottom:427.785000px;}
.yf4{bottom:428.790000px;}
.yaa{bottom:430.920000px;}
.y6d{bottom:435.210000px;}
.yb2{bottom:437.685000px;}
.y35{bottom:441.105000px;}
.y25{bottom:445.425000px;}
.y7b{bottom:447.660000px;}
.ya6{bottom:448.410000px;}
.y24{bottom:452.445000px;}
.y5c{bottom:452.850000px;}
.yd7{bottom:453.030000px;}
.y111{bottom:455.580000px;}
.y10b{bottom:457.635000px;}
.yc6{bottom:458.850000px;}
.y8{bottom:460.185000px;}
.y3{bottom:462.420000px;}
.ye1{bottom:463.965000px;}
.y87{bottom:465.630000px;}
.ya5{bottom:470.010000px;}
.y4c{bottom:470.985000px;}
.y19{bottom:471.135000px;}
.yfe{bottom:471.930000px;}
.y76{bottom:473.865000px;}
.y97{bottom:475.770000px;}
.ya9{bottom:476.310000px;}
.y34{bottom:476.745000px;}
.yb1{bottom:478.005000px;}
.y6c{bottom:480.570000px;}
.y127{bottom:485.205000px;}
.y110{bottom:487.980000px;}
.y5b{bottom:490.470000px;}
.y7a{bottom:490.860000px;}
.yf3{bottom:490.890000px;}
.y8e{bottom:495.690000px;}
.y10a{bottom:496.515000px;}
.y96{bottom:497.370000px;}
.yd6{bottom:499.470000px;}
.y18{bottom:503.535000px;}
.yfd{bottom:506.490000px;}
.y4b{bottom:508.425000px;}
.ya4{bottom:508.500000px;}
.ye0{bottom:509.325000px;}
.y33{bottom:512.430000px;}
.yc0{bottom:513.870000px;}
.y125{bottom:516.630000px;}
.y75{bottom:517.065000px;}
.yb0{bottom:518.370000px;}
.y95{bottom:519.015000px;}
.y10f{bottom:520.410000px;}
.y3f{bottom:525.930000px;}
.yea{bottom:526.395000px;}
.y5a{bottom:528.270000px;}
.ya3{bottom:531.900000px;}
.y2{bottom:533.700000px;}
.y79{bottom:534.090000px;}
.y17{bottom:536.655000px;}
.yd5{bottom:538.350000px;}
.y124{bottom:539.310000px;}
.y126{bottom:539.745000px;}
.y6b{bottom:541.050000px;}
.y2b{bottom:542.070000px;}
.y94{bottom:549.615000px;}
.ybe{bottom:549.900000px;}
.yfc{bottom:550.050000px;}
.yf2{bottom:553.215000px;}
.ydf{bottom:554.730000px;}
.ye9{bottom:555.945000px;}
.y32{bottom:557.070000px;}
.yaf{bottom:558.690000px;}
.y74{bottom:560.265000px;}
.y4a{bottom:560.850000px;}
.y59{bottom:565.920000px;}
.y93{bottom:571.215000px;}
.y16{bottom:573.915000px;}
.y78{bottom:577.290000px;}
.y109{bottom:583.380000px;}
.y20{bottom:585.975000px;}
.y3e{bottom:586.440000px;}
.y7{bottom:587.310000px;}
.yfb{bottom:590.400000px;}
.y73{bottom:603.510000px;}
.y58{bottom:603.540000px;}
.y92{bottom:607.650000px;}
.y11b{bottom:608.475000px;}
.y10e{bottom:615.270000px;}
.y77{bottom:620.490000px;}
.y15{bottom:658.080000px;}
.y10d{bottom:673.590000px;}
.y49{bottom:677.130000px;}
.y14{bottom:694.080000px;}
.y64{bottom:699.690000px;}
.y21{bottom:706.290000px;}
.ya8{bottom:717.870000px;}
.y13{bottom:731.340000px;}
.y48{bottom:735.450000px;}
.h3e{height:7.161328px;}
.h3d{height:32.580000px;}
.h18{height:44.750970px;}
.h15{height:47.980898px;}
.h14{height:48.124125px;}
.h24{height:59.439023px;}
.h32{height:65.884219px;}
.hb{height:71.613281px;}
.h30{height:71.756508px;}
.h4{height:77.342344px;}
.h5{height:77.485570px;}
.h10{height:78.943359px;}
.h31{height:79.620469px;}
.h33{height:79.767914px;}
.h20{height:83.787539px;}
.h21{height:83.930766px;}
.hd{height:87.890273px;}
.h28{height:89.516602px;}
.h27{height:89.659828px;}
.h8{height:91.933875px;}
.he{height:107.419922px;}
.h26{height:107.563148px;}
.hc{height:108.281250px;}
.hf{height:108.389531px;}
.h2f{height:110.583984px;}
.h2a{height:113.400000px;}
.h2b{height:113.551200px;}
.h9{height:119.594180px;}
.ha{height:119.737406px;}
.h7{height:123.116836px;}
.h36{height:123.264281px;}
.h1b{height:131.052305px;}
.h1a{height:131.195531px;}
.h13{height:140.140898px;}
.h1{height:143.226562px;}
.h29{height:143.369789px;}
.h19{height:155.400820px;}
.h23{height:155.544047px;}
.h1d{height:166.858945px;}
.h1c{height:167.002172px;}
.h1e{height:171.773789px;}
.h2e{height:171.921234px;}
.h3b{height:179.033203px;}
.h2d{height:201.792656px;}
.h2c{height:201.902625px;}
.h11{height:205.664062px;}
.h22{height:205.801172px;}
.h17{height:213.405000px;}
.h3f{height:238.472227px;}
.h3c{height:238.615453px;}
.h1f{height:245.331539px;}
.h12{height:245.496445px;}
.h2{height:251.595703px;}
.h3{height:251.732813px;}
.h34{height:252.180000px;}
.h3a{height:274.218750px;}
.h6{height:308.633203px;}
.h25{height:342.773438px;}
.h16{height:342.910547px;}
.h35{height:504.180000px;}
.h39{height:584.460000px;}
.h38{height:697.860000px;}
.h37{height:755.100000px;}
.h0{height:810.000000px;}
.w3{width:220.860000px;}
.w6{width:270.570000px;}
.w5{width:342.075000px;}
.w2{width:389.352695px;}
.w4{width:442.440000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x46{left:5.580000px;}
.x17{left:66.324000px;}
.x41{left:75.455979px;}
.x6{left:86.399979px;}
.x3{left:97.271979px;}
.x1d{left:99.132052px;}
.x1c{left:100.296739px;}
.x9{left:109.799979px;}
.x60{left:111.923979px;}
.x43{left:119.555979px;}
.x42{left:123.335979px;}
.x25{left:126.971979px;}
.x23{left:136.799979px;}
.x7{left:140.435979px;}
.x5b{left:145.115979px;}
.x44{left:153.389979px;}
.xa{left:154.874979px;}
.x1e{left:163.829979px;}
.x8{left:167.429979px;}
.x18{left:169.207236px;}
.x1b{left:172.326453px;}
.x35{left:175.604979px;}
.x53{left:180.029979px;}
.x2{left:182.954979px;}
.x37{left:186.449979px;}
.x36{left:189.149979px;}
.x1f{left:190.829979px;}
.x27{left:195.089979px;}
.x54{left:220.529979px;}
.xe{left:227.729979px;}
.xd{left:229.214979px;}
.x19{left:236.919585px;}
.x2c{left:243.284979px;}
.x1a{left:245.775206px;}
.x12{left:262.874979px;}
.x14{left:321.809979px;}
.x59{left:346.709979px;}
.x26{left:354.599979px;}
.x5{left:392.789979px;}
.x11{left:395.384979px;}
.xc{left:401.684979px;}
.xb{left:500.144979px;}
.x4{left:565.124979px;}
.x20{left:589.574979px;}
.x1{left:600.554979px;}
.x2a{left:612.104979px;}
.x2b{left:618.404979px;}
.x21{left:627.989979px;}
.x10{left:672.449979px;}
.x45{left:728.820000px;}
.x24{left:730.904979px;}
.x58{left:765.464979px;}
.x29{left:770.549979px;}
.x5e{left:779.505000px;}
.x5c{left:794.699979px;}
.x15{left:800.249979px;}
.x57{left:822.599979px;}
.x3b{left:851.939979px;}
.x28{left:857.849979px;}
.x3c{left:885.059979px;}
.x5a{left:924.659979px;}
.x22{left:931.934979px;}
.x47{left:949.500000px;}
.x39{left:953.669979px;}
.x38{left:955.724979px;}
.x4e{left:974.699979px;}
.x3e{left:982.409979px;}
.x51{left:983.699979px;}
.x5d{left:990.285000px;}
.x4d{left:991.439979px;}
.x4f{left:998.819979px;}
.x40{left:1001.489979px;}
.x50{left:1011.059979px;}
.x3f{left:1015.169979px;}
.x2f{left:1018.364979px;}
.x52{left:1024.199979px;}
.x5f{left:1027.949979px;}
.x2d{left:1029.929979px;}
.x4c{left:1041.044979px;}
.x49{left:1058.144979px;}
.x2e{left:1062.509979px;}
.x4a{left:1070.924979px;}
.x4b{left:1073.084979px;}
.x3a{left:1076.249979px;}
.x33{left:1077.989979px;}
.x32{left:1104.089979px;}
.x30{left:1130.189979px;}
.x31{left:1135.409979px;}
.xf{left:1139.789979px;}
.x48{left:1161.644979px;}
.x3d{left:1165.574979px;}
.x34{left:1200.779979px;}
.x56{left:1214.534979px;}
.x16{left:1314.569979px;}
.x55{left:1343.594979px;}
.x13{left:1381.469979px;}
@media print{
.v5{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.373333pt;}
.v3{vertical-align:64.000000pt;}
.v2{vertical-align:81.920000pt;}
.v4{vertical-align:143.594667pt;}
.ls2a{letter-spacing:-0.323200pt;}
.ls20{letter-spacing:-0.318400pt;}
.ls21{letter-spacing:-0.284267pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.102400pt;}
.ls10{letter-spacing:-0.099733pt;}
.ls33{letter-spacing:-0.064000pt;}
.ls23{letter-spacing:-0.053867pt;}
.ls2f{letter-spacing:-0.051840pt;}
.ls29{letter-spacing:-0.042880pt;}
.ls1f{letter-spacing:-0.035200pt;}
.ls25{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000005pt;}
.lse{letter-spacing:0.033920pt;}
.ls11{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.060267pt;}
.ls15{letter-spacing:0.121067pt;}
.ls32{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.181867pt;}
.ls12{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.251733pt;}
.ls30{letter-spacing:0.323840pt;}
.ls1e{letter-spacing:0.776192pt;}
.ls31{letter-spacing:26.794240pt;}
.ls19{letter-spacing:32.192256pt;}
.ls18{letter-spacing:32.256000pt;}
.lsc{letter-spacing:43.763200pt;}
.lsd{letter-spacing:43.808000pt;}
.ls2e{letter-spacing:43.840000pt;}
.ls8{letter-spacing:47.392000pt;}
.ls26{letter-spacing:51.155200pt;}
.ls1b{letter-spacing:51.200000pt;}
.ls0{letter-spacing:52.566016pt;}
.ls9{letter-spacing:54.963200pt;}
.lsa{letter-spacing:55.008000pt;}
.ls3{letter-spacing:58.525867pt;}
.ls4{letter-spacing:58.570667pt;}
.ls14{letter-spacing:62.355200pt;}
.ls13{letter-spacing:62.400000pt;}
.ls16{letter-spacing:67.955200pt;}
.ls17{letter-spacing:68.000000pt;}
.ls5{letter-spacing:90.944000pt;}
.ls2c{letter-spacing:110.355200pt;}
.ls2d{letter-spacing:110.400000pt;}
.ls2b{letter-spacing:110.506667pt;}
.ls2{letter-spacing:225.738667pt;}
.ls28{letter-spacing:227.155200pt;}
.ls27{letter-spacing:227.200000pt;}
.ws15{word-spacing:-43.420928pt;}
.ws10{word-spacing:-43.200000pt;}
.ws2d{word-spacing:-36.160000pt;}
.ws6{word-spacing:-35.584005pt;}
.ws5{word-spacing:-35.584000pt;}
.ws22{word-spacing:-33.952853pt;}
.ws27{word-spacing:-33.730048pt;}
.ws13{word-spacing:-33.701120pt;}
.ws26{word-spacing:-33.665920pt;}
.ws16{word-spacing:-31.434880pt;}
.ws11{word-spacing:-31.386880pt;}
.ws2e{word-spacing:-28.956928pt;}
.ws1b{word-spacing:-28.928000pt;}
.ws2a{word-spacing:-28.914048pt;}
.ws2b{word-spacing:-28.633728pt;}
.ws1d{word-spacing:-26.819712pt;}
.ws7{word-spacing:-26.688000pt;}
.ws12{word-spacing:-26.469120pt;}
.ws28{word-spacing:-24.183808pt;}
.ws29{word-spacing:-24.176128pt;}
.ws2{word-spacing:-24.154880pt;}
.ws19{word-spacing:-21.724928pt;}
.ws2c{word-spacing:-21.696000pt;}
.ws0{word-spacing:-15.650048pt;}
.ws23{word-spacing:-15.621120pt;}
.ws1f{word-spacing:-14.656000pt;}
.ws24{word-spacing:-14.492928pt;}
.ws9{word-spacing:-14.464000pt;}
.ws25{word-spacing:-13.204480pt;}
.ws17{word-spacing:-12.005120pt;}
.wse{word-spacing:-9.719808pt;}
.wsd{word-spacing:-9.690880pt;}
.ws3{word-spacing:-2.022400pt;}
.ws20{word-spacing:-0.706901pt;}
.wsf{word-spacing:-0.052390pt;}
.ws1{word-spacing:0.000000pt;}
.ws21{word-spacing:0.106667pt;}
.ws18{word-spacing:0.135893pt;}
.ws31{word-spacing:1.230933pt;}
.wsa{word-spacing:503.039573pt;}
.ws14{word-spacing:631.203840pt;}
.wsb{word-spacing:1133.066240pt;}
.wsc{word-spacing:1196.959573pt;}
.ws30{word-spacing:1659.009195pt;}
.ws1e{word-spacing:1676.917333pt;}
.ws4{word-spacing:1693.525333pt;}
.ws2f{word-spacing:1775.313493pt;}
.ws1a{word-spacing:1920.896000pt;}
.ws8{word-spacing:1953.642667pt;}
.ws1c{word-spacing:4072.842667pt;}
._c{margin-left:-4338.903893pt;}
._d{margin-left:-4258.186667pt;}
._a{margin-left:-13.056000pt;}
._9{margin-left:-9.728000pt;}
._4{margin-left:-5.259520pt;}
._5{margin-left:-4.275200pt;}
._b{margin-left:-3.344000pt;}
._3{margin-left:-2.244480pt;}
._0{margin-left:-0.939520pt;}
._1{width:0.898560pt;}
._2{width:2.504960pt;}
._7{width:28.024747pt;}
._8{width:1935.354880pt;}
._6{width:1968.101547pt;}
._e{width:1976.216960pt;}
.fs24{font-size:6.400000pt;}
.fsd{font-size:42.880000pt;}
.fse{font-size:43.008000pt;}
.fs10{font-size:52.390132pt;}
.fs1a{font-size:53.120000pt;}
.fs20{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs1f{font-size:64.128000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:69.248000pt;}
.fs16{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs1e{font-size:80.000000pt;}
.fs1d{font-size:80.128000pt;}
.fs9{font-size:96.000000pt;}
.fs1c{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs13{font-size:117.120000pt;}
.fs12{font-size:117.248000pt;}
.fs0{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs11{font-size:138.880000pt;}
.fs19{font-size:139.008000pt;}
.fs15{font-size:149.120000pt;}
.fs14{font-size:149.248000pt;}
.fs22{font-size:160.000000pt;}
.fsb{font-size:192.000000pt;}
.fs18{font-size:192.128000pt;}
.fsc{font-size:213.120000pt;}
.fs23{font-size:213.248000pt;}
.fs1{font-size:234.880000pt;}
.fs2{font-size:235.008000pt;}
.fs21{font-size:256.000000pt;}
.fs5{font-size:288.128000pt;}
.fs1b{font-size:320.000000pt;}
.fsf{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:14.183674pt;}
.y65{bottom:27.456000pt;}
.y11d{bottom:27.520000pt;}
.y12{bottom:27.904000pt;}
.y117{bottom:28.864000pt;}
.yfa{bottom:36.416000pt;}
.y68{bottom:40.256000pt;}
.yc4{bottom:48.800000pt;}
.y2e{bottom:52.635179pt;}
.y30{bottom:52.635192pt;}
.y47{bottom:58.432000pt;}
.yce{bottom:60.160000pt;}
.y11a{bottom:60.416000pt;}
.y67{bottom:69.088000pt;}
.yd1{bottom:71.360000pt;}
.y82{bottom:74.880000pt;}
.y6{bottom:79.712000pt;}
.y46{bottom:80.832000pt;}
.y119{bottom:82.816000pt;}
.y11{bottom:83.200000pt;}
.y27{bottom:86.496000pt;}
.y3d{bottom:92.832000pt;}
.y5{bottom:94.272000pt;}
.yf0{bottom:94.432000pt;}
.y56{bottom:96.512000pt;}
.y66{bottom:97.888000pt;}
.y54{bottom:98.912000pt;}
.y1f{bottom:100.384000pt;}
.y129{bottom:100.704000pt;}
.yde{bottom:101.504000pt;}
.yf9{bottom:102.848000pt;}
.ybb{bottom:103.013333pt;}
.y45{bottom:103.232000pt;}
.ye8{bottom:103.392000pt;}
.y63{bottom:103.712000pt;}
.ya2{bottom:103.936000pt;}
.y118{bottom:105.216000pt;}
.yb9{bottom:111.392000pt;}
.y108{bottom:111.808000pt;}
.y43{bottom:112.128000pt;}
.y55{bottom:112.512000pt;}
.y81{bottom:113.280000pt;}
.y10{bottom:118.752000pt;}
.yef{bottom:120.672000pt;}
.y28{bottom:121.120000pt;}
.ya1{bottom:121.536000pt;}
.y3c{bottom:124.512000pt;}
.y128{bottom:125.344000pt;}
.y44{bottom:125.632000pt;}
.y8d{bottom:127.744000pt;}
.y9c{bottom:128.096000pt;}
.y1e{bottom:129.184000pt;}
.y2d{bottom:129.553667pt;}
.y31{bottom:129.553680pt;}
.y104{bottom:129.824000pt;}
.y72{bottom:131.904000pt;}
.y53{bottom:132.192000pt;}
.yf1{bottom:135.040000pt;}
.yd4{bottom:142.333333pt;}
.ydd{bottom:142.626667pt;}
.ye7{bottom:143.706667pt;}
.y62{bottom:144.826667pt;}
.ya0{bottom:145.440000pt;}
.y107{bottom:146.373333pt;}
.y26{bottom:146.653333pt;}
.yb8{bottom:147.226667pt;}
.y9b{bottom:147.293333pt;}
.y80{bottom:151.680000pt;}
.yf{bottom:153.946667pt;}
.yf8{bottom:158.213333pt;}
.y1d{bottom:159.746667pt;}
.yc1{bottom:160.800000pt;}
.y57{bottom:161.893333pt;}
.y3b{bottom:162.746667pt;}
.y52{bottom:165.466667pt;}
.y103{bottom:165.666667pt;}
.y9a{bottom:166.493333pt;}
.y2c{bottom:168.003400pt;}
.y123{bottom:168.733333pt;}
.y8c{bottom:169.026667pt;}
.yd3{bottom:174.373333pt;}
.y9f{bottom:175.133333pt;}
.y106{bottom:180.933333pt;}
.yb7{bottom:183.106667pt;}
.ydc{bottom:183.906667pt;}
.ye6{bottom:184.066667pt;}
.y7f{bottom:184.826667pt;}
.y71{bottom:185.506667pt;}
.y61{bottom:185.786667pt;}
.y9e{bottom:194.333333pt;}
.ye{bottom:196.346667pt;}
.y99{bottom:198.693333pt;}
.yd0{bottom:198.946667pt;}
.ybf{bottom:199.013333pt;}
.yc3{bottom:199.066667pt;}
.y3a{bottom:201.186667pt;}
.y42{bottom:201.506667pt;}
.yd2{bottom:206.373333pt;}
.y8b{bottom:210.146667pt;}
.yf7{bottom:211.200000pt;}
.y51{bottom:212.226667pt;}
.y9d{bottom:217.026667pt;}
.y122{bottom:217.146667pt;}
.yee{bottom:218.906667pt;}
.yb6{bottom:218.946667pt;}
.y98{bottom:219.493333pt;}
.yae{bottom:221.733333pt;}
.y7e{bottom:223.226667pt;}
.ydb{bottom:225.213333pt;}
.y70{bottom:225.853333pt;}
.y86{bottom:228.826667pt;}
.ycf{bottom:230.946667pt;}
.ybd{bottom:231.040000pt;}
.yc2{bottom:231.066667pt;}
.yd{bottom:231.906667pt;}
.y39{bottom:232.866667pt;}
.ye5{bottom:237.666667pt;}
.ycd{bottom:243.106667pt;}
.yed{bottom:245.186667pt;}
.y116{bottom:247.653333pt;}
.y102{bottom:250.813333pt;}
.y91{bottom:252.573333pt;}
.y8a{bottom:252.893333pt;}
.y60{bottom:253.120000pt;}
.yf6{bottom:257.280000pt;}
.ybc{bottom:257.760000pt;}
.y105{bottom:258.146667pt;}
.y23{bottom:258.426667pt;}
.y50{bottom:258.786667pt;}
.y1c{bottom:261.120000pt;}
.y7d{bottom:261.626667pt;}
.yad{bottom:262.053333pt;}
.yda{bottom:266.333333pt;}
.y2a{bottom:266.813333pt;}
.yc{bottom:267.106667pt;}
.y85{bottom:267.226667pt;}
.yb5{bottom:268.226667pt;}
.y38{bottom:271.266667pt;}
.y121{bottom:274.746667pt;}
.ycc{bottom:275.106667pt;}
.y115{bottom:276.453333pt;}
.ye4{bottom:277.986667pt;}
.y6f{bottom:279.613333pt;}
.y101{bottom:286.653333pt;}
.y1{bottom:287.426667pt;}
.y1b{bottom:289.920000pt;}
.y41{bottom:290.880000pt;}
.y4f{bottom:292.066667pt;}
.y90{bottom:292.893333pt;}
.yc9{bottom:295.040000pt;}
.y11c{bottom:297.026667pt;}
.y6a{bottom:298.493333pt;}
.yac{bottom:302.400000pt;}
.y120{bottom:303.586667pt;}
.yb4{bottom:304.066667pt;}
.y114{bottom:305.280000pt;}
.y84{bottom:305.666667pt;}
.y89{bottom:306.493333pt;}
.ycb{bottom:307.106667pt;}
.yd9{bottom:309.213333pt;}
.yb{bottom:309.506667pt;}
.y37{bottom:310.946667pt;}
.yf5{bottom:318.106667pt;}
.ye3{bottom:318.333333pt;}
.y1a{bottom:320.506667pt;}
.yc7{bottom:327.066667pt;}
.y22{bottom:329.986667pt;}
.y5f{bottom:331.293333pt;}
.y11f{bottom:332.386667pt;}
.y6e{bottom:333.213333pt;}
.y113{bottom:334.080000pt;}
.y100{bottom:335.773333pt;}
.ya{bottom:338.306667pt;}
.y4e{bottom:338.653333pt;}
.yb3{bottom:339.933333pt;}
.yab{bottom:342.720000pt;}
.yec{bottom:343.426667pt;}
.yca{bottom:343.840000pt;}
.y83{bottom:344.066667pt;}
.y8f{bottom:346.493333pt;}
.y4{bottom:347.653333pt;}
.y29{bottom:353.253333pt;}
.y5e{bottom:354.813333pt;}
.ye2{bottom:358.653333pt;}
.yc5{bottom:359.066667pt;}
.y7c{bottom:359.520000pt;}
.y88{bottom:360.253333pt;}
.y36{bottom:360.413333pt;}
.y11e{bottom:361.186667pt;}
.yd8{bottom:361.573333pt;}
.y69{bottom:361.893333pt;}
.yeb{bottom:369.666667pt;}
.yba{bottom:369.760000pt;}
.yff{bottom:371.653333pt;}
.y4d{bottom:371.933333pt;}
.y10c{bottom:372.226667pt;}
.y9{bottom:373.693333pt;}
.yc8{bottom:375.866667pt;}
.y112{bottom:376.160000pt;}
.y5d{bottom:378.213333pt;}
.ya7{bottom:379.386667pt;}
.y40{bottom:380.253333pt;}
.yf4{bottom:381.146667pt;}
.yaa{bottom:383.040000pt;}
.y6d{bottom:386.853333pt;}
.yb2{bottom:389.053333pt;}
.y35{bottom:392.093333pt;}
.y25{bottom:395.933333pt;}
.y7b{bottom:397.920000pt;}
.ya6{bottom:398.586667pt;}
.y24{bottom:402.173333pt;}
.y5c{bottom:402.533333pt;}
.yd7{bottom:402.693333pt;}
.y111{bottom:404.960000pt;}
.y10b{bottom:406.786667pt;}
.yc6{bottom:407.866667pt;}
.y8{bottom:409.053333pt;}
.y3{bottom:411.040000pt;}
.ye1{bottom:412.413333pt;}
.y87{bottom:413.893333pt;}
.ya5{bottom:417.786667pt;}
.y4c{bottom:418.653333pt;}
.y19{bottom:418.786667pt;}
.yfe{bottom:419.493333pt;}
.y76{bottom:421.213333pt;}
.y97{bottom:422.906667pt;}
.ya9{bottom:423.386667pt;}
.y34{bottom:423.773333pt;}
.yb1{bottom:424.893333pt;}
.y6c{bottom:427.173333pt;}
.y127{bottom:431.293333pt;}
.y110{bottom:433.760000pt;}
.y5b{bottom:435.973333pt;}
.y7a{bottom:436.320000pt;}
.yf3{bottom:436.346667pt;}
.y8e{bottom:440.613333pt;}
.y10a{bottom:441.346667pt;}
.y96{bottom:442.106667pt;}
.yd6{bottom:443.973333pt;}
.y18{bottom:447.586667pt;}
.yfd{bottom:450.213333pt;}
.y4b{bottom:451.933333pt;}
.ya4{bottom:452.000000pt;}
.ye0{bottom:452.733333pt;}
.y33{bottom:455.493333pt;}
.yc0{bottom:456.773333pt;}
.y125{bottom:459.226667pt;}
.y75{bottom:459.613333pt;}
.yb0{bottom:460.773333pt;}
.y95{bottom:461.346667pt;}
.y10f{bottom:462.586667pt;}
.y3f{bottom:467.493333pt;}
.yea{bottom:467.906667pt;}
.y5a{bottom:469.573333pt;}
.ya3{bottom:472.800000pt;}
.y2{bottom:474.400000pt;}
.y79{bottom:474.746667pt;}
.y17{bottom:477.026667pt;}
.yd5{bottom:478.533333pt;}
.y124{bottom:479.386667pt;}
.y126{bottom:479.773333pt;}
.y6b{bottom:480.933333pt;}
.y2b{bottom:481.840000pt;}
.y94{bottom:488.546667pt;}
.ybe{bottom:488.800000pt;}
.yfc{bottom:488.933333pt;}
.yf2{bottom:491.746667pt;}
.ydf{bottom:493.093333pt;}
.ye9{bottom:494.173333pt;}
.y32{bottom:495.173333pt;}
.yaf{bottom:496.613333pt;}
.y74{bottom:498.013333pt;}
.y4a{bottom:498.533333pt;}
.y59{bottom:503.040000pt;}
.y93{bottom:507.746667pt;}
.y16{bottom:510.146667pt;}
.y78{bottom:513.146667pt;}
.y109{bottom:518.560000pt;}
.y20{bottom:520.866667pt;}
.y3e{bottom:521.280000pt;}
.y7{bottom:522.053333pt;}
.yfb{bottom:524.800000pt;}
.y73{bottom:536.453333pt;}
.y58{bottom:536.480000pt;}
.y92{bottom:540.133333pt;}
.y11b{bottom:540.866667pt;}
.y10e{bottom:546.906667pt;}
.y77{bottom:551.546667pt;}
.y15{bottom:584.960000pt;}
.y10d{bottom:598.746667pt;}
.y49{bottom:601.893333pt;}
.y14{bottom:616.960000pt;}
.y64{bottom:621.946667pt;}
.y21{bottom:627.813333pt;}
.ya8{bottom:638.106667pt;}
.y13{bottom:650.080000pt;}
.y48{bottom:653.733333pt;}
.h3e{height:6.365625pt;}
.h3d{height:28.960000pt;}
.h18{height:39.778640pt;}
.h15{height:42.649687pt;}
.h14{height:42.777000pt;}
.h24{height:52.834688pt;}
.h32{height:58.563750pt;}
.hb{height:63.656250pt;}
.h30{height:63.783562pt;}
.h4{height:68.748750pt;}
.h5{height:68.876063pt;}
.h10{height:70.171875pt;}
.h31{height:70.773750pt;}
.h33{height:70.904812pt;}
.h20{height:74.477812pt;}
.h21{height:74.605125pt;}
.hd{height:78.124687pt;}
.h28{height:79.570312pt;}
.h27{height:79.697625pt;}
.h8{height:81.719000pt;}
.he{height:95.484375pt;}
.h26{height:95.611688pt;}
.hc{height:96.250000pt;}
.hf{height:96.346250pt;}
.h2f{height:98.296875pt;}
.h2a{height:100.800000pt;}
.h2b{height:100.934400pt;}
.h9{height:106.305937pt;}
.ha{height:106.433250pt;}
.h7{height:109.437187pt;}
.h36{height:109.568250pt;}
.h1b{height:116.490937pt;}
.h1a{height:116.618250pt;}
.h13{height:124.569687pt;}
.h1{height:127.312500pt;}
.h29{height:127.439813pt;}
.h19{height:138.134062pt;}
.h23{height:138.261375pt;}
.h1d{height:148.319063pt;}
.h1c{height:148.446375pt;}
.h1e{height:152.687812pt;}
.h2e{height:152.818875pt;}
.h3b{height:159.140625pt;}
.h2d{height:179.371250pt;}
.h2c{height:179.469000pt;}
.h11{height:182.812500pt;}
.h22{height:182.934375pt;}
.h17{height:189.693333pt;}
.h3f{height:211.975312pt;}
.h3c{height:212.102625pt;}
.h1f{height:218.072479pt;}
.h12{height:218.219062pt;}
.h2{height:223.640625pt;}
.h3{height:223.762500pt;}
.h34{height:224.160000pt;}
.h3a{height:243.750000pt;}
.h6{height:274.340625pt;}
.h25{height:304.687500pt;}
.h16{height:304.809375pt;}
.h35{height:448.160000pt;}
.h39{height:519.520000pt;}
.h38{height:620.320000pt;}
.h37{height:671.200000pt;}
.h0{height:720.000000pt;}
.w3{width:196.320000pt;}
.w6{width:240.506667pt;}
.w5{width:304.066667pt;}
.w2{width:346.091284pt;}
.w4{width:393.280000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x46{left:4.960000pt;}
.x17{left:58.954667pt;}
.x41{left:67.071981pt;}
.x6{left:76.799981pt;}
.x3{left:86.463981pt;}
.x1d{left:88.117380pt;}
.x1c{left:89.152657pt;}
.x9{left:97.599981pt;}
.x60{left:99.487981pt;}
.x43{left:106.271981pt;}
.x42{left:109.631981pt;}
.x25{left:112.863981pt;}
.x23{left:121.599981pt;}
.x7{left:124.831981pt;}
.x5b{left:128.991981pt;}
.x44{left:136.346648pt;}
.xa{left:137.666648pt;}
.x1e{left:145.626648pt;}
.x8{left:148.826648pt;}
.x18{left:150.406432pt;}
.x1b{left:153.179069pt;}
.x35{left:156.093314pt;}
.x53{left:160.026648pt;}
.x2{left:162.626648pt;}
.x37{left:165.733314pt;}
.x36{left:168.133314pt;}
.x1f{left:169.626648pt;}
.x27{left:173.413314pt;}
.x54{left:196.026648pt;}
.xe{left:202.426648pt;}
.xd{left:203.746648pt;}
.x19{left:210.595187pt;}
.x2c{left:216.253314pt;}
.x1a{left:218.466850pt;}
.x12{left:233.666648pt;}
.x14{left:286.053314pt;}
.x59{left:308.186648pt;}
.x26{left:315.199981pt;}
.x5{left:349.146648pt;}
.x11{left:351.453314pt;}
.xc{left:357.053314pt;}
.xb{left:444.573314pt;}
.x4{left:502.333314pt;}
.x20{left:524.066648pt;}
.x1{left:533.826648pt;}
.x2a{left:544.093314pt;}
.x2b{left:549.693314pt;}
.x21{left:558.213314pt;}
.x10{left:597.733314pt;}
.x45{left:647.840000pt;}
.x24{left:649.693314pt;}
.x58{left:680.413314pt;}
.x29{left:684.933314pt;}
.x5e{left:692.893333pt;}
.x5c{left:706.399981pt;}
.x15{left:711.333314pt;}
.x57{left:731.199981pt;}
.x3b{left:757.279981pt;}
.x28{left:762.533314pt;}
.x3c{left:786.719981pt;}
.x5a{left:821.919981pt;}
.x22{left:828.386648pt;}
.x47{left:844.000000pt;}
.x39{left:847.706648pt;}
.x38{left:849.533314pt;}
.x4e{left:866.399981pt;}
.x3e{left:873.253314pt;}
.x51{left:874.399981pt;}
.x5d{left:880.253333pt;}
.x4d{left:881.279981pt;}
.x4f{left:887.839981pt;}
.x40{left:890.213314pt;}
.x50{left:898.719981pt;}
.x3f{left:902.373314pt;}
.x2f{left:905.213314pt;}
.x52{left:910.399981pt;}
.x5f{left:913.733314pt;}
.x2d{left:915.493314pt;}
.x4c{left:925.373314pt;}
.x49{left:940.573314pt;}
.x2e{left:944.453314pt;}
.x4a{left:951.933314pt;}
.x4b{left:953.853314pt;}
.x3a{left:956.666648pt;}
.x33{left:958.213314pt;}
.x32{left:981.413314pt;}
.x30{left:1004.613314pt;}
.x31{left:1009.253314pt;}
.xf{left:1013.146648pt;}
.x48{left:1032.573314pt;}
.x3d{left:1036.066648pt;}
.x34{left:1067.359981pt;}
.x56{left:1079.586648pt;}
.x16{left:1168.506648pt;}
.x55{left:1194.306648pt;}
.x13{left:1227.973314pt;}
}




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