
    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_c44f5cfb69dec48c4ee69f5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_c8fdee8b8317afde847fc325.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_ed675773bbd3b46b6d405a3f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_cd00b346c66d4f3fa6ce043d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_0dbf127feeb2d14b3b161210.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_97fefcce25299833bda9d0ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_7e1c4d06a4d2c868fec52f71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_f3ac5e86f1435538114e014b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006000;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_17468c0ba90d0e85cf9647af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_bd90234aa49a3b8636f8e112.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_2c2b2a613ae00acbd1227054.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770000;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_98a6577cffef49924876857c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_7fa3ac2474cc7665259a11d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005000;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_f67d948ee1529d374978f06c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.950195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_72fdbf63ddd2dbea0d7e1dce.woff2')format("woff");}.fff{font-family:fff;line-height:1.006000;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.986000px;}
.lsb{letter-spacing:-0.918000px;}
.lse{letter-spacing:-0.588000px;}
.ls4{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.204000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.924000px;}
.lsd{letter-spacing:0.966000px;}
.ls0{letter-spacing:3.240000px;}
.lsf{letter-spacing:4.320000px;}
.ls10{letter-spacing:5.520000px;}
.ls8{letter-spacing:456.456000px;}
.ls9{letter-spacing:502.572000px;}
.ls1{letter-spacing:2826.768000px;}
.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;}
}
.ws1a{word-spacing:-511.266000px;}
.ws2{word-spacing:-24.486000px;}
.wsf{word-spacing:-20.706000px;}
.ws1{word-spacing:-20.604000px;}
.ws14{word-spacing:-19.992000px;}
.ws0{word-spacing:-11.178000px;}
.ws10{word-spacing:-10.638000px;}
.ws13{word-spacing:-10.368000px;}
.ws34{word-spacing:-9.936000px;}
.ws15{word-spacing:-9.534000px;}
.ws39{word-spacing:-9.456000px;}
.ws11{word-spacing:-8.568000px;}
.ws26{word-spacing:-2.106000px;}
.ws32{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.584000px;}
.ws2c{word-spacing:-1.188000px;}
.ws2d{word-spacing:-1.134000px;}
.ws21{word-spacing:-0.924000px;}
.ws1f{word-spacing:-0.918000px;}
.ws12{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.702000px;}
.ws8{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.420000px;}
.ws28{word-spacing:-0.216000px;}
.wse{word-spacing:-0.102000px;}
.ws38{word-spacing:-0.096000px;}
.ws3e{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws3a{word-spacing:0.019200px;}
.ws35{word-spacing:0.204000px;}
.ws5{word-spacing:0.216000px;}
.ws1e{word-spacing:0.270000px;}
.wsd{word-spacing:0.306000px;}
.wsb{word-spacing:0.594000px;}
.ws36{word-spacing:0.672000px;}
.ws24{word-spacing:0.810000px;}
.ws23{word-spacing:0.864000px;}
.ws2e{word-spacing:1.512000px;}
.ws2f{word-spacing:1.566000px;}
.ws27{word-spacing:1.890000px;}
.ws9{word-spacing:1.944000px;}
.ws33{word-spacing:2.052000px;}
.ws3f{word-spacing:2.160000px;}
.ws25{word-spacing:2.484000px;}
.ws4{word-spacing:2.592000px;}
.ws22{word-spacing:2.646000px;}
.ws20{word-spacing:3.024000px;}
.ws29{word-spacing:3.672000px;}
.ws2a{word-spacing:3.888000px;}
.ws7{word-spacing:4.860000px;}
.ws6{word-spacing:5.076000px;}
.wsa{word-spacing:5.616000px;}
.ws2b{word-spacing:6.372000px;}
.ws30{word-spacing:7.182000px;}
.ws37{word-spacing:8.064000px;}
.ws3c{word-spacing:8.544000px;}
.ws19{word-spacing:346.962000px;}
.ws1c{word-spacing:418.824000px;}
.ws18{word-spacing:444.192000px;}
.ws17{word-spacing:447.762000px;}
.ws1d{word-spacing:474.054000px;}
.ws1b{word-spacing:532.896000px;}
.ws16{word-spacing:650.034000px;}
._26{margin-left:-502.572000px;}
._a{margin-left:-13.809600px;}
._6{margin-left:-11.469600px;}
._31{margin-left:-6.814800px;}
._7{margin-left:-5.767200px;}
._8{margin-left:-3.855600px;}
._4{margin-left:-2.743200px;}
._2{margin-left:-1.576800px;}
._0{width:1.890000px;}
._1{width:3.596400px;}
._3{width:4.741200px;}
._5{width:6.075000px;}
._9{width:7.133400px;}
._30{width:8.143200px;}
._c{width:25.272000px;}
._33{width:38.479800px;}
._b{width:40.446000px;}
._f{width:313.320000px;}
._20{width:369.978000px;}
._2e{width:420.988800px;}
._1e{width:437.976000px;}
._1f{width:442.974000px;}
._2c{width:446.460000px;}
._24{width:448.644000px;}
._15{width:450.240000px;}
._13{width:452.886000px;}
._16{width:462.798000px;}
._18{width:471.030000px;}
._11{width:472.710000px;}
._1c{width:481.068000px;}
._27{width:482.622000px;}
._1b{width:486.066000px;}
._25{width:491.086800px;}
._2b{width:498.049200px;}
._29{width:501.732000px;}
._10{width:503.958000px;}
._2a{width:524.958000px;}
._23{width:531.784800px;}
._12{width:538.356000px;}
._2d{width:542.850000px;}
._1d{width:543.858000px;}
._14{width:551.292000px;}
._28{width:561.750000px;}
._21{width:574.867200px;}
._19{width:577.626000px;}
._17{width:579.306000px;}
._22{width:582.721200px;}
._1a{width:622.650000px;}
._e{width:1028.202000px;}
._d{width:1936.696800px;}
._2f{width:1942.072800px;}
._34{width:1943.608800px;}
._32{width:1947.112800px;}
.fc4{color:rgb(0,103,104);}
.fc3{color:rgb(0,93,145);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.486000px;}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:34.158750px;}
.y4{bottom:71.658750px;}
.yde{bottom:91.328850px;}
.y7c{bottom:95.791800px;}
.y10e{bottom:101.653350px;}
.ydd{bottom:109.324350px;}
.yc{bottom:111.000000px;}
.y32{bottom:111.193950px;}
.y7b{bottom:113.787300px;}
.y10d{bottom:118.153350px;}
.yb{bottom:121.800000px;}
.ydc{bottom:127.319850px;}
.y31{bottom:129.189450px;}
.y7a{bottom:131.782800px;}
.ya{bottom:132.600000px;}
.y10c{bottom:134.653350px;}
.y9{bottom:143.400000px;}
.ydb{bottom:145.315350px;}
.y30{bottom:147.184950px;}
.y79{bottom:149.778300px;}
.y10b{bottom:151.153350px;}
.yda{bottom:163.310850px;}
.y2f{bottom:165.180450px;}
.y10a{bottom:167.653350px;}
.y78{bottom:167.773800px;}
.y8{bottom:181.200000px;}
.yd9{bottom:181.306350px;}
.y2e{bottom:183.175950px;}
.y109{bottom:184.153350px;}
.y77{bottom:188.779800px;}
.y7{bottom:193.800000px;}
.yd8{bottom:199.301850px;}
.y108{bottom:200.653350px;}
.y2d{bottom:201.171450px;}
.y6{bottom:206.400000px;}
.y107{bottom:217.153350px;}
.yd7{bottom:217.297350px;}
.y76{bottom:218.776800px;}
.y5{bottom:219.000000px;}
.y2c{bottom:219.166950px;}
.y106{bottom:233.653350px;}
.yd6{bottom:235.292850px;}
.y75{bottom:236.772300px;}
.y2b{bottom:237.162450px;}
.y105{bottom:250.153350px;}
.yd5{bottom:253.288350px;}
.y74{bottom:254.767800px;}
.y2a{bottom:255.157950px;}
.y104{bottom:266.653350px;}
.yd4{bottom:271.283850px;}
.y29{bottom:273.153450px;}
.y103{bottom:283.153350px;}
.y73{bottom:284.767800px;}
.yd3{bottom:289.279350px;}
.y28{bottom:291.148950px;}
.y102{bottom:299.653350px;}
.y6a{bottom:302.892600px;}
.yd2{bottom:307.274850px;}
.y27{bottom:309.144450px;}
.y101{bottom:316.153350px;}
.y69{bottom:317.897100px;}
.yd1{bottom:325.270350px;}
.y26{bottom:327.139950px;}
.y100{bottom:332.653350px;}
.y68{bottom:332.901600px;}
.y72{bottom:341.049300px;}
.yd0{bottom:343.265850px;}
.y25{bottom:345.135450px;}
.y67{bottom:347.906100px;}
.yff{bottom:349.153350px;}
.y71{bottom:359.044800px;}
.ycf{bottom:361.261350px;}
.y66{bottom:362.910600px;}
.y24{bottom:363.130950px;}
.yfe{bottom:365.653350px;}
.y70{bottom:377.040300px;}
.y65{bottom:377.915100px;}
.yce{bottom:379.256850px;}
.y23{bottom:381.126450px;}
.yfd{bottom:382.153350px;}
.y64{bottom:392.919600px;}
.y6f{bottom:395.035800px;}
.ycd{bottom:397.252350px;}
.yfc{bottom:398.653350px;}
.y22{bottom:399.121950px;}
.y63{bottom:407.924100px;}
.y6e{bottom:413.031300px;}
.yfb{bottom:415.153350px;}
.ycc{bottom:415.247850px;}
.y21{bottom:417.117450px;}
.y62{bottom:422.928600px;}
.y6d{bottom:431.026800px;}
.yfa{bottom:431.653350px;}
.ycb{bottom:433.243350px;}
.y20{bottom:435.112950px;}
.y61{bottom:437.933100px;}
.yf9{bottom:448.153350px;}
.y6c{bottom:449.022300px;}
.yca{bottom:451.238850px;}
.y60{bottom:452.937600px;}
.y1f{bottom:453.108450px;}
.yf8{bottom:464.653350px;}
.y6b{bottom:467.017800px;}
.y5f{bottom:467.942100px;}
.yc9{bottom:469.234350px;}
.y1e{bottom:471.103950px;}
.yf7{bottom:481.153350px;}
.y5e{bottom:482.946600px;}
.yc8{bottom:487.229850px;}
.y1d{bottom:489.099450px;}
.y5d{bottom:497.951100px;}
.yf6{bottom:500.653350px;}
.yc7{bottom:505.225350px;}
.y1c{bottom:507.094950px;}
.y5c{bottom:512.955600px;}
.y134{bottom:513.510600px;}
.ya6{bottom:516.019500px;}
.yc6{bottom:523.220850px;}
.y1b{bottom:525.090450px;}
.y5b{bottom:527.960100px;}
.y133{bottom:530.010600px;}
.ya5{bottom:530.247000px;}
.yc5{bottom:541.216350px;}
.y5a{bottom:542.964600px;}
.y1a{bottom:543.085950px;}
.ya4{bottom:544.474500px;}
.y132{bottom:546.510600px;}
.yf5{bottom:556.904850px;}
.y59{bottom:557.969100px;}
.ya3{bottom:558.702000px;}
.yc4{bottom:559.211850px;}
.y19{bottom:561.081450px;}
.y131{bottom:563.010600px;}
.ya2{bottom:572.929500px;}
.y58{bottom:572.973600px;}
.yf4{bottom:574.900350px;}
.yc3{bottom:577.207350px;}
.y18{bottom:579.076950px;}
.y130{bottom:579.510600px;}
.ya1{bottom:587.157000px;}
.yc2{bottom:595.202850px;}
.y12f{bottom:596.010600px;}
.yf3{bottom:598.907850px;}
.y17{bottom:600.076950px;}
.ya0{bottom:601.384500px;}
.y57{bottom:612.497850px;}
.y12e{bottom:612.510600px;}
.yc1{bottom:613.198350px;}
.y9f{bottom:615.612000px;}
.yf2{bottom:616.907850px;}
.y12d{bottom:629.010600px;}
.y9e{bottom:629.839500px;}
.y56{bottom:630.493350px;}
.yc0{bottom:631.193850px;}
.yf1{bottom:634.931850px;}
.y9d{bottom:644.067000px;}
.y12c{bottom:645.510600px;}
.y55{bottom:648.488850px;}
.ybf{bottom:649.189350px;}
.yf0{bottom:652.927350px;}
.y16{bottom:656.353950px;}
.y9c{bottom:658.294500px;}
.y12b{bottom:662.010600px;}
.y54{bottom:666.484350px;}
.ybe{bottom:667.184850px;}
.y9b{bottom:672.522000px;}
.y15{bottom:674.349450px;}
.yef{bottom:676.930350px;}
.y12a{bottom:678.510600px;}
.y53{bottom:684.479850px;}
.ybd{bottom:685.180350px;}
.y9a{bottom:686.749500px;}
.y14{bottom:692.344950px;}
.yee{bottom:694.925850px;}
.y129{bottom:695.010600px;}
.y99{bottom:700.977000px;}
.y52{bottom:702.475350px;}
.ybc{bottom:703.175850px;}
.y128{bottom:711.510600px;}
.yed{bottom:712.921350px;}
.y98{bottom:715.204500px;}
.y51{bottom:720.470850px;}
.ybb{bottom:721.171350px;}
.y127{bottom:728.010600px;}
.y13{bottom:728.349450px;}
.y97{bottom:729.432000px;}
.y34{bottom:730.155900px;}
.yec{bottom:730.916850px;}
.y50{bottom:738.466350px;}
.yba{bottom:739.166850px;}
.y96{bottom:743.659500px;}
.y126{bottom:744.510600px;}
.y33{bottom:745.031550px;}
.yeb{bottom:754.919850px;}
.y12{bottom:755.349450px;}
.y4f{bottom:756.461850px;}
.yb9{bottom:757.162350px;}
.y95{bottom:757.887000px;}
.y125{bottom:761.010600px;}
.y94{bottom:772.114500px;}
.yea{bottom:772.915350px;}
.y11{bottom:773.344950px;}
.y4e{bottom:774.457350px;}
.yb8{bottom:775.157850px;}
.y124{bottom:777.510600px;}
.y93{bottom:786.342000px;}
.ye9{bottom:790.910850px;}
.y10{bottom:791.340450px;}
.y4d{bottom:792.452850px;}
.yb7{bottom:793.153350px;}
.y123{bottom:794.010600px;}
.y92{bottom:800.569500px;}
.ye8{bottom:808.906350px;}
.yf{bottom:809.335950px;}
.y4c{bottom:810.448350px;}
.y122{bottom:810.510600px;}
.yb6{bottom:814.153350px;}
.y91{bottom:814.797000px;}
.y121{bottom:827.010600px;}
.ye{bottom:827.331450px;}
.y4b{bottom:828.443850px;}
.y90{bottom:829.024500px;}
.ye7{bottom:832.909350px;}
.y8f{bottom:843.252000px;}
.y120{bottom:843.510600px;}
.yd{bottom:845.326950px;}
.y4a{bottom:846.439350px;}
.ye6{bottom:850.904850px;}
.y8e{bottom:857.479500px;}
.y11f{bottom:860.010600px;}
.y49{bottom:864.434850px;}
.yb5{bottom:870.466350px;}
.y8d{bottom:871.707000px;}
.ye5{bottom:874.907850px;}
.y11e{bottom:876.510600px;}
.y48{bottom:882.430350px;}
.y8c{bottom:885.934500px;}
.yb4{bottom:888.461850px;}
.ye4{bottom:892.903350px;}
.y11d{bottom:893.010600px;}
.y3a{bottom:895.761150px;}
.y8b{bottom:900.162000px;}
.y47{bottom:900.425850px;}
.yb3{bottom:906.457350px;}
.y11c{bottom:909.510600px;}
.y8a{bottom:914.389500px;}
.ye3{bottom:916.903350px;}
.y46{bottom:918.421350px;}
.y39{bottom:921.262650px;}
.yb2{bottom:924.452850px;}
.y11b{bottom:926.010600px;}
.y89{bottom:928.617000px;}
.y45{bottom:936.416850px;}
.y38{bottom:939.258150px;}
.yb1{bottom:942.448350px;}
.y11a{bottom:942.510600px;}
.y88{bottom:942.844500px;}
.y44{bottom:954.412350px;}
.y87{bottom:957.072000px;}
.y119{bottom:959.010600px;}
.yb0{bottom:960.443850px;}
.y86{bottom:971.299500px;}
.y37{bottom:972.258150px;}
.y43{bottom:972.407850px;}
.ye2{bottom:973.162350px;}
.y118{bottom:975.510600px;}
.yaf{bottom:978.439350px;}
.y85{bottom:985.527000px;}
.y42{bottom:990.403350px;}
.ye1{bottom:991.157850px;}
.y117{bottom:992.010600px;}
.yae{bottom:996.434850px;}
.y84{bottom:999.754500px;}
.y36{bottom:1008.258150px;}
.y116{bottom:1008.510600px;}
.ye0{bottom:1009.153350px;}
.y41{bottom:1011.403350px;}
.y83{bottom:1013.982000px;}
.yad{bottom:1014.430350px;}
.y115{bottom:1025.010600px;}
.y82{bottom:1028.209500px;}
.ydf{bottom:1030.153350px;}
.yac{bottom:1032.425850px;}
.y35{bottom:1038.858150px;}
.y114{bottom:1041.510600px;}
.y81{bottom:1042.437000px;}
.yab{bottom:1050.421350px;}
.y113{bottom:1058.010600px;}
.y80{bottom:1064.161500px;}
.y40{bottom:1067.666850px;}
.yaa{bottom:1068.416850px;}
.y112{bottom:1074.510600px;}
.y3f{bottom:1085.662350px;}
.y7f{bottom:1085.886000px;}
.ya9{bottom:1086.412350px;}
.y111{bottom:1091.010600px;}
.y3{bottom:1103.536350px;}
.y3e{bottom:1103.657850px;}
.ya8{bottom:1104.407850px;}
.y110{bottom:1107.510600px;}
.y7e{bottom:1109.855850px;}
.y3d{bottom:1121.653350px;}
.ya7{bottom:1122.403350px;}
.y10f{bottom:1124.010600px;}
.y7d{bottom:1124.860350px;}
.y2{bottom:1136.650650px;}
.y1{bottom:1154.470650px;}
.y3c{bottom:1175.538600px;}
.h6{height:27.540000px;}
.h10{height:31.962000px;}
.h5{height:32.130000px;}
.ha{height:32.172000px;}
.hd{height:36.768000px;}
.h4{height:39.696000px;}
.h3{height:41.094000px;}
.he{height:41.310000px;}
.h7{height:41.364000px;}
.hf{height:44.658000px;}
.h2{height:45.441000px;}
.hc{height:49.713864px;}
.h9{height:63.840000px;}
.h8{height:78.030000px;}
.hb{height:84.354000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6{left:-337.606350px;}
.x7{left:-270.843300px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x2{left:93.000000px;}
.x4{left:288.000000px;}
.x5{left:305.995500px;}
.x8{left:455.668500px;}
.x1{left:717.106200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.432000pt;}
.lsb{letter-spacing:-0.816000pt;}
.lse{letter-spacing:-0.522667pt;}
.ls4{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.181333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.821333pt;}
.lsd{letter-spacing:0.858667pt;}
.ls0{letter-spacing:2.880000pt;}
.lsf{letter-spacing:3.840000pt;}
.ls10{letter-spacing:4.906667pt;}
.ls8{letter-spacing:405.738667pt;}
.ls9{letter-spacing:446.730667pt;}
.ls1{letter-spacing:2512.682667pt;}
.ws1a{word-spacing:-454.458667pt;}
.ws2{word-spacing:-21.765333pt;}
.wsf{word-spacing:-18.405333pt;}
.ws1{word-spacing:-18.314667pt;}
.ws14{word-spacing:-17.770667pt;}
.ws0{word-spacing:-9.936000pt;}
.ws10{word-spacing:-9.456000pt;}
.ws13{word-spacing:-9.216000pt;}
.ws34{word-spacing:-8.832000pt;}
.ws15{word-spacing:-8.474667pt;}
.ws39{word-spacing:-8.405333pt;}
.ws11{word-spacing:-7.616000pt;}
.ws26{word-spacing:-1.872000pt;}
.ws32{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.408000pt;}
.ws2c{word-spacing:-1.056000pt;}
.ws2d{word-spacing:-1.008000pt;}
.ws21{word-spacing:-0.821333pt;}
.ws1f{word-spacing:-0.816000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.624000pt;}
.ws8{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.373333pt;}
.ws28{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.090667pt;}
.ws38{word-spacing:-0.085333pt;}
.ws3e{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.017067pt;}
.ws35{word-spacing:0.181333pt;}
.ws5{word-spacing:0.192000pt;}
.ws1e{word-spacing:0.240000pt;}
.wsd{word-spacing:0.272000pt;}
.wsb{word-spacing:0.528000pt;}
.ws36{word-spacing:0.597333pt;}
.ws24{word-spacing:0.720000pt;}
.ws23{word-spacing:0.768000pt;}
.ws2e{word-spacing:1.344000pt;}
.ws2f{word-spacing:1.392000pt;}
.ws27{word-spacing:1.680000pt;}
.ws9{word-spacing:1.728000pt;}
.ws33{word-spacing:1.824000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws25{word-spacing:2.208000pt;}
.ws4{word-spacing:2.304000pt;}
.ws22{word-spacing:2.352000pt;}
.ws20{word-spacing:2.688000pt;}
.ws29{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.456000pt;}
.ws7{word-spacing:4.320000pt;}
.ws6{word-spacing:4.512000pt;}
.wsa{word-spacing:4.992000pt;}
.ws2b{word-spacing:5.664000pt;}
.ws30{word-spacing:6.384000pt;}
.ws37{word-spacing:7.168000pt;}
.ws3c{word-spacing:7.594667pt;}
.ws19{word-spacing:308.410667pt;}
.ws1c{word-spacing:372.288000pt;}
.ws18{word-spacing:394.837333pt;}
.ws17{word-spacing:398.010667pt;}
.ws1d{word-spacing:421.381333pt;}
.ws1b{word-spacing:473.685333pt;}
.ws16{word-spacing:577.808000pt;}
._26{margin-left:-446.730667pt;}
._a{margin-left:-12.275200pt;}
._6{margin-left:-10.195200pt;}
._31{margin-left:-6.057600pt;}
._7{margin-left:-5.126400pt;}
._8{margin-left:-3.427200pt;}
._4{margin-left:-2.438400pt;}
._2{margin-left:-1.401600pt;}
._0{width:1.680000pt;}
._1{width:3.196800pt;}
._3{width:4.214400pt;}
._5{width:5.400000pt;}
._9{width:6.340800pt;}
._30{width:7.238400pt;}
._c{width:22.464000pt;}
._33{width:34.204267pt;}
._b{width:35.952000pt;}
._f{width:278.506667pt;}
._20{width:328.869333pt;}
._2e{width:374.212267pt;}
._1e{width:389.312000pt;}
._1f{width:393.754667pt;}
._2c{width:396.853333pt;}
._24{width:398.794667pt;}
._15{width:400.213333pt;}
._13{width:402.565333pt;}
._16{width:411.376000pt;}
._18{width:418.693333pt;}
._11{width:420.186667pt;}
._1c{width:427.616000pt;}
._27{width:428.997333pt;}
._1b{width:432.058667pt;}
._25{width:436.521600pt;}
._2b{width:442.710400pt;}
._29{width:445.984000pt;}
._10{width:447.962667pt;}
._2a{width:466.629333pt;}
._23{width:472.697600pt;}
._12{width:478.538667pt;}
._2d{width:482.533333pt;}
._1d{width:483.429333pt;}
._14{width:490.037333pt;}
._28{width:499.333333pt;}
._21{width:510.993067pt;}
._19{width:513.445333pt;}
._17{width:514.938667pt;}
._22{width:517.974400pt;}
._1a{width:553.466667pt;}
._e{width:913.957333pt;}
._d{width:1721.508267pt;}
._2f{width:1726.286933pt;}
._34{width:1727.652267pt;}
._32{width:1730.766933pt;}
.fs8{font-size:21.765333pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:30.363333pt;}
.y4{bottom:63.696667pt;}
.yde{bottom:81.181200pt;}
.y7c{bottom:85.148267pt;}
.y10e{bottom:90.358533pt;}
.ydd{bottom:97.177200pt;}
.yc{bottom:98.666667pt;}
.y32{bottom:98.839067pt;}
.y7b{bottom:101.144267pt;}
.y10d{bottom:105.025200pt;}
.yb{bottom:108.266667pt;}
.ydc{bottom:113.173200pt;}
.y31{bottom:114.835067pt;}
.y7a{bottom:117.140267pt;}
.ya{bottom:117.866667pt;}
.y10c{bottom:119.691867pt;}
.y9{bottom:127.466667pt;}
.ydb{bottom:129.169200pt;}
.y30{bottom:130.831067pt;}
.y79{bottom:133.136267pt;}
.y10b{bottom:134.358533pt;}
.yda{bottom:145.165200pt;}
.y2f{bottom:146.827067pt;}
.y10a{bottom:149.025200pt;}
.y78{bottom:149.132267pt;}
.y8{bottom:161.066667pt;}
.yd9{bottom:161.161200pt;}
.y2e{bottom:162.823067pt;}
.y109{bottom:163.691867pt;}
.y77{bottom:167.804267pt;}
.y7{bottom:172.266667pt;}
.yd8{bottom:177.157200pt;}
.y108{bottom:178.358533pt;}
.y2d{bottom:178.819067pt;}
.y6{bottom:183.466667pt;}
.y107{bottom:193.025200pt;}
.yd7{bottom:193.153200pt;}
.y76{bottom:194.468267pt;}
.y5{bottom:194.666667pt;}
.y2c{bottom:194.815067pt;}
.y106{bottom:207.691867pt;}
.yd6{bottom:209.149200pt;}
.y75{bottom:210.464267pt;}
.y2b{bottom:210.811067pt;}
.y105{bottom:222.358533pt;}
.yd5{bottom:225.145200pt;}
.y74{bottom:226.460267pt;}
.y2a{bottom:226.807067pt;}
.y104{bottom:237.025200pt;}
.yd4{bottom:241.141200pt;}
.y29{bottom:242.803067pt;}
.y103{bottom:251.691867pt;}
.y73{bottom:253.126933pt;}
.yd3{bottom:257.137200pt;}
.y28{bottom:258.799067pt;}
.y102{bottom:266.358533pt;}
.y6a{bottom:269.237867pt;}
.yd2{bottom:273.133200pt;}
.y27{bottom:274.795067pt;}
.y101{bottom:281.025200pt;}
.y69{bottom:282.575200pt;}
.yd1{bottom:289.129200pt;}
.y26{bottom:290.791067pt;}
.y100{bottom:295.691867pt;}
.y68{bottom:295.912533pt;}
.y72{bottom:303.154933pt;}
.yd0{bottom:305.125200pt;}
.y25{bottom:306.787067pt;}
.y67{bottom:309.249867pt;}
.yff{bottom:310.358533pt;}
.y71{bottom:319.150933pt;}
.ycf{bottom:321.121200pt;}
.y66{bottom:322.587200pt;}
.y24{bottom:322.783067pt;}
.yfe{bottom:325.025200pt;}
.y70{bottom:335.146933pt;}
.y65{bottom:335.924533pt;}
.yce{bottom:337.117200pt;}
.y23{bottom:338.779067pt;}
.yfd{bottom:339.691867pt;}
.y64{bottom:349.261867pt;}
.y6f{bottom:351.142933pt;}
.ycd{bottom:353.113200pt;}
.yfc{bottom:354.358533pt;}
.y22{bottom:354.775067pt;}
.y63{bottom:362.599200pt;}
.y6e{bottom:367.138933pt;}
.yfb{bottom:369.025200pt;}
.ycc{bottom:369.109200pt;}
.y21{bottom:370.771067pt;}
.y62{bottom:375.936533pt;}
.y6d{bottom:383.134933pt;}
.yfa{bottom:383.691867pt;}
.ycb{bottom:385.105200pt;}
.y20{bottom:386.767067pt;}
.y61{bottom:389.273867pt;}
.yf9{bottom:398.358533pt;}
.y6c{bottom:399.130933pt;}
.yca{bottom:401.101200pt;}
.y60{bottom:402.611200pt;}
.y1f{bottom:402.763067pt;}
.yf8{bottom:413.025200pt;}
.y6b{bottom:415.126933pt;}
.y5f{bottom:415.948533pt;}
.yc9{bottom:417.097200pt;}
.y1e{bottom:418.759067pt;}
.yf7{bottom:427.691867pt;}
.y5e{bottom:429.285867pt;}
.yc8{bottom:433.093200pt;}
.y1d{bottom:434.755067pt;}
.y5d{bottom:442.623200pt;}
.yf6{bottom:445.025200pt;}
.yc7{bottom:449.089200pt;}
.y1c{bottom:450.751067pt;}
.y5c{bottom:455.960533pt;}
.y134{bottom:456.453867pt;}
.ya6{bottom:458.684000pt;}
.yc6{bottom:465.085200pt;}
.y1b{bottom:466.747067pt;}
.y5b{bottom:469.297867pt;}
.y133{bottom:471.120533pt;}
.ya5{bottom:471.330667pt;}
.yc5{bottom:481.081200pt;}
.y5a{bottom:482.635200pt;}
.y1a{bottom:482.743067pt;}
.ya4{bottom:483.977333pt;}
.y132{bottom:485.787200pt;}
.yf5{bottom:495.026533pt;}
.y59{bottom:495.972533pt;}
.ya3{bottom:496.624000pt;}
.yc4{bottom:497.077200pt;}
.y19{bottom:498.739067pt;}
.y131{bottom:500.453867pt;}
.ya2{bottom:509.270667pt;}
.y58{bottom:509.309867pt;}
.yf4{bottom:511.022533pt;}
.yc3{bottom:513.073200pt;}
.y18{bottom:514.735067pt;}
.y130{bottom:515.120533pt;}
.ya1{bottom:521.917333pt;}
.yc2{bottom:529.069200pt;}
.y12f{bottom:529.787200pt;}
.yf3{bottom:532.362533pt;}
.y17{bottom:533.401733pt;}
.ya0{bottom:534.564000pt;}
.y57{bottom:544.442533pt;}
.y12e{bottom:544.453867pt;}
.yc1{bottom:545.065200pt;}
.y9f{bottom:547.210667pt;}
.yf2{bottom:548.362533pt;}
.y12d{bottom:559.120533pt;}
.y9e{bottom:559.857333pt;}
.y56{bottom:560.438533pt;}
.yc0{bottom:561.061200pt;}
.yf1{bottom:564.383867pt;}
.y9d{bottom:572.504000pt;}
.y12c{bottom:573.787200pt;}
.y55{bottom:576.434533pt;}
.ybf{bottom:577.057200pt;}
.yf0{bottom:580.379867pt;}
.y16{bottom:583.425733pt;}
.y9c{bottom:585.150667pt;}
.y12b{bottom:588.453867pt;}
.y54{bottom:592.430533pt;}
.ybe{bottom:593.053200pt;}
.y9b{bottom:597.797333pt;}
.y15{bottom:599.421733pt;}
.yef{bottom:601.715867pt;}
.y12a{bottom:603.120533pt;}
.y53{bottom:608.426533pt;}
.ybd{bottom:609.049200pt;}
.y9a{bottom:610.444000pt;}
.y14{bottom:615.417733pt;}
.yee{bottom:617.711867pt;}
.y129{bottom:617.787200pt;}
.y99{bottom:623.090667pt;}
.y52{bottom:624.422533pt;}
.ybc{bottom:625.045200pt;}
.y128{bottom:632.453867pt;}
.yed{bottom:633.707867pt;}
.y98{bottom:635.737333pt;}
.y51{bottom:640.418533pt;}
.ybb{bottom:641.041200pt;}
.y127{bottom:647.120533pt;}
.y13{bottom:647.421733pt;}
.y97{bottom:648.384000pt;}
.y34{bottom:649.027467pt;}
.yec{bottom:649.703867pt;}
.y50{bottom:656.414533pt;}
.yba{bottom:657.037200pt;}
.y96{bottom:661.030667pt;}
.y126{bottom:661.787200pt;}
.y33{bottom:662.250267pt;}
.yeb{bottom:671.039867pt;}
.y12{bottom:671.421733pt;}
.y4f{bottom:672.410533pt;}
.yb9{bottom:673.033200pt;}
.y95{bottom:673.677333pt;}
.y125{bottom:676.453867pt;}
.y94{bottom:686.324000pt;}
.yea{bottom:687.035867pt;}
.y11{bottom:687.417733pt;}
.y4e{bottom:688.406533pt;}
.yb8{bottom:689.029200pt;}
.y124{bottom:691.120533pt;}
.y93{bottom:698.970667pt;}
.ye9{bottom:703.031867pt;}
.y10{bottom:703.413733pt;}
.y4d{bottom:704.402533pt;}
.yb7{bottom:705.025200pt;}
.y123{bottom:705.787200pt;}
.y92{bottom:711.617333pt;}
.ye8{bottom:719.027867pt;}
.yf{bottom:719.409733pt;}
.y4c{bottom:720.398533pt;}
.y122{bottom:720.453867pt;}
.yb6{bottom:723.691867pt;}
.y91{bottom:724.264000pt;}
.y121{bottom:735.120533pt;}
.ye{bottom:735.405733pt;}
.y4b{bottom:736.394533pt;}
.y90{bottom:736.910667pt;}
.ye7{bottom:740.363867pt;}
.y8f{bottom:749.557333pt;}
.y120{bottom:749.787200pt;}
.yd{bottom:751.401733pt;}
.y4a{bottom:752.390533pt;}
.ye6{bottom:756.359867pt;}
.y8e{bottom:762.204000pt;}
.y11f{bottom:764.453867pt;}
.y49{bottom:768.386533pt;}
.yb5{bottom:773.747867pt;}
.y8d{bottom:774.850667pt;}
.ye5{bottom:777.695867pt;}
.y11e{bottom:779.120533pt;}
.y48{bottom:784.382533pt;}
.y8c{bottom:787.497333pt;}
.yb4{bottom:789.743867pt;}
.ye4{bottom:793.691867pt;}
.y11d{bottom:793.787200pt;}
.y3a{bottom:796.232133pt;}
.y8b{bottom:800.144000pt;}
.y47{bottom:800.378533pt;}
.yb3{bottom:805.739867pt;}
.y11c{bottom:808.453867pt;}
.y8a{bottom:812.790667pt;}
.ye3{bottom:815.025200pt;}
.y46{bottom:816.374533pt;}
.y39{bottom:818.900133pt;}
.yb2{bottom:821.735867pt;}
.y11b{bottom:823.120533pt;}
.y89{bottom:825.437333pt;}
.y45{bottom:832.370533pt;}
.y38{bottom:834.896133pt;}
.yb1{bottom:837.731867pt;}
.y11a{bottom:837.787200pt;}
.y88{bottom:838.084000pt;}
.y44{bottom:848.366533pt;}
.y87{bottom:850.730667pt;}
.y119{bottom:852.453867pt;}
.yb0{bottom:853.727867pt;}
.y86{bottom:863.377333pt;}
.y37{bottom:864.229467pt;}
.y43{bottom:864.362533pt;}
.ye2{bottom:865.033200pt;}
.y118{bottom:867.120533pt;}
.yaf{bottom:869.723867pt;}
.y85{bottom:876.024000pt;}
.y42{bottom:880.358533pt;}
.ye1{bottom:881.029200pt;}
.y117{bottom:881.787200pt;}
.yae{bottom:885.719867pt;}
.y84{bottom:888.670667pt;}
.y36{bottom:896.229467pt;}
.y116{bottom:896.453867pt;}
.ye0{bottom:897.025200pt;}
.y41{bottom:899.025200pt;}
.y83{bottom:901.317333pt;}
.yad{bottom:901.715867pt;}
.y115{bottom:911.120533pt;}
.y82{bottom:913.964000pt;}
.ydf{bottom:915.691867pt;}
.yac{bottom:917.711867pt;}
.y35{bottom:923.429467pt;}
.y114{bottom:925.787200pt;}
.y81{bottom:926.610667pt;}
.yab{bottom:933.707867pt;}
.y113{bottom:940.453867pt;}
.y80{bottom:945.921333pt;}
.y40{bottom:949.037200pt;}
.yaa{bottom:949.703867pt;}
.y112{bottom:955.120533pt;}
.y3f{bottom:965.033200pt;}
.y7f{bottom:965.232000pt;}
.ya9{bottom:965.699867pt;}
.y111{bottom:969.787200pt;}
.y3{bottom:980.921200pt;}
.y3e{bottom:981.029200pt;}
.ya8{bottom:981.695867pt;}
.y110{bottom:984.453867pt;}
.y7e{bottom:986.538533pt;}
.y3d{bottom:997.025200pt;}
.ya7{bottom:997.691867pt;}
.y10f{bottom:999.120533pt;}
.y7d{bottom:999.875867pt;}
.y2{bottom:1010.356133pt;}
.y1{bottom:1026.196133pt;}
.y3c{bottom:1044.923200pt;}
.h6{height:24.480000pt;}
.h10{height:28.410667pt;}
.h5{height:28.560000pt;}
.ha{height:28.597333pt;}
.hd{height:32.682667pt;}
.h4{height:35.285333pt;}
.h3{height:36.528000pt;}
.he{height:36.720000pt;}
.h7{height:36.768000pt;}
.hf{height:39.696000pt;}
.h2{height:40.392000pt;}
.hc{height:44.190101pt;}
.h9{height:56.746667pt;}
.h8{height:69.360000pt;}
.hb{height:74.981333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6{left:-300.094533pt;}
.x7{left:-240.749600pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x2{left:82.666667pt;}
.x4{left:256.000000pt;}
.x5{left:271.996000pt;}
.x8{left:405.038667pt;}
.x1{left:637.427733pt;}
}




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