
    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_d2e25f309bf12f71e6b8f472.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_8aa8c8e0a934fc32325a0eb3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_9d13d1d23bcefee5756bdea5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_eba199c2540504fe887c30fd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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_5c3b579114f573d8858b8fc3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_0bfc0399d48d5e0f39c6f3cd.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115723;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_8868b4215c36f44459b2293d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;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);}
.v4{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.780800px;}
.v5{vertical-align:20.973000px;}
.v1{vertical-align:29.974800px;}
.ls8{letter-spacing:-6.804000px;}
.ls6{letter-spacing:-4.536000px;}
.ls2d{letter-spacing:-4.347000px;}
.ls44{letter-spacing:-3.240000px;}
.ls10{letter-spacing:-3.060000px;}
.ls19{letter-spacing:-2.967000px;}
.ls37{letter-spacing:-2.829000px;}
.ls45{letter-spacing:-2.346000px;}
.ls3a{letter-spacing:-2.025000px;}
.ls26{letter-spacing:-1.794000px;}
.ls7{letter-spacing:-1.512000px;}
.ls3b{letter-spacing:-1.380000px;}
.ls24{letter-spacing:-1.311000px;}
.ls17{letter-spacing:-1.242000px;}
.ls12{letter-spacing:-1.200000px;}
.ls28{letter-spacing:-1.173000px;}
.ls1a{letter-spacing:-0.897000px;}
.ls22{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.855000px;}
.ls14{letter-spacing:-0.828000px;}
.ls3f{letter-spacing:-0.810000px;}
.ls49{letter-spacing:-0.780000px;}
.ls2c{letter-spacing:-0.759000px;}
.ls1{letter-spacing:-0.750000px;}
.ls35{letter-spacing:-0.690000px;}
.ls3e{letter-spacing:-0.627000px;}
.ls2a{letter-spacing:-0.621000px;}
.ls43{letter-spacing:-0.570000px;}
.ls34{letter-spacing:-0.483000px;}
.ls48{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.207000px;}
.ls41{letter-spacing:-0.171000px;}
.ls29{letter-spacing:-0.138000px;}
.ls16{letter-spacing:-0.081000px;}
.ls9{letter-spacing:-0.069000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.081000px;}
.ls25{letter-spacing:0.138000px;}
.ls40{letter-spacing:0.207000px;}
.ls4a{letter-spacing:0.486000px;}
.ls31{letter-spacing:0.759000px;}
.lsb{letter-spacing:0.966000px;}
.ls18{letter-spacing:1.035000px;}
.lsa{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.173000px;}
.ls1e{letter-spacing:1.214100px;}
.ls1c{letter-spacing:1.311300px;}
.ls3{letter-spacing:1.344000px;}
.lsd{letter-spacing:1.350000px;}
.ls36{letter-spacing:1.518000px;}
.ls3c{letter-spacing:1.587000px;}
.ls1d{letter-spacing:1.635300px;}
.ls27{letter-spacing:1.725000px;}
.ls13{letter-spacing:1.794000px;}
.ls47{letter-spacing:2.035500px;}
.ls39{letter-spacing:2.049300px;}
.lsf{letter-spacing:2.359500px;}
.ls1f{letter-spacing:2.400000px;}
.ls32{letter-spacing:5.658000px;}
.ls2{letter-spacing:6.000000px;}
.ls5{letter-spacing:7.260000px;}
.ls2f{letter-spacing:9.798000px;}
.ls30{letter-spacing:87.561000px;}
.ls42{letter-spacing:466.724400px;}
.ls2e{letter-spacing:467.099400px;}
.ls0{letter-spacing:468.487200px;}
.ls1b{letter-spacing:468.899400px;}
.ls38{letter-spacing:469.949400px;}
.ls23{letter-spacing:1012.464000px;}
.ls3d{letter-spacing:1012.959000px;}
.ls46{letter-spacing:1015.584000px;}
.lse{letter-spacing:1019.634000px;}
.ls33{letter-spacing:1021.614000px;}
.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;}
}
.ws2c{word-spacing:-87.561000px;}
.ws2{word-spacing:-25.164000px;}
.ws29{word-spacing:-21.075000px;}
.ws2b{word-spacing:-20.424000px;}
.ws0{word-spacing:-20.325000px;}
.ws3{word-spacing:-19.872000px;}
.ws1e{word-spacing:-19.527000px;}
.ws44{word-spacing:-19.521000px;}
.ws32{word-spacing:-19.251000px;}
.ws39{word-spacing:-19.050000px;}
.ws1f{word-spacing:-18.492000px;}
.ws3c{word-spacing:-18.009000px;}
.ws22{word-spacing:-16.905000px;}
.ws2a{word-spacing:-16.836000px;}
.ws23{word-spacing:-16.422000px;}
.ws21{word-spacing:-15.870000px;}
.ws48{word-spacing:-15.660000px;}
.ws20{word-spacing:-15.249000px;}
.ws24{word-spacing:-15.042000px;}
.ws45{word-spacing:-14.697000px;}
.ws47{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.146000px;}
.wsf{word-spacing:-11.303787px;}
.ws6{word-spacing:-7.260000px;}
.ws5{word-spacing:-6.000000px;}
.ws2f{word-spacing:-5.658000px;}
.ws30{word-spacing:-4.899000px;}
.ws19{word-spacing:-2.400000px;}
.ws11{word-spacing:-1.794000px;}
.ws26{word-spacing:-1.725000px;}
.ws3d{word-spacing:-1.587000px;}
.ws36{word-spacing:-1.518000px;}
.wsc{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.173000px;}
.ws9{word-spacing:-1.104000px;}
.ws16{word-spacing:-1.035000px;}
.wsa{word-spacing:-0.966000px;}
.ws2e{word-spacing:-0.759000px;}
.ws41{word-spacing:-0.207000px;}
.ws38{word-spacing:-0.138000px;}
.ws1b{word-spacing:-0.081000px;}
.ws3b{word-spacing:-0.069000px;}
.wsb{word-spacing:-0.054000px;}
.ws3a{word-spacing:-0.048300px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.069000px;}
.ws14{word-spacing:0.081000px;}
.ws42{word-spacing:0.138000px;}
.ws43{word-spacing:0.171000px;}
.wsd{word-spacing:0.180000px;}
.ws1a{word-spacing:0.207000px;}
.ws49{word-spacing:0.480000px;}
.ws33{word-spacing:0.483000px;}
.ws46{word-spacing:0.570000px;}
.ws31{word-spacing:0.621000px;}
.ws3e{word-spacing:0.627000px;}
.ws34{word-spacing:0.690000px;}
.ws28{word-spacing:0.759000px;}
.ws3f{word-spacing:0.810000px;}
.ws12{word-spacing:0.828000px;}
.ws13{word-spacing:0.855000px;}
.ws1d{word-spacing:0.864000px;}
.ws18{word-spacing:0.897000px;}
.wse{word-spacing:1.140000px;}
.ws2d{word-spacing:1.173000px;}
.ws15{word-spacing:1.242000px;}
.ws25{word-spacing:1.311000px;}
.ws40{word-spacing:1.794000px;}
.ws37{word-spacing:2.829000px;}
.ws17{word-spacing:2.967000px;}
.ws10{word-spacing:3.060000px;}
.ws35{word-spacing:4.347000px;}
.ws7{word-spacing:4.536000px;}
.ws1c{word-spacing:8.153838px;}
._16{margin-left:-87.078000px;}
._1e{margin-left:-18.465000px;}
._1a{margin-left:-11.428800px;}
._17{margin-left:-10.204500px;}
._9{margin-left:-6.935400px;}
._8{margin-left:-5.823000px;}
._7{margin-left:-4.674900px;}
._b{margin-left:-3.660300px;}
._3{margin-left:-2.158200px;}
._5{margin-left:-1.136700px;}
._0{width:1.717200px;}
._4{width:2.954700px;}
._c{width:4.095000px;}
._2{width:5.412000px;}
._1{width:6.712800px;}
._6{width:8.418000px;}
._f{width:9.558300px;}
._10{width:11.165100px;}
._11{width:12.327300px;}
._1d{width:13.862100px;}
._12{width:15.198600px;}
._1c{width:18.147000px;}
._13{width:22.939800px;}
._a{width:24.393000px;}
._14{width:35.291322px;}
._d{width:43.445160px;}
._15{width:87.561000px;}
._18{width:111.573000px;}
._1b{width:173.376900px;}
._19{width:196.608600px;}
._e{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fsc{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsf{font-size:47.223000px;}
.fsd{font-size:48.000000px;}
.fse{font-size:48.300000px;}
.fsb{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:62.964000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8b{bottom:106.165350px;}
.yd3{bottom:106.268850px;}
.y22{bottom:106.284150px;}
.y68{bottom:106.287300px;}
.y46{bottom:106.296300px;}
.yf2{bottom:106.296450px;}
.y114{bottom:106.314450px;}
.yaf{bottom:106.355100px;}
.y21{bottom:123.537150px;}
.y67{bottom:123.540300px;}
.y45{bottom:126.544800px;}
.yf1{bottom:126.544950px;}
.y8a{bottom:126.589350px;}
.yd2{bottom:127.227600px;}
.y113{bottom:127.704450px;}
.yae{bottom:127.865850px;}
.y20{bottom:140.790150px;}
.y66{bottom:140.793300px;}
.y44{bottom:145.048200px;}
.y89{bottom:147.013350px;}
.yd1{bottom:148.186350px;}
.y112{bottom:149.094450px;}
.yad{bottom:149.376600px;}
.y1f{bottom:158.043150px;}
.y65{bottom:158.046300px;}
.y43{bottom:165.296700px;}
.y88{bottom:167.437350px;}
.yd0{bottom:169.145100px;}
.y135{bottom:170.561850px;}
.yf0{bottom:170.625750px;}
.yac{bottom:170.887350px;}
.y1e{bottom:175.296150px;}
.y64{bottom:178.294800px;}
.ycf{bottom:190.103850px;}
.y134{bottom:190.830600px;}
.y111{bottom:191.751750px;}
.yab{bottom:192.398100px;}
.yef{bottom:192.809250px;}
.y1d{bottom:195.544650px;}
.y63{bottom:199.796700px;}
.y87{bottom:208.285350px;}
.y42{bottom:209.339550px;}
.yce{bottom:211.062600px;}
.y133{bottom:211.099350px;}
.yaa{bottom:213.908850px;}
.yee{bottom:214.992750px;}
.y62{bottom:218.300250px;}
.y86{bottom:228.709350px;}
.y41{bottom:230.212050px;}
.y132{bottom:231.368100px;}
.y1c{bottom:231.600300px;}
.ycd{bottom:232.021350px;}
.ya9{bottom:235.419600px;}
.yed{bottom:237.176250px;}
.y61{bottom:238.548750px;}
.y85{bottom:249.133350px;}
.y40{bottom:251.084550px;}
.y131{bottom:251.636850px;}
.y1b{bottom:252.162300px;}
.ycc{bottom:252.980100px;}
.y110{bottom:255.371250px;}
.ya8{bottom:256.930350px;}
.yec{bottom:259.359750px;}
.y84{bottom:269.557350px;}
.y130{bottom:271.905600px;}
.y3f{bottom:271.957050px;}
.y1a{bottom:272.724300px;}
.ycb{bottom:273.938850px;}
.y10f{bottom:276.761250px;}
.ya7{bottom:278.441100px;}
.yeb{bottom:281.543250px;}
.y60{bottom:282.511500px;}
.y3e{bottom:292.915350px;}
.y19{bottom:293.286300px;}
.yca{bottom:294.897600px;}
.y10e{bottom:298.151250px;}
.ya6{bottom:299.951850px;}
.yea{bottom:303.726750px;}
.y5f{bottom:303.936000px;}
.y83{bottom:310.405350px;}
.y12f{bottom:313.434000px;}
.y3d{bottom:313.787850px;}
.y18{bottom:313.848300px;}
.yc9{bottom:315.856350px;}
.y10d{bottom:319.541250px;}
.ya5{bottom:321.462600px;}
.y5e{bottom:325.360500px;}
.ye9{bottom:325.910250px;}
.y82{bottom:330.829350px;}
.y17{bottom:334.410300px;}
.y3c{bottom:334.660350px;}
.yc8{bottom:336.815100px;}
.y10c{bottom:340.931250px;}
.y14f{bottom:342.191550px;}
.ya4{bottom:342.973350px;}
.y5d{bottom:346.785000px;}
.ye8{bottom:348.093750px;}
.y81{bottom:351.253350px;}
.y16{bottom:354.972300px;}
.y3b{bottom:355.532850px;}
.yc7{bottom:357.773850px;}
.y10b{bottom:362.321250px;}
.y14e{bottom:362.441550px;}
.ya3{bottom:364.484100px;}
.y5c{bottom:368.209500px;}
.ye7{bottom:370.277250px;}
.y80{bottom:371.677350px;}
.y15{bottom:375.534300px;}
.y12e{bottom:375.713850px;}
.y3a{bottom:376.405350px;}
.yc6{bottom:378.732600px;}
.y14d{bottom:382.691550px;}
.y10a{bottom:383.711250px;}
.ya2{bottom:385.994850px;}
.y5b{bottom:389.634000px;}
.y7f{bottom:392.101350px;}
.ye6{bottom:392.460750px;}
.y12d{bottom:395.982600px;}
.y14{bottom:396.096300px;}
.y39{bottom:397.277850px;}
.yc5{bottom:399.691350px;}
.y14c{bottom:402.941550px;}
.y109{bottom:405.101250px;}
.ya1{bottom:407.505600px;}
.y5a{bottom:411.058500px;}
.y7e{bottom:412.525350px;}
.ye5{bottom:414.644250px;}
.y12c{bottom:416.251350px;}
.y13{bottom:416.658300px;}
.y38{bottom:418.150350px;}
.yc4{bottom:420.650100px;}
.y14b{bottom:423.191550px;}
.y108{bottom:426.491250px;}
.ya0{bottom:429.016350px;}
.y59{bottom:432.483000px;}
.y12b{bottom:436.520100px;}
.ye4{bottom:436.827750px;}
.y12{bottom:437.220300px;}
.y37{bottom:439.022850px;}
.yc3{bottom:441.608850px;}
.y107{bottom:447.881250px;}
.y9f{bottom:450.527100px;}
.y7d{bottom:453.373350px;}
.y58{bottom:453.907500px;}
.y14a{bottom:456.191550px;}
.y12a{bottom:456.788850px;}
.y11{bottom:457.782300px;}
.ye3{bottom:459.011250px;}
.y36{bottom:459.895350px;}
.yc2{bottom:462.567600px;}
.y106{bottom:469.271250px;}
.y9e{bottom:472.037850px;}
.y7c{bottom:473.797350px;}
.y129{bottom:477.057600px;}
.y10{bottom:478.344300px;}
.y35{bottom:480.767850px;}
.ye2{bottom:481.194750px;}
.y105{bottom:490.661250px;}
.y9d{bottom:493.548600px;}
.y7b{bottom:494.221350px;}
.y57{bottom:496.584900px;}
.y128{bottom:497.326350px;}
.y149{bottom:497.680350px;}
.yf{bottom:498.906300px;}
.y34{bottom:501.640350px;}
.ye1{bottom:503.378250px;}
.yc1{bottom:504.485100px;}
.y104{bottom:512.051250px;}
.y7a{bottom:514.645350px;}
.y9c{bottom:515.059350px;}
.y127{bottom:517.595100px;}
.y148{bottom:517.931850px;}
.ye{bottom:519.468300px;}
.y33{bottom:522.512850px;}
.yc0{bottom:525.443850px;}
.ye0{bottom:525.561750px;}
.y103{bottom:533.441250px;}
.y79{bottom:535.069350px;}
.y9b{bottom:536.570100px;}
.y126{bottom:537.863850px;}
.y147{bottom:538.183350px;}
.yd{bottom:540.030300px;}
.y32{bottom:543.385350px;}
.ybf{bottom:546.402600px;}
.ydf{bottom:547.745250px;}
.y102{bottom:554.831250px;}
.y78{bottom:555.493350px;}
.y9a{bottom:558.080850px;}
.y125{bottom:558.132600px;}
.y146{bottom:558.434850px;}
.y56{bottom:559.923150px;}
.yc{bottom:560.592300px;}
.y31{bottom:564.257850px;}
.ybe{bottom:567.361350px;}
.yde{bottom:569.928750px;}
.y101{bottom:576.221250px;}
.y124{bottom:578.401350px;}
.y145{bottom:578.686350px;}
.y99{bottom:579.591600px;}
.yb{bottom:581.154300px;}
.y55{bottom:581.347650px;}
.y30{bottom:585.130350px;}
.ybd{bottom:588.320100px;}
.ydd{bottom:592.112250px;}
.y77{bottom:596.341350px;}
.y100{bottom:597.611250px;}
.y123{bottom:598.670100px;}
.y144{bottom:598.937850px;}
.y98{bottom:601.102350px;}
.ya{bottom:601.716300px;}
.y54{bottom:602.772150px;}
.ybc{bottom:609.278850px;}
.ydc{bottom:614.295750px;}
.y76{bottom:616.765350px;}
.y122{bottom:618.938850px;}
.yff{bottom:619.001250px;}
.y143{bottom:619.189350px;}
.y97{bottom:622.613100px;}
.y53{bottom:624.196650px;}
.y2f{bottom:627.273450px;}
.y75{bottom:637.189350px;}
.y121{bottom:639.207600px;}
.y142{bottom:639.440850px;}
.yfe{bottom:640.391250px;}
.y9{bottom:643.530900px;}
.y96{bottom:644.123850px;}
.y52{bottom:645.621150px;}
.ybb{bottom:651.196350px;}
.y2e{bottom:651.897450px;}
.y74{bottom:657.613350px;}
.y120{bottom:659.476350px;}
.y141{bottom:659.692350px;}
.yfd{bottom:661.781250px;}
.y95{bottom:665.634600px;}
.y51{bottom:667.045650px;}
.yba{bottom:672.155100px;}
.y73{bottom:678.037350px;}
.y11f{bottom:679.745100px;}
.y140{bottom:679.943850px;}
.ydb{bottom:680.846250px;}
.yfc{bottom:683.171250px;}
.y94{bottom:687.145350px;}
.y50{bottom:688.470150px;}
.yb9{bottom:693.113850px;}
.y72{bottom:698.461350px;}
.y11e{bottom:700.013850px;}
.y13f{bottom:700.195350px;}
.yda{bottom:703.029750px;}
.yfb{bottom:704.561250px;}
.y8{bottom:706.100550px;}
.y93{bottom:708.656100px;}
.y4f{bottom:709.894650px;}
.yb8{bottom:714.072600px;}
.y2d{bottom:714.799800px;}
.y71{bottom:718.885350px;}
.y11d{bottom:720.282600px;}
.y13e{bottom:720.446850px;}
.yd9{bottom:725.213250px;}
.yfa{bottom:725.951250px;}
.y92{bottom:730.166850px;}
.y4e{bottom:731.319150px;}
.yb7{bottom:735.031350px;}
.y2c{bottom:735.721350px;}
.y7{bottom:737.906550px;}
.y70{bottom:739.309350px;}
.y11c{bottom:740.551350px;}
.y13d{bottom:740.698350px;}
.yf9{bottom:747.341250px;}
.yd8{bottom:747.409350px;}
.y91{bottom:751.677600px;}
.y4d{bottom:752.743650px;}
.yb6{bottom:755.990100px;}
.y2b{bottom:756.593850px;}
.y6f{bottom:759.733350px;}
.y11b{bottom:760.820100px;}
.y13c{bottom:760.949850px;}
.yf8{bottom:768.731250px;}
.y6{bottom:769.712550px;}
.y4c{bottom:774.168150px;}
.yb5{bottom:776.948850px;}
.y2a{bottom:777.466350px;}
.y6e{bottom:780.157350px;}
.y11a{bottom:781.088850px;}
.y13b{bottom:781.192350px;}
.yf7{bottom:790.121250px;}
.yd7{bottom:791.776350px;}
.y90{bottom:795.147600px;}
.y4b{bottom:795.592650px;}
.yb4{bottom:797.907600px;}
.y29{bottom:798.338850px;}
.y6d{bottom:800.581350px;}
.y119{bottom:801.357600px;}
.y13a{bottom:801.443850px;}
.yf6{bottom:811.511250px;}
.y8f{bottom:816.658350px;}
.y4a{bottom:817.017150px;}
.yb3{bottom:818.866350px;}
.y28{bottom:819.211350px;}
.y6c{bottom:821.005350px;}
.y118{bottom:821.626350px;}
.y139{bottom:821.695350px;}
.y5{bottom:831.289200px;}
.yf5{bottom:832.901250px;}
.yd6{bottom:836.143350px;}
.y8e{bottom:838.169100px;}
.y49{bottom:838.441650px;}
.yb2{bottom:839.825100px;}
.y27{bottom:840.083850px;}
.y6b{bottom:841.429350px;}
.y117{bottom:841.895100px;}
.y138{bottom:841.946850px;}
.y4{bottom:852.589200px;}
.yd5{bottom:858.331950px;}
.y8d{bottom:859.679850px;}
.y48{bottom:859.859250px;}
.yb1{bottom:860.783850px;}
.y26{bottom:860.956350px;}
.y6a{bottom:861.853350px;}
.y116{bottom:862.163850px;}
.y137{bottom:862.198350px;}
.yf4{bottom:875.555700px;}
.yd4{bottom:880.515450px;}
.y8c{bottom:881.190600px;}
.y47{bottom:881.276850px;}
.yb0{bottom:881.742600px;}
.y25{bottom:881.828850px;}
.y69{bottom:882.277350px;}
.y3{bottom:882.394200px;}
.y115{bottom:882.432600px;}
.y136{bottom:882.449850px;}
.yf3{bottom:900.706200px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.h9{height:33.870539px;}
.hc{height:40.757812px;}
.hf{height:43.942805px;}
.hb{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.ha{height:55.924805px;}
.h8{height:58.589355px;}
.hd{height:58.616955px;}
.h11{height:58.625355px;}
.he{height:58.977555px;}
.h12{height:62.138672px;}
.h2{height:63.684082px;}
.h7{height:68.778809px;}
.h10{height:71.459473px;}
.h6{height:91.705078px;}
.h5{height:111.849609px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:82.471500px;}
.x1{left:83.686650px;}
.x6{left:84.855450px;}
.xb{left:103.048350px;}
.x7{left:104.054700px;}
.x5{left:105.952200px;}
.xd{left:107.306850px;}
.xf{left:121.900350px;}
.xe{left:123.452850px;}
.x9{left:131.601750px;}
.x8{left:132.964500px;}
.x4{left:212.319000px;}
.x3{left:230.608200px;}
.xc{left:232.375950px;}
.x2{left:233.439750px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.916267pt;}
.v5{vertical-align:18.642667pt;}
.v1{vertical-align:26.644267pt;}
.ls8{letter-spacing:-6.048000pt;}
.ls6{letter-spacing:-4.032000pt;}
.ls2d{letter-spacing:-3.864000pt;}
.ls44{letter-spacing:-2.880000pt;}
.ls10{letter-spacing:-2.720000pt;}
.ls19{letter-spacing:-2.637333pt;}
.ls37{letter-spacing:-2.514667pt;}
.ls45{letter-spacing:-2.085333pt;}
.ls3a{letter-spacing:-1.800000pt;}
.ls26{letter-spacing:-1.594667pt;}
.ls7{letter-spacing:-1.344000pt;}
.ls3b{letter-spacing:-1.226667pt;}
.ls24{letter-spacing:-1.165333pt;}
.ls17{letter-spacing:-1.104000pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls28{letter-spacing:-1.042667pt;}
.ls1a{letter-spacing:-0.797333pt;}
.ls22{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls14{letter-spacing:-0.736000pt;}
.ls3f{letter-spacing:-0.720000pt;}
.ls49{letter-spacing:-0.693333pt;}
.ls2c{letter-spacing:-0.674667pt;}
.ls1{letter-spacing:-0.666667pt;}
.ls35{letter-spacing:-0.613333pt;}
.ls3e{letter-spacing:-0.557333pt;}
.ls2a{letter-spacing:-0.552000pt;}
.ls43{letter-spacing:-0.506667pt;}
.ls34{letter-spacing:-0.429333pt;}
.ls48{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.184000pt;}
.ls41{letter-spacing:-0.152000pt;}
.ls29{letter-spacing:-0.122667pt;}
.ls16{letter-spacing:-0.072000pt;}
.ls9{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.072000pt;}
.ls25{letter-spacing:0.122667pt;}
.ls40{letter-spacing:0.184000pt;}
.ls4a{letter-spacing:0.432000pt;}
.ls31{letter-spacing:0.674667pt;}
.lsb{letter-spacing:0.858667pt;}
.ls18{letter-spacing:0.920000pt;}
.lsa{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.042667pt;}
.ls1e{letter-spacing:1.079200pt;}
.ls1c{letter-spacing:1.165600pt;}
.ls3{letter-spacing:1.194667pt;}
.lsd{letter-spacing:1.200000pt;}
.ls36{letter-spacing:1.349333pt;}
.ls3c{letter-spacing:1.410667pt;}
.ls1d{letter-spacing:1.453600pt;}
.ls27{letter-spacing:1.533333pt;}
.ls13{letter-spacing:1.594667pt;}
.ls47{letter-spacing:1.809333pt;}
.ls39{letter-spacing:1.821600pt;}
.lsf{letter-spacing:2.097333pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls32{letter-spacing:5.029333pt;}
.ls2{letter-spacing:5.333333pt;}
.ls5{letter-spacing:6.453333pt;}
.ls2f{letter-spacing:8.709333pt;}
.ls30{letter-spacing:77.832000pt;}
.ls42{letter-spacing:414.866133pt;}
.ls2e{letter-spacing:415.199467pt;}
.ls0{letter-spacing:416.433067pt;}
.ls1b{letter-spacing:416.799467pt;}
.ls38{letter-spacing:417.732800pt;}
.ls23{letter-spacing:899.968000pt;}
.ls3d{letter-spacing:900.408000pt;}
.ls46{letter-spacing:902.741333pt;}
.lse{letter-spacing:906.341333pt;}
.ls33{letter-spacing:908.101333pt;}
.ws2c{word-spacing:-77.832000pt;}
.ws2{word-spacing:-22.368000pt;}
.ws29{word-spacing:-18.733333pt;}
.ws2b{word-spacing:-18.154667pt;}
.ws0{word-spacing:-18.066667pt;}
.ws3{word-spacing:-17.664000pt;}
.ws1e{word-spacing:-17.357333pt;}
.ws44{word-spacing:-17.352000pt;}
.ws32{word-spacing:-17.112000pt;}
.ws39{word-spacing:-16.933333pt;}
.ws1f{word-spacing:-16.437333pt;}
.ws3c{word-spacing:-16.008000pt;}
.ws22{word-spacing:-15.026667pt;}
.ws2a{word-spacing:-14.965333pt;}
.ws23{word-spacing:-14.597333pt;}
.ws21{word-spacing:-14.106667pt;}
.ws48{word-spacing:-13.920000pt;}
.ws20{word-spacing:-13.554667pt;}
.ws24{word-spacing:-13.370667pt;}
.ws45{word-spacing:-13.064000pt;}
.ws47{word-spacing:-12.480000pt;}
.ws1{word-spacing:-11.685333pt;}
.wsf{word-spacing:-10.047811pt;}
.ws6{word-spacing:-6.453333pt;}
.ws5{word-spacing:-5.333333pt;}
.ws2f{word-spacing:-5.029333pt;}
.ws30{word-spacing:-4.354667pt;}
.ws19{word-spacing:-2.133333pt;}
.ws11{word-spacing:-1.594667pt;}
.ws26{word-spacing:-1.533333pt;}
.ws3d{word-spacing:-1.410667pt;}
.ws36{word-spacing:-1.349333pt;}
.wsc{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.042667pt;}
.ws9{word-spacing:-0.981333pt;}
.ws16{word-spacing:-0.920000pt;}
.wsa{word-spacing:-0.858667pt;}
.ws2e{word-spacing:-0.674667pt;}
.ws41{word-spacing:-0.184000pt;}
.ws38{word-spacing:-0.122667pt;}
.ws1b{word-spacing:-0.072000pt;}
.ws3b{word-spacing:-0.061333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws3a{word-spacing:-0.042933pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.061333pt;}
.ws14{word-spacing:0.072000pt;}
.ws42{word-spacing:0.122667pt;}
.ws43{word-spacing:0.152000pt;}
.wsd{word-spacing:0.160000pt;}
.ws1a{word-spacing:0.184000pt;}
.ws49{word-spacing:0.426667pt;}
.ws33{word-spacing:0.429333pt;}
.ws46{word-spacing:0.506667pt;}
.ws31{word-spacing:0.552000pt;}
.ws3e{word-spacing:0.557333pt;}
.ws34{word-spacing:0.613333pt;}
.ws28{word-spacing:0.674667pt;}
.ws3f{word-spacing:0.720000pt;}
.ws12{word-spacing:0.736000pt;}
.ws13{word-spacing:0.760000pt;}
.ws1d{word-spacing:0.768000pt;}
.ws18{word-spacing:0.797333pt;}
.wse{word-spacing:1.013333pt;}
.ws2d{word-spacing:1.042667pt;}
.ws15{word-spacing:1.104000pt;}
.ws25{word-spacing:1.165333pt;}
.ws40{word-spacing:1.594667pt;}
.ws37{word-spacing:2.514667pt;}
.ws17{word-spacing:2.637333pt;}
.ws10{word-spacing:2.720000pt;}
.ws35{word-spacing:3.864000pt;}
.ws7{word-spacing:4.032000pt;}
.ws1c{word-spacing:7.247856pt;}
._16{margin-left:-77.402667pt;}
._1e{margin-left:-16.413333pt;}
._1a{margin-left:-10.158933pt;}
._17{margin-left:-9.070667pt;}
._9{margin-left:-6.164800pt;}
._8{margin-left:-5.176000pt;}
._7{margin-left:-4.155467pt;}
._b{margin-left:-3.253600pt;}
._3{margin-left:-1.918400pt;}
._5{margin-left:-1.010400pt;}
._0{width:1.526400pt;}
._4{width:2.626400pt;}
._c{width:3.640000pt;}
._2{width:4.810667pt;}
._1{width:5.966933pt;}
._6{width:7.482667pt;}
._f{width:8.496267pt;}
._10{width:9.924533pt;}
._11{width:10.957600pt;}
._1d{width:12.321867pt;}
._12{width:13.509867pt;}
._1c{width:16.130667pt;}
._13{width:20.390933pt;}
._a{width:21.682667pt;}
._14{width:31.370064pt;}
._d{width:38.617920pt;}
._15{width:77.832000pt;}
._18{width:99.176000pt;}
._1b{width:154.112800pt;}
._19{width:174.763200pt;}
._e{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fsc{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsf{font-size:41.976000pt;}
.fsd{font-size:42.666667pt;}
.fse{font-size:42.933333pt;}
.fsb{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:55.968000pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8b{bottom:94.369200pt;}
.yd3{bottom:94.461200pt;}
.y22{bottom:94.474800pt;}
.y68{bottom:94.477600pt;}
.y46{bottom:94.485600pt;}
.yf2{bottom:94.485733pt;}
.y114{bottom:94.501733pt;}
.yaf{bottom:94.537867pt;}
.y21{bottom:109.810800pt;}
.y67{bottom:109.813600pt;}
.y45{bottom:112.484267pt;}
.yf1{bottom:112.484400pt;}
.y8a{bottom:112.523867pt;}
.yd2{bottom:113.091200pt;}
.y113{bottom:113.515067pt;}
.yae{bottom:113.658533pt;}
.y20{bottom:125.146800pt;}
.y66{bottom:125.149600pt;}
.y44{bottom:128.931733pt;}
.y89{bottom:130.678533pt;}
.yd1{bottom:131.721200pt;}
.y112{bottom:132.528400pt;}
.yad{bottom:132.779200pt;}
.y1f{bottom:140.482800pt;}
.y65{bottom:140.485600pt;}
.y43{bottom:146.930400pt;}
.y88{bottom:148.833200pt;}
.yd0{bottom:150.351200pt;}
.y135{bottom:151.610533pt;}
.yf0{bottom:151.667333pt;}
.yac{bottom:151.899867pt;}
.y1e{bottom:155.818800pt;}
.y64{bottom:158.484267pt;}
.ycf{bottom:168.981200pt;}
.y134{bottom:169.627200pt;}
.y111{bottom:170.446000pt;}
.yab{bottom:171.020533pt;}
.yef{bottom:171.386000pt;}
.y1d{bottom:173.817467pt;}
.y63{bottom:177.597067pt;}
.y87{bottom:185.142533pt;}
.y42{bottom:186.079600pt;}
.yce{bottom:187.611200pt;}
.y133{bottom:187.643867pt;}
.yaa{bottom:190.141200pt;}
.yee{bottom:191.104667pt;}
.y62{bottom:194.044667pt;}
.y86{bottom:203.297200pt;}
.y41{bottom:204.632933pt;}
.y132{bottom:205.660533pt;}
.y1c{bottom:205.866933pt;}
.ycd{bottom:206.241200pt;}
.ya9{bottom:209.261867pt;}
.yed{bottom:210.823333pt;}
.y61{bottom:212.043333pt;}
.y85{bottom:221.451867pt;}
.y40{bottom:223.186267pt;}
.y131{bottom:223.677200pt;}
.y1b{bottom:224.144267pt;}
.ycc{bottom:224.871200pt;}
.y110{bottom:226.996667pt;}
.ya8{bottom:228.382533pt;}
.yec{bottom:230.542000pt;}
.y84{bottom:239.606533pt;}
.y130{bottom:241.693867pt;}
.y3f{bottom:241.739600pt;}
.y1a{bottom:242.421600pt;}
.ycb{bottom:243.501200pt;}
.y10f{bottom:246.010000pt;}
.ya7{bottom:247.503200pt;}
.yeb{bottom:250.260667pt;}
.y60{bottom:251.121333pt;}
.y3e{bottom:260.369200pt;}
.y19{bottom:260.698933pt;}
.yca{bottom:262.131200pt;}
.y10e{bottom:265.023333pt;}
.ya6{bottom:266.623867pt;}
.yea{bottom:269.979333pt;}
.y5f{bottom:270.165333pt;}
.y83{bottom:275.915867pt;}
.y12f{bottom:278.608000pt;}
.y3d{bottom:278.922533pt;}
.y18{bottom:278.976267pt;}
.yc9{bottom:280.761200pt;}
.y10d{bottom:284.036667pt;}
.ya5{bottom:285.744533pt;}
.y5e{bottom:289.209333pt;}
.ye9{bottom:289.698000pt;}
.y82{bottom:294.070533pt;}
.y17{bottom:297.253600pt;}
.y3c{bottom:297.475867pt;}
.yc8{bottom:299.391200pt;}
.y10c{bottom:303.050000pt;}
.y14f{bottom:304.170267pt;}
.ya4{bottom:304.865200pt;}
.y5d{bottom:308.253333pt;}
.ye8{bottom:309.416667pt;}
.y81{bottom:312.225200pt;}
.y16{bottom:315.530933pt;}
.y3b{bottom:316.029200pt;}
.yc7{bottom:318.021200pt;}
.y10b{bottom:322.063333pt;}
.y14e{bottom:322.170267pt;}
.ya3{bottom:323.985867pt;}
.y5c{bottom:327.297333pt;}
.ye7{bottom:329.135333pt;}
.y80{bottom:330.379867pt;}
.y15{bottom:333.808267pt;}
.y12e{bottom:333.967867pt;}
.y3a{bottom:334.582533pt;}
.yc6{bottom:336.651200pt;}
.y14d{bottom:340.170267pt;}
.y10a{bottom:341.076667pt;}
.ya2{bottom:343.106533pt;}
.y5b{bottom:346.341333pt;}
.y7f{bottom:348.534533pt;}
.ye6{bottom:348.854000pt;}
.y12d{bottom:351.984533pt;}
.y14{bottom:352.085600pt;}
.y39{bottom:353.135867pt;}
.yc5{bottom:355.281200pt;}
.y14c{bottom:358.170267pt;}
.y109{bottom:360.090000pt;}
.ya1{bottom:362.227200pt;}
.y5a{bottom:365.385333pt;}
.y7e{bottom:366.689200pt;}
.ye5{bottom:368.572667pt;}
.y12c{bottom:370.001200pt;}
.y13{bottom:370.362933pt;}
.y38{bottom:371.689200pt;}
.yc4{bottom:373.911200pt;}
.y14b{bottom:376.170267pt;}
.y108{bottom:379.103333pt;}
.ya0{bottom:381.347867pt;}
.y59{bottom:384.429333pt;}
.y12b{bottom:388.017867pt;}
.ye4{bottom:388.291333pt;}
.y12{bottom:388.640267pt;}
.y37{bottom:390.242533pt;}
.yc3{bottom:392.541200pt;}
.y107{bottom:398.116667pt;}
.y9f{bottom:400.468533pt;}
.y7d{bottom:402.998533pt;}
.y58{bottom:403.473333pt;}
.y14a{bottom:405.503600pt;}
.y12a{bottom:406.034533pt;}
.y11{bottom:406.917600pt;}
.ye3{bottom:408.010000pt;}
.y36{bottom:408.795867pt;}
.yc2{bottom:411.171200pt;}
.y106{bottom:417.130000pt;}
.y9e{bottom:419.589200pt;}
.y7c{bottom:421.153200pt;}
.y129{bottom:424.051200pt;}
.y10{bottom:425.194933pt;}
.y35{bottom:427.349200pt;}
.ye2{bottom:427.728667pt;}
.y105{bottom:436.143333pt;}
.y9d{bottom:438.709867pt;}
.y7b{bottom:439.307867pt;}
.y57{bottom:441.408800pt;}
.y128{bottom:442.067867pt;}
.y149{bottom:442.382533pt;}
.yf{bottom:443.472267pt;}
.y34{bottom:445.902533pt;}
.ye1{bottom:447.447333pt;}
.yc1{bottom:448.431200pt;}
.y104{bottom:455.156667pt;}
.y7a{bottom:457.462533pt;}
.y9c{bottom:457.830533pt;}
.y127{bottom:460.084533pt;}
.y148{bottom:460.383867pt;}
.ye{bottom:461.749600pt;}
.y33{bottom:464.455867pt;}
.yc0{bottom:467.061200pt;}
.ye0{bottom:467.166000pt;}
.y103{bottom:474.170000pt;}
.y79{bottom:475.617200pt;}
.y9b{bottom:476.951200pt;}
.y126{bottom:478.101200pt;}
.y147{bottom:478.385200pt;}
.yd{bottom:480.026933pt;}
.y32{bottom:483.009200pt;}
.ybf{bottom:485.691200pt;}
.ydf{bottom:486.884667pt;}
.y102{bottom:493.183333pt;}
.y78{bottom:493.771867pt;}
.y9a{bottom:496.071867pt;}
.y125{bottom:496.117867pt;}
.y146{bottom:496.386533pt;}
.y56{bottom:497.709467pt;}
.yc{bottom:498.304267pt;}
.y31{bottom:501.562533pt;}
.ybe{bottom:504.321200pt;}
.yde{bottom:506.603333pt;}
.y101{bottom:512.196667pt;}
.y124{bottom:514.134533pt;}
.y145{bottom:514.387867pt;}
.y99{bottom:515.192533pt;}
.yb{bottom:516.581600pt;}
.y55{bottom:516.753467pt;}
.y30{bottom:520.115867pt;}
.ybd{bottom:522.951200pt;}
.ydd{bottom:526.322000pt;}
.y77{bottom:530.081200pt;}
.y100{bottom:531.210000pt;}
.y123{bottom:532.151200pt;}
.y144{bottom:532.389200pt;}
.y98{bottom:534.313200pt;}
.ya{bottom:534.858933pt;}
.y54{bottom:535.797467pt;}
.ybc{bottom:541.581200pt;}
.ydc{bottom:546.040667pt;}
.y76{bottom:548.235867pt;}
.y122{bottom:550.167867pt;}
.yff{bottom:550.223333pt;}
.y143{bottom:550.390533pt;}
.y97{bottom:553.433867pt;}
.y53{bottom:554.841467pt;}
.y2f{bottom:557.576400pt;}
.y75{bottom:566.390533pt;}
.y121{bottom:568.184533pt;}
.y142{bottom:568.391867pt;}
.yfe{bottom:569.236667pt;}
.y9{bottom:572.027467pt;}
.y96{bottom:572.554533pt;}
.y52{bottom:573.885467pt;}
.ybb{bottom:578.841200pt;}
.y2e{bottom:579.464400pt;}
.y74{bottom:584.545200pt;}
.y120{bottom:586.201200pt;}
.y141{bottom:586.393200pt;}
.yfd{bottom:588.250000pt;}
.y95{bottom:591.675200pt;}
.y51{bottom:592.929467pt;}
.yba{bottom:597.471200pt;}
.y73{bottom:602.699867pt;}
.y11f{bottom:604.217867pt;}
.y140{bottom:604.394533pt;}
.ydb{bottom:605.196667pt;}
.yfc{bottom:607.263333pt;}
.y94{bottom:610.795867pt;}
.y50{bottom:611.973467pt;}
.yb9{bottom:616.101200pt;}
.y72{bottom:620.854533pt;}
.y11e{bottom:622.234533pt;}
.y13f{bottom:622.395867pt;}
.yda{bottom:624.915333pt;}
.yfb{bottom:626.276667pt;}
.y8{bottom:627.644933pt;}
.y93{bottom:629.916533pt;}
.y4f{bottom:631.017467pt;}
.yb8{bottom:634.731200pt;}
.y2d{bottom:635.377600pt;}
.y71{bottom:639.009200pt;}
.y11d{bottom:640.251200pt;}
.y13e{bottom:640.397200pt;}
.yd9{bottom:644.634000pt;}
.yfa{bottom:645.290000pt;}
.y92{bottom:649.037200pt;}
.y4e{bottom:650.061467pt;}
.yb7{bottom:653.361200pt;}
.y2c{bottom:653.974533pt;}
.y7{bottom:655.916933pt;}
.y70{bottom:657.163867pt;}
.y11c{bottom:658.267867pt;}
.y13d{bottom:658.398533pt;}
.yf9{bottom:664.303333pt;}
.yd8{bottom:664.363867pt;}
.y91{bottom:668.157867pt;}
.y4d{bottom:669.105467pt;}
.yb6{bottom:671.991200pt;}
.y2b{bottom:672.527867pt;}
.y6f{bottom:675.318533pt;}
.y11b{bottom:676.284533pt;}
.y13c{bottom:676.399867pt;}
.yf8{bottom:683.316667pt;}
.y6{bottom:684.188933pt;}
.y4c{bottom:688.149467pt;}
.yb5{bottom:690.621200pt;}
.y2a{bottom:691.081200pt;}
.y6e{bottom:693.473200pt;}
.y11a{bottom:694.301200pt;}
.y13b{bottom:694.393200pt;}
.yf7{bottom:702.330000pt;}
.yd7{bottom:703.801200pt;}
.y90{bottom:706.797867pt;}
.y4b{bottom:707.193467pt;}
.yb4{bottom:709.251200pt;}
.y29{bottom:709.634533pt;}
.y6d{bottom:711.627867pt;}
.y119{bottom:712.317867pt;}
.y13a{bottom:712.394533pt;}
.yf6{bottom:721.343333pt;}
.y8f{bottom:725.918533pt;}
.y4a{bottom:726.237467pt;}
.yb3{bottom:727.881200pt;}
.y28{bottom:728.187867pt;}
.y6c{bottom:729.782533pt;}
.y118{bottom:730.334533pt;}
.y139{bottom:730.395867pt;}
.y5{bottom:738.923733pt;}
.yf5{bottom:740.356667pt;}
.yd6{bottom:743.238533pt;}
.y8e{bottom:745.039200pt;}
.y49{bottom:745.281467pt;}
.yb2{bottom:746.511200pt;}
.y27{bottom:746.741200pt;}
.y6b{bottom:747.937200pt;}
.y117{bottom:748.351200pt;}
.y138{bottom:748.397200pt;}
.y4{bottom:757.857067pt;}
.yd5{bottom:762.961733pt;}
.y8d{bottom:764.159867pt;}
.y48{bottom:764.319333pt;}
.yb1{bottom:765.141200pt;}
.y26{bottom:765.294533pt;}
.y6a{bottom:766.091867pt;}
.y116{bottom:766.367867pt;}
.y137{bottom:766.398533pt;}
.yf4{bottom:778.271733pt;}
.yd4{bottom:782.680400pt;}
.y8c{bottom:783.280533pt;}
.y47{bottom:783.357200pt;}
.yb0{bottom:783.771200pt;}
.y25{bottom:783.847867pt;}
.y69{bottom:784.246533pt;}
.y3{bottom:784.350400pt;}
.y115{bottom:784.384533pt;}
.y136{bottom:784.399867pt;}
.yf3{bottom:800.627733pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.h9{height:30.107146pt;}
.hc{height:36.229167pt;}
.hf{height:39.060271pt;}
.hb{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.ha{height:49.710938pt;}
.h8{height:52.079427pt;}
.hd{height:52.103960pt;}
.h11{height:52.111427pt;}
.he{height:52.424494pt;}
.h12{height:55.234375pt;}
.h2{height:56.608073pt;}
.h7{height:61.136719pt;}
.h10{height:63.519531pt;}
.h6{height:81.515625pt;}
.h5{height:99.421875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:73.308000pt;}
.x1{left:74.388133pt;}
.x6{left:75.427067pt;}
.xb{left:91.598533pt;}
.x7{left:92.493067pt;}
.x5{left:94.179733pt;}
.xd{left:95.383867pt;}
.xf{left:108.355867pt;}
.xe{left:109.735867pt;}
.x9{left:116.979333pt;}
.x8{left:118.190667pt;}
.x4{left:188.728000pt;}
.x3{left:204.985067pt;}
.xc{left:206.556400pt;}
.x2{left:207.502000pt;}
}




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