
    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_a8fb5583dfb471fcbf12abd9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_e1691afa1ee9197bc18752d4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_fe597dfe3267f51902e755cc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_f12e62bfcd47588574149c5a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_c5f453c3770f59ce7657eae9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708000;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_28787868d92abc97b559eb9b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_d8317573f5bbfe5ac24cc98a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_807b37b5f2a343b85f76b1ba.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708000;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_0c1eeea1bfccb8e9aabcd432.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-16.830000px;}
.v4{vertical-align:-14.040000px;}
.v5{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.688000px;}
.ls31{letter-spacing:-3.960000px;}
.ls1f{letter-spacing:-2.808000px;}
.ls1b{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.224000px;}
.ls25{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.864000px;}
.ls32{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls3a{letter-spacing:-0.300000px;}
.ls29{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000600px;}
.ls3e{letter-spacing:0.007800px;}
.lsa{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.086400px;}
.ls18{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.240000px;}
.ls36{letter-spacing:0.244800px;}
.lsd{letter-spacing:0.249000px;}
.ls38{letter-spacing:0.280800px;}
.ls11{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.338400px;}
.lsc{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.936000px;}
.ls2a{letter-spacing:1.152000px;}
.ls2b{letter-spacing:1.296000px;}
.ls2c{letter-spacing:1.440000px;}
.ls2d{letter-spacing:1.461600px;}
.ls23{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.850000px;}
.ls3d{letter-spacing:4.320000px;}
.ls21{letter-spacing:4.464000px;}
.ls22{letter-spacing:4.485600px;}
.ls8{letter-spacing:4.560000px;}
.ls3f{letter-spacing:4.752000px;}
.ls3{letter-spacing:4.896000px;}
.ls35{letter-spacing:6.480000px;}
.ls30{letter-spacing:6.984000px;}
.ls41{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls5{letter-spacing:8.460000px;}
.ls37{letter-spacing:8.928000px;}
.ls2f{letter-spacing:10.440000px;}
.ls2{letter-spacing:10.740000px;}
.ls33{letter-spacing:12.960000px;}
.ls39{letter-spacing:13.796100px;}
.ls34{letter-spacing:44.700000px;}
.lse{letter-spacing:75.180000px;}
.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;}
}
.ws10{word-spacing:-75.180000px;}
.ws3{word-spacing:-25.320000px;}
.ws4e{word-spacing:-23.274000px;}
.ws2e{word-spacing:-20.376000px;}
.ws29{word-spacing:-20.232000px;}
.ws2a{word-spacing:-19.008000px;}
.ws1a{word-spacing:-18.432000px;}
.ws22{word-spacing:-18.288000px;}
.ws3c{word-spacing:-18.216000px;}
.ws37{word-spacing:-18.072000px;}
.ws2c{word-spacing:-18.000000px;}
.ws45{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.784000px;}
.ws3b{word-spacing:-17.640000px;}
.ws36{word-spacing:-17.568000px;}
.ws38{word-spacing:-17.424000px;}
.ws2d{word-spacing:-17.280000px;}
.ws39{word-spacing:-17.064000px;}
.ws3a{word-spacing:-16.992000px;}
.ws2b{word-spacing:-16.920000px;}
.ws44{word-spacing:-14.820000px;}
.ws17{word-spacing:-14.162400px;}
.ws4c{word-spacing:-13.488000px;}
.ws42{word-spacing:-12.960000px;}
.wsf{word-spacing:-11.856000px;}
.ws3d{word-spacing:-10.440000px;}
.ws2{word-spacing:-8.520000px;}
.ws0{word-spacing:-8.496000px;}
.ws20{word-spacing:-8.460000px;}
.ws3e{word-spacing:-6.984000px;}
.wsa{word-spacing:-4.560000px;}
.ws1{word-spacing:-2.907000px;}
.ws7{word-spacing:-2.850000px;}
.ws43{word-spacing:-1.296000px;}
.ws41{word-spacing:-1.152000px;}
.ws24{word-spacing:-0.936000px;}
.ws48{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.720000px;}
.ws49{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.576000px;}
.ws4a{word-spacing:-0.554400px;}
.ws25{word-spacing:-0.504000px;}
.ws14{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.072000px;}
.ws34{word-spacing:-0.060000px;}
.wse{word-spacing:-0.050400px;}
.ws4b{word-spacing:-0.048000px;}
.ws46{word-spacing:-0.033600px;}
.ws5{word-spacing:0.000000px;}
.ws19{word-spacing:0.072000px;}
.ws1b{word-spacing:0.144000px;}
.ws12{word-spacing:0.216000px;}
.ws35{word-spacing:0.288000px;}
.ws47{word-spacing:0.300000px;}
.wsc{word-spacing:0.360000px;}
.ws18{word-spacing:0.432000px;}
.ws4d{word-spacing:0.480000px;}
.ws31{word-spacing:0.504000px;}
.ws1f{word-spacing:0.576000px;}
.ws1e{word-spacing:0.648000px;}
.ws1c{word-spacing:0.720000px;}
.ws40{word-spacing:0.792000px;}
.ws32{word-spacing:0.864000px;}
.ws33{word-spacing:0.936000px;}
.ws30{word-spacing:1.080000px;}
.ws2f{word-spacing:1.224000px;}
.ws11{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws28{word-spacing:2.400000px;}
.ws27{word-spacing:2.808000px;}
.ws8{word-spacing:3.312000px;}
.ws3f{word-spacing:3.960000px;}
.ws4{word-spacing:4.200000px;}
.wsd{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._2c{margin-left:-17.784000px;}
._13{margin-left:-15.716400px;}
._15{margin-left:-14.478000px;}
._4{margin-left:-11.928000px;}
._18{margin-left:-10.290000px;}
._17{margin-left:-9.008400px;}
._c{margin-left:-7.494000px;}
._1{margin-left:-5.964000px;}
._7{margin-left:-4.296000px;}
._8{margin-left:-2.460000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._6{width:3.720000px;}
._9{width:5.179200px;}
._a{width:6.874200px;}
._5{width:8.580000px;}
._b{width:9.646200px;}
._d{width:11.082600px;}
._16{width:12.522000px;}
._e{width:24.840000px;}
._12{width:29.580000px;}
._14{width:31.646100px;}
._1b{width:44.700000px;}
._11{width:73.056000px;}
._f{width:75.180000px;}
._10{width:77.304000px;}
._24{width:97.440000px;}
._22{width:105.420000px;}
._29{width:106.500000px;}
._28{width:170.298000px;}
._2a{width:172.020000px;}
._1a{width:236.160000px;}
._2b{width:237.540000px;}
._1d{width:255.420000px;}
._25{width:281.520000px;}
._27{width:389.220000px;}
._19{width:418.740000px;}
._26{width:455.880000px;}
._1c{width:505.020000px;}
._23{width:511.140000px;}
._21{width:697.620000px;}
._1f{width:776.400000px;}
._20{width:790.320000px;}
._1e{width:988.680000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y49{bottom:117.000000px;}
.yf0{bottom:117.186000px;}
.y16a{bottom:118.200000px;}
.y138{bottom:118.848600px;}
.y196{bottom:120.236250px;}
.y9b{bottom:121.205850px;}
.y21{bottom:121.614750px;}
.yca{bottom:121.750050px;}
.y48{bottom:132.000000px;}
.y169{bottom:132.900000px;}
.y8a{bottom:136.207500px;}
.y195{bottom:138.536250px;}
.yef{bottom:139.092000px;}
.y137{bottom:140.898600px;}
.y9a{bottom:142.805850px;}
.yc9{bottom:143.656050px;}
.y20{bottom:143.808750px;}
.y47{bottom:147.000000px;}
.y168{bottom:147.600000px;}
.y67{bottom:151.207500px;}
.y89{bottom:154.500000px;}
.y194{bottom:156.836250px;}
.yee{bottom:160.998000px;}
.y114{bottom:162.000000px;}
.y167{bottom:162.300000px;}
.y136{bottom:162.948600px;}
.y99{bottom:164.405850px;}
.yc8{bottom:165.562050px;}
.y1f{bottom:166.002750px;}
.y46{bottom:166.207500px;}
.y88{bottom:169.500000px;}
.y66{bottom:173.707500px;}
.ybe{bottom:175.050000px;}
.y193{bottom:175.136250px;}
.y144{bottom:175.860000px;}
.y166{bottom:177.000000px;}
.y113{bottom:181.207500px;}
.yed{bottom:182.904000px;}
.y45{bottom:184.500000px;}
.y135{bottom:184.998600px;}
.y98{bottom:186.005850px;}
.yc7{bottom:187.468050px;}
.y1e{bottom:188.202750px;}
.y165{bottom:191.700000px;}
.ybd{bottom:197.550000px;}
.y143{bottom:198.054000px;}
.y87{bottom:199.500000px;}
.y44{bottom:203.707500px;}
.yec{bottom:204.810000px;}
.y164{bottom:206.400000px;}
.y134{bottom:207.048600px;}
.y97{bottom:207.605850px;}
.yc6{bottom:209.374050px;}
.y192{bottom:211.736250px;}
.y86{bottom:214.500000px;}
.y65{bottom:216.996000px;}
.ybc{bottom:220.050000px;}
.y142{bottom:220.248000px;}
.y163{bottom:221.100000px;}
.y112{bottom:221.266200px;}
.y43{bottom:222.000000px;}
.yeb{bottom:226.716000px;}
.y133{bottom:229.098600px;}
.y85{bottom:229.500000px;}
.y96{bottom:229.655850px;}
.yc5{bottom:231.874050px;}
.y1d{bottom:232.602750px;}
.y162{bottom:235.800000px;}
.y42{bottom:237.000000px;}
.y64{bottom:239.190000px;}
.y191{bottom:240.836250px;}
.y141{bottom:242.442000px;}
.ybb{bottom:242.550000px;}
.y111{bottom:244.072200px;}
.yea{bottom:248.622000px;}
.y84{bottom:248.707500px;}
.y161{bottom:250.500000px;}
.y1c{bottom:251.052750px;}
.y132{bottom:251.148600px;}
.y95{bottom:251.705850px;}
.y41{bottom:252.000000px;}
.yc4{bottom:254.374050px;}
.y190{bottom:259.136250px;}
.y63{bottom:261.384000px;}
.y140{bottom:264.636000px;}
.yba{bottom:265.050000px;}
.y160{bottom:265.200000px;}
.y110{bottom:266.878200px;}
.y40{bottom:267.000000px;}
.ye9{bottom:270.528000px;}
.y131{bottom:273.504600px;}
.y94{bottom:273.755850px;}
.yc3{bottom:276.874050px;}
.y18f{bottom:277.436250px;}
.y1b{bottom:278.005650px;}
.y15f{bottom:279.900000px;}
.y62{bottom:283.578000px;}
.y3f{bottom:286.207500px;}
.y13f{bottom:286.830000px;}
.yb9{bottom:287.550000px;}
.y10f{bottom:289.684200px;}
.ye8{bottom:292.434000px;}
.y15e{bottom:294.600000px;}
.y18e{bottom:295.736250px;}
.y93{bottom:295.805850px;}
.y130{bottom:295.860600px;}
.y1a{bottom:296.455650px;}
.yc2{bottom:299.374050px;}
.y61{bottom:305.772000px;}
.y13e{bottom:309.024000px;}
.y15d{bottom:309.300000px;}
.yb8{bottom:310.050000px;}
.y18d{bottom:314.036250px;}
.ye7{bottom:314.340000px;}
.y19{bottom:314.905650px;}
.y92{bottom:317.855850px;}
.y12f{bottom:318.216600px;}
.y10e{bottom:320.988150px;}
.yc1{bottom:321.874050px;}
.y15c{bottom:324.300000px;}
.y83{bottom:327.144000px;}
.y3e{bottom:327.924000px;}
.y60{bottom:327.966000px;}
.y13d{bottom:331.218000px;}
.yb7{bottom:332.100000px;}
.y18c{bottom:332.336250px;}
.y18{bottom:333.355650px;}
.ye6{bottom:336.246000px;}
.y15b{bottom:339.300000px;}
.y10d{bottom:339.588150px;}
.y91{bottom:339.905850px;}
.y12e{bottom:340.572600px;}
.yc0{bottom:344.374050px;}
.y82{bottom:348.888000px;}
.y3d{bottom:350.118000px;}
.y5f{bottom:350.160000px;}
.y18b{bottom:350.636250px;}
.y17{bottom:351.805650px;}
.y13c{bottom:353.412000px;}
.yb6{bottom:354.150000px;}
.y15a{bottom:354.300000px;}
.ye5{bottom:358.152000px;}
.y10c{bottom:358.188150px;}
.y90{bottom:361.955850px;}
.y12d{bottom:362.928600px;}
.ybf{bottom:366.874050px;}
.y18a{bottom:368.936250px;}
.y159{bottom:369.300000px;}
.y16{bottom:370.255650px;}
.y81{bottom:370.344000px;}
.y3c{bottom:372.312000px;}
.y5e{bottom:372.354000px;}
.y13b{bottom:375.606000px;}
.yb5{bottom:376.200000px;}
.y10b{bottom:376.788150px;}
.ye4{bottom:380.058000px;}
.y8f{bottom:384.005850px;}
.y12c{bottom:385.284600px;}
.y189{bottom:387.236250px;}
.y15{bottom:388.705650px;}
.y158{bottom:390.672000px;}
.y80{bottom:391.788000px;}
.y3b{bottom:394.506000px;}
.y5d{bottom:394.548000px;}
.y10a{bottom:395.388150px;}
.y13a{bottom:397.800000px;}
.yb4{bottom:398.250000px;}
.ye3{bottom:401.964000px;}
.y188{bottom:405.536250px;}
.y8e{bottom:406.055850px;}
.y14{bottom:407.155650px;}
.y12b{bottom:407.640600px;}
.y7f{bottom:413.244000px;}
.y109{bottom:413.988150px;}
.y5c{bottom:416.742000px;}
.y3a{bottom:416.814000px;}
.y139{bottom:420.000000px;}
.yb3{bottom:420.300000px;}
.y187{bottom:423.836250px;}
.ye2{bottom:423.870000px;}
.y8d{bottom:428.105850px;}
.y12a{bottom:429.996600px;}
.y108{bottom:432.588150px;}
.y13{bottom:434.110650px;}
.y7e{bottom:434.700000px;}
.y157{bottom:435.672000px;}
.y5b{bottom:438.936000px;}
.y39{bottom:439.008000px;}
.y186{bottom:442.136250px;}
.yb2{bottom:442.350000px;}
.ye1{bottom:445.776000px;}
.y8c{bottom:450.155850px;}
.y156{bottom:450.672000px;}
.y107{bottom:451.188150px;}
.y129{bottom:452.352600px;}
.y7d{bottom:456.150000px;}
.y185{bottom:460.436250px;}
.y5a{bottom:461.130000px;}
.y38{bottom:461.202000px;}
.yb1{bottom:464.400000px;}
.y155{bottom:465.672000px;}
.ye0{bottom:467.682000px;}
.y106{bottom:469.788150px;}
.y8b{bottom:472.205850px;}
.y128{bottom:474.708600px;}
.y12{bottom:478.510650px;}
.y184{bottom:478.736250px;}
.y154{bottom:480.672000px;}
.y59{bottom:483.324000px;}
.y37{bottom:483.396000px;}
.yb0{bottom:486.450000px;}
.y105{bottom:488.388150px;}
.ydf{bottom:489.588000px;}
.y153{bottom:495.672000px;}
.y11{bottom:496.960650px;}
.y183{bottom:497.036250px;}
.y127{bottom:497.064600px;}
.y7c{bottom:498.936000px;}
.y58{bottom:505.518000px;}
.y36{bottom:505.590000px;}
.y104{bottom:506.988150px;}
.yaf{bottom:508.500000px;}
.y152{bottom:510.666000px;}
.yde{bottom:511.494000px;}
.y182{bottom:515.336250px;}
.y7b{bottom:520.392000px;}
.y10{bottom:523.913550px;}
.y103{bottom:525.588150px;}
.y151{bottom:525.666000px;}
.y57{bottom:527.712000px;}
.y35{bottom:527.784000px;}
.y126{bottom:527.911050px;}
.yae{bottom:530.550000px;}
.ydd{bottom:533.388000px;}
.y181{bottom:533.636250px;}
.y7a{bottom:541.848000px;}
.yf{bottom:542.363550px;}
.y125{bottom:546.511050px;}
.y150{bottom:547.050000px;}
.y56{bottom:549.906000px;}
.y34{bottom:549.978000px;}
.y180{bottom:551.936250px;}
.yad{bottom:552.600000px;}
.y102{bottom:552.686100px;}
.ydc{bottom:555.294000px;}
.ye{bottom:560.813550px;}
.y79{bottom:563.304000px;}
.y17f{bottom:570.236250px;}
.y33{bottom:572.172000px;}
.y55{bottom:572.178000px;}
.y124{bottom:573.616050px;}
.yac{bottom:574.650000px;}
.y101{bottom:575.042100px;}
.ydb{bottom:577.194000px;}
.yd{bottom:579.263550px;}
.y78{bottom:584.760000px;}
.y17e{bottom:588.536250px;}
.y14f{bottom:591.810000px;}
.y123{bottom:592.216050px;}
.y32{bottom:594.366000px;}
.y54{bottom:594.372000px;}
.yab{bottom:596.700000px;}
.yc{bottom:597.713550px;}
.yda{bottom:599.010000px;}
.y100{bottom:605.896050px;}
.y77{bottom:606.216000px;}
.y17d{bottom:606.836250px;}
.y14e{bottom:614.166000px;}
.yb{bottom:616.163550px;}
.y31{bottom:616.560000px;}
.y53{bottom:616.566000px;}
.yaa{bottom:618.750000px;}
.y122{bottom:619.321050px;}
.yd9{bottom:620.916000px;}
.yff{bottom:624.496050px;}
.y76{bottom:627.672000px;}
.ya{bottom:634.613550px;}
.y14d{bottom:636.522000px;}
.y17c{bottom:637.892100px;}
.y121{bottom:637.921050px;}
.y30{bottom:638.754000px;}
.y52{bottom:638.760000px;}
.ya9{bottom:640.800000px;}
.yd8{bottom:642.822000px;}
.yfe{bottom:643.096050px;}
.y75{bottom:649.128000px;}
.y14c{bottom:658.878000px;}
.y2f{bottom:660.948000px;}
.y51{bottom:660.954000px;}
.y9{bottom:661.568550px;}
.yfd{bottom:661.696050px;}
.ya8{bottom:662.850000px;}
.yd7{bottom:664.728000px;}
.y120{bottom:665.026050px;}
.y17b{bottom:668.052000px;}
.y74{bottom:670.584000px;}
.yfc{bottom:680.296050px;}
.y14b{bottom:681.234000px;}
.y2e{bottom:683.142000px;}
.y50{bottom:683.148000px;}
.ya7{bottom:684.900000px;}
.y17a{bottom:685.452000px;}
.yd6{bottom:686.634000px;}
.y73{bottom:692.040000px;}
.y11f{bottom:692.131050px;}
.yfb{bottom:698.896050px;}
.y14a{bottom:703.590000px;}
.y2d{bottom:705.336000px;}
.y4f{bottom:705.342000px;}
.ya6{bottom:706.950000px;}
.y8{bottom:707.154300px;}
.yd5{bottom:708.540000px;}
.y11e{bottom:710.731050px;}
.y72{bottom:713.496000px;}
.yfa{bottom:717.496050px;}
.y149{bottom:725.946000px;}
.y7{bottom:726.654300px;}
.y2c{bottom:727.530000px;}
.y4e{bottom:727.536000px;}
.ya5{bottom:729.000000px;}
.yd4{bottom:730.446000px;}
.y179{bottom:733.500000px;}
.y71{bottom:734.952000px;}
.yf9{bottom:736.096050px;}
.y11d{bottom:737.836050px;}
.y178{bottom:747.900000px;}
.y148{bottom:748.302000px;}
.y6{bottom:748.854300px;}
.y2b{bottom:749.724000px;}
.y4d{bottom:749.730000px;}
.ya4{bottom:751.050000px;}
.yd3{bottom:752.352000px;}
.yf8{bottom:754.696050px;}
.y70{bottom:756.408000px;}
.y177{bottom:762.300000px;}
.y11c{bottom:764.941050px;}
.y147{bottom:770.658000px;}
.y2a{bottom:771.918000px;}
.y4c{bottom:771.924000px;}
.ya3{bottom:773.100000px;}
.yf7{bottom:773.296050px;}
.yd2{bottom:774.258000px;}
.y176{bottom:776.700000px;}
.y6f{bottom:777.864000px;}
.y11b{bottom:783.541050px;}
.y175{bottom:791.100000px;}
.yf6{bottom:791.896050px;}
.y146{bottom:793.014000px;}
.y29{bottom:794.112000px;}
.y4b{bottom:794.118000px;}
.ya2{bottom:795.150000px;}
.yd1{bottom:796.164000px;}
.y6e{bottom:799.320000px;}
.y174{bottom:805.500000px;}
.yf5{bottom:810.496050px;}
.y11a{bottom:810.646050px;}
.y145{bottom:815.370000px;}
.y5{bottom:815.700000px;}
.y28{bottom:816.306000px;}
.y4a{bottom:816.312000px;}
.ya1{bottom:817.200000px;}
.yd0{bottom:818.070000px;}
.y173{bottom:819.900000px;}
.y6d{bottom:820.776000px;}
.y172{bottom:834.300000px;}
.yf4{bottom:837.594000px;}
.y119{bottom:837.726000px;}
.y27{bottom:838.506000px;}
.ya0{bottom:839.250000px;}
.ycf{bottom:839.976000px;}
.y6c{bottom:842.232000px;}
.y4{bottom:845.400000px;}
.y171{bottom:848.700000px;}
.yf3{bottom:859.932000px;}
.y118{bottom:860.082000px;}
.y26{bottom:860.718000px;}
.y9f{bottom:861.300000px;}
.yce{bottom:861.882000px;}
.y170{bottom:863.100000px;}
.y6b{bottom:863.688000px;}
.y3{bottom:875.100000px;}
.y16f{bottom:877.500000px;}
.yf2{bottom:882.288000px;}
.y117{bottom:882.438000px;}
.y25{bottom:882.912000px;}
.y9e{bottom:883.350000px;}
.ycd{bottom:883.788000px;}
.y6a{bottom:885.144000px;}
.y16e{bottom:891.900000px;}
.yf1{bottom:904.644000px;}
.y116{bottom:904.794000px;}
.y24{bottom:905.106000px;}
.y9d{bottom:905.400000px;}
.ycc{bottom:905.694000px;}
.y16d{bottom:906.300000px;}
.y69{bottom:906.594000px;}
.y16c{bottom:920.700000px;}
.y2{bottom:927.000000px;}
.y115{bottom:927.150000px;}
.y23{bottom:927.300000px;}
.y9c{bottom:927.450000px;}
.ycb{bottom:927.600000px;}
.y68{bottom:928.050000px;}
.y16b{bottom:935.100000px;}
.h8{height:30.313623px;}
.h2{height:37.990723px;}
.h13{height:39.072000px;}
.h1{height:39.990234px;}
.h9{height:40.757812px;}
.h14{height:40.781813px;}
.h4{height:42.000000px;}
.h15{height:45.852539px;}
.h6{height:48.399902px;}
.he{height:48.840000px;}
.h7{height:50.947266px;}
.h5{height:61.136719px;}
.hd{height:61.160719px;}
.h11{height:61.184719px;}
.h12{height:61.208719px;}
.h10{height:61.496719px;}
.ha{height:66.483703px;}
.hf{height:66.555703px;}
.hb{height:66.579703px;}
.hc{height:66.603703px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x5{left:67.500000px;}
.x7{left:82.409850px;}
.x8{left:97.276950px;}
.x2{left:112.500000px;}
.x4{left:127.381950px;}
.x6{left:135.000000px;}
.x3{left:142.263750px;}
.x1{left:625.781250px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.480000pt;}
.v5{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.056000pt;}
.ls31{letter-spacing:-3.520000pt;}
.ls1f{letter-spacing:-2.496000pt;}
.ls1b{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.088000pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls3a{letter-spacing:-0.266667pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000533pt;}
.ls3e{letter-spacing:0.006933pt;}
.lsa{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.076800pt;}
.ls18{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.213333pt;}
.ls36{letter-spacing:0.217600pt;}
.lsd{letter-spacing:0.221333pt;}
.ls38{letter-spacing:0.249600pt;}
.ls11{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.300800pt;}
.lsc{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.832000pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls2b{letter-spacing:1.152000pt;}
.ls2c{letter-spacing:1.280000pt;}
.ls2d{letter-spacing:1.299200pt;}
.ls23{letter-spacing:1.920000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls3d{letter-spacing:3.840000pt;}
.ls21{letter-spacing:3.968000pt;}
.ls22{letter-spacing:3.987200pt;}
.ls8{letter-spacing:4.053333pt;}
.ls3f{letter-spacing:4.224000pt;}
.ls3{letter-spacing:4.352000pt;}
.ls35{letter-spacing:5.760000pt;}
.ls30{letter-spacing:6.208000pt;}
.ls41{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls5{letter-spacing:7.520000pt;}
.ls37{letter-spacing:7.936000pt;}
.ls2f{letter-spacing:9.280000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls33{letter-spacing:11.520000pt;}
.ls39{letter-spacing:12.263200pt;}
.ls34{letter-spacing:39.733333pt;}
.lse{letter-spacing:66.826667pt;}
.ws10{word-spacing:-66.826667pt;}
.ws3{word-spacing:-22.506667pt;}
.ws4e{word-spacing:-20.688000pt;}
.ws2e{word-spacing:-18.112000pt;}
.ws29{word-spacing:-17.984000pt;}
.ws2a{word-spacing:-16.896000pt;}
.ws1a{word-spacing:-16.384000pt;}
.ws22{word-spacing:-16.256000pt;}
.ws3c{word-spacing:-16.192000pt;}
.ws37{word-spacing:-16.064000pt;}
.ws2c{word-spacing:-16.000000pt;}
.ws45{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws3b{word-spacing:-15.680000pt;}
.ws36{word-spacing:-15.616000pt;}
.ws38{word-spacing:-15.488000pt;}
.ws2d{word-spacing:-15.360000pt;}
.ws39{word-spacing:-15.168000pt;}
.ws3a{word-spacing:-15.104000pt;}
.ws2b{word-spacing:-15.040000pt;}
.ws44{word-spacing:-13.173333pt;}
.ws17{word-spacing:-12.588800pt;}
.ws4c{word-spacing:-11.989333pt;}
.ws42{word-spacing:-11.520000pt;}
.wsf{word-spacing:-10.538667pt;}
.ws3d{word-spacing:-9.280000pt;}
.ws2{word-spacing:-7.573333pt;}
.ws0{word-spacing:-7.552000pt;}
.ws20{word-spacing:-7.520000pt;}
.ws3e{word-spacing:-6.208000pt;}
.wsa{word-spacing:-4.053333pt;}
.ws1{word-spacing:-2.584000pt;}
.ws7{word-spacing:-2.533333pt;}
.ws43{word-spacing:-1.152000pt;}
.ws41{word-spacing:-1.024000pt;}
.ws24{word-spacing:-0.832000pt;}
.ws48{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.640000pt;}
.ws49{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.512000pt;}
.ws4a{word-spacing:-0.492800pt;}
.ws25{word-spacing:-0.448000pt;}
.ws14{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.064000pt;}
.ws34{word-spacing:-0.053333pt;}
.wse{word-spacing:-0.044800pt;}
.ws4b{word-spacing:-0.042667pt;}
.ws46{word-spacing:-0.029867pt;}
.ws5{word-spacing:0.000000pt;}
.ws19{word-spacing:0.064000pt;}
.ws1b{word-spacing:0.128000pt;}
.ws12{word-spacing:0.192000pt;}
.ws35{word-spacing:0.256000pt;}
.ws47{word-spacing:0.266667pt;}
.wsc{word-spacing:0.320000pt;}
.ws18{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.426667pt;}
.ws31{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.576000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws40{word-spacing:0.704000pt;}
.ws32{word-spacing:0.768000pt;}
.ws33{word-spacing:0.832000pt;}
.ws30{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.088000pt;}
.ws11{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws28{word-spacing:2.133333pt;}
.ws27{word-spacing:2.496000pt;}
.ws8{word-spacing:2.944000pt;}
.ws3f{word-spacing:3.520000pt;}
.ws4{word-spacing:3.733333pt;}
.wsd{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._2c{margin-left:-15.808000pt;}
._13{margin-left:-13.970133pt;}
._15{margin-left:-12.869333pt;}
._4{margin-left:-10.602667pt;}
._18{margin-left:-9.146667pt;}
._17{margin-left:-8.007467pt;}
._c{margin-left:-6.661333pt;}
._1{margin-left:-5.301333pt;}
._7{margin-left:-3.818667pt;}
._8{margin-left:-2.186667pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._6{width:3.306667pt;}
._9{width:4.603733pt;}
._a{width:6.110400pt;}
._5{width:7.626667pt;}
._b{width:8.574400pt;}
._d{width:9.851200pt;}
._16{width:11.130667pt;}
._e{width:22.080000pt;}
._12{width:26.293333pt;}
._14{width:28.129867pt;}
._1b{width:39.733333pt;}
._11{width:64.938667pt;}
._f{width:66.826667pt;}
._10{width:68.714667pt;}
._24{width:86.613333pt;}
._22{width:93.706667pt;}
._29{width:94.666667pt;}
._28{width:151.376000pt;}
._2a{width:152.906667pt;}
._1a{width:209.920000pt;}
._2b{width:211.146667pt;}
._1d{width:227.040000pt;}
._25{width:250.240000pt;}
._27{width:345.973333pt;}
._19{width:372.213333pt;}
._26{width:405.226667pt;}
._1c{width:448.906667pt;}
._23{width:454.346667pt;}
._21{width:620.106667pt;}
._1f{width:690.133333pt;}
._20{width:702.506667pt;}
._1e{width:878.826667pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y49{bottom:104.000000pt;}
.yf0{bottom:104.165333pt;}
.y16a{bottom:105.066667pt;}
.y138{bottom:105.643200pt;}
.y196{bottom:106.876667pt;}
.y9b{bottom:107.738533pt;}
.y21{bottom:108.102000pt;}
.yca{bottom:108.222267pt;}
.y48{bottom:117.333333pt;}
.y169{bottom:118.133333pt;}
.y8a{bottom:121.073333pt;}
.y195{bottom:123.143333pt;}
.yef{bottom:123.637333pt;}
.y137{bottom:125.243200pt;}
.y9a{bottom:126.938533pt;}
.yc9{bottom:127.694267pt;}
.y20{bottom:127.830000pt;}
.y47{bottom:130.666667pt;}
.y168{bottom:131.200000pt;}
.y67{bottom:134.406667pt;}
.y89{bottom:137.333333pt;}
.y194{bottom:139.410000pt;}
.yee{bottom:143.109333pt;}
.y114{bottom:144.000000pt;}
.y167{bottom:144.266667pt;}
.y136{bottom:144.843200pt;}
.y99{bottom:146.138533pt;}
.yc8{bottom:147.166267pt;}
.y1f{bottom:147.558000pt;}
.y46{bottom:147.740000pt;}
.y88{bottom:150.666667pt;}
.y66{bottom:154.406667pt;}
.ybe{bottom:155.600000pt;}
.y193{bottom:155.676667pt;}
.y144{bottom:156.320000pt;}
.y166{bottom:157.333333pt;}
.y113{bottom:161.073333pt;}
.yed{bottom:162.581333pt;}
.y45{bottom:164.000000pt;}
.y135{bottom:164.443200pt;}
.y98{bottom:165.338533pt;}
.yc7{bottom:166.638267pt;}
.y1e{bottom:167.291333pt;}
.y165{bottom:170.400000pt;}
.ybd{bottom:175.600000pt;}
.y143{bottom:176.048000pt;}
.y87{bottom:177.333333pt;}
.y44{bottom:181.073333pt;}
.yec{bottom:182.053333pt;}
.y164{bottom:183.466667pt;}
.y134{bottom:184.043200pt;}
.y97{bottom:184.538533pt;}
.yc6{bottom:186.110267pt;}
.y192{bottom:188.210000pt;}
.y86{bottom:190.666667pt;}
.y65{bottom:192.885333pt;}
.ybc{bottom:195.600000pt;}
.y142{bottom:195.776000pt;}
.y163{bottom:196.533333pt;}
.y112{bottom:196.681067pt;}
.y43{bottom:197.333333pt;}
.yeb{bottom:201.525333pt;}
.y133{bottom:203.643200pt;}
.y85{bottom:204.000000pt;}
.y96{bottom:204.138533pt;}
.yc5{bottom:206.110267pt;}
.y1d{bottom:206.758000pt;}
.y162{bottom:209.600000pt;}
.y42{bottom:210.666667pt;}
.y64{bottom:212.613333pt;}
.y191{bottom:214.076667pt;}
.y141{bottom:215.504000pt;}
.ybb{bottom:215.600000pt;}
.y111{bottom:216.953067pt;}
.yea{bottom:220.997333pt;}
.y84{bottom:221.073333pt;}
.y161{bottom:222.666667pt;}
.y1c{bottom:223.158000pt;}
.y132{bottom:223.243200pt;}
.y95{bottom:223.738533pt;}
.y41{bottom:224.000000pt;}
.yc4{bottom:226.110267pt;}
.y190{bottom:230.343333pt;}
.y63{bottom:232.341333pt;}
.y140{bottom:235.232000pt;}
.yba{bottom:235.600000pt;}
.y160{bottom:235.733333pt;}
.y110{bottom:237.225067pt;}
.y40{bottom:237.333333pt;}
.ye9{bottom:240.469333pt;}
.y131{bottom:243.115200pt;}
.y94{bottom:243.338533pt;}
.yc3{bottom:246.110267pt;}
.y18f{bottom:246.610000pt;}
.y1b{bottom:247.116133pt;}
.y15f{bottom:248.800000pt;}
.y62{bottom:252.069333pt;}
.y3f{bottom:254.406667pt;}
.y13f{bottom:254.960000pt;}
.yb9{bottom:255.600000pt;}
.y10f{bottom:257.497067pt;}
.ye8{bottom:259.941333pt;}
.y15e{bottom:261.866667pt;}
.y18e{bottom:262.876667pt;}
.y93{bottom:262.938533pt;}
.y130{bottom:262.987200pt;}
.y1a{bottom:263.516133pt;}
.yc2{bottom:266.110267pt;}
.y61{bottom:271.797333pt;}
.y13e{bottom:274.688000pt;}
.y15d{bottom:274.933333pt;}
.yb8{bottom:275.600000pt;}
.y18d{bottom:279.143333pt;}
.ye7{bottom:279.413333pt;}
.y19{bottom:279.916133pt;}
.y92{bottom:282.538533pt;}
.y12f{bottom:282.859200pt;}
.y10e{bottom:285.322800pt;}
.yc1{bottom:286.110267pt;}
.y15c{bottom:288.266667pt;}
.y83{bottom:290.794667pt;}
.y3e{bottom:291.488000pt;}
.y60{bottom:291.525333pt;}
.y13d{bottom:294.416000pt;}
.yb7{bottom:295.200000pt;}
.y18c{bottom:295.410000pt;}
.y18{bottom:296.316133pt;}
.ye6{bottom:298.885333pt;}
.y15b{bottom:301.600000pt;}
.y10d{bottom:301.856133pt;}
.y91{bottom:302.138533pt;}
.y12e{bottom:302.731200pt;}
.yc0{bottom:306.110267pt;}
.y82{bottom:310.122667pt;}
.y3d{bottom:311.216000pt;}
.y5f{bottom:311.253333pt;}
.y18b{bottom:311.676667pt;}
.y17{bottom:312.716133pt;}
.y13c{bottom:314.144000pt;}
.yb6{bottom:314.800000pt;}
.y15a{bottom:314.933333pt;}
.ye5{bottom:318.357333pt;}
.y10c{bottom:318.389467pt;}
.y90{bottom:321.738533pt;}
.y12d{bottom:322.603200pt;}
.ybf{bottom:326.110267pt;}
.y18a{bottom:327.943333pt;}
.y159{bottom:328.266667pt;}
.y16{bottom:329.116133pt;}
.y81{bottom:329.194667pt;}
.y3c{bottom:330.944000pt;}
.y5e{bottom:330.981333pt;}
.y13b{bottom:333.872000pt;}
.yb5{bottom:334.400000pt;}
.y10b{bottom:334.922800pt;}
.ye4{bottom:337.829333pt;}
.y8f{bottom:341.338533pt;}
.y12c{bottom:342.475200pt;}
.y189{bottom:344.210000pt;}
.y15{bottom:345.516133pt;}
.y158{bottom:347.264000pt;}
.y80{bottom:348.256000pt;}
.y3b{bottom:350.672000pt;}
.y5d{bottom:350.709333pt;}
.y10a{bottom:351.456133pt;}
.y13a{bottom:353.600000pt;}
.yb4{bottom:354.000000pt;}
.ye3{bottom:357.301333pt;}
.y188{bottom:360.476667pt;}
.y8e{bottom:360.938533pt;}
.y14{bottom:361.916133pt;}
.y12b{bottom:362.347200pt;}
.y7f{bottom:367.328000pt;}
.y109{bottom:367.989467pt;}
.y5c{bottom:370.437333pt;}
.y3a{bottom:370.501333pt;}
.y139{bottom:373.333333pt;}
.yb3{bottom:373.600000pt;}
.y187{bottom:376.743333pt;}
.ye2{bottom:376.773333pt;}
.y8d{bottom:380.538533pt;}
.y12a{bottom:382.219200pt;}
.y108{bottom:384.522800pt;}
.y13{bottom:385.876133pt;}
.y7e{bottom:386.400000pt;}
.y157{bottom:387.264000pt;}
.y5b{bottom:390.165333pt;}
.y39{bottom:390.229333pt;}
.y186{bottom:393.010000pt;}
.yb2{bottom:393.200000pt;}
.ye1{bottom:396.245333pt;}
.y8c{bottom:400.138533pt;}
.y156{bottom:400.597333pt;}
.y107{bottom:401.056133pt;}
.y129{bottom:402.091200pt;}
.y7d{bottom:405.466667pt;}
.y185{bottom:409.276667pt;}
.y5a{bottom:409.893333pt;}
.y38{bottom:409.957333pt;}
.yb1{bottom:412.800000pt;}
.y155{bottom:413.930667pt;}
.ye0{bottom:415.717333pt;}
.y106{bottom:417.589467pt;}
.y8b{bottom:419.738533pt;}
.y128{bottom:421.963200pt;}
.y12{bottom:425.342800pt;}
.y184{bottom:425.543333pt;}
.y154{bottom:427.264000pt;}
.y59{bottom:429.621333pt;}
.y37{bottom:429.685333pt;}
.yb0{bottom:432.400000pt;}
.y105{bottom:434.122800pt;}
.ydf{bottom:435.189333pt;}
.y153{bottom:440.597333pt;}
.y11{bottom:441.742800pt;}
.y183{bottom:441.810000pt;}
.y127{bottom:441.835200pt;}
.y7c{bottom:443.498667pt;}
.y58{bottom:449.349333pt;}
.y36{bottom:449.413333pt;}
.y104{bottom:450.656133pt;}
.yaf{bottom:452.000000pt;}
.y152{bottom:453.925333pt;}
.yde{bottom:454.661333pt;}
.y182{bottom:458.076667pt;}
.y7b{bottom:462.570667pt;}
.y10{bottom:465.700933pt;}
.y103{bottom:467.189467pt;}
.y151{bottom:467.258667pt;}
.y57{bottom:469.077333pt;}
.y35{bottom:469.141333pt;}
.y126{bottom:469.254267pt;}
.yae{bottom:471.600000pt;}
.ydd{bottom:474.122667pt;}
.y181{bottom:474.343333pt;}
.y7a{bottom:481.642667pt;}
.yf{bottom:482.100933pt;}
.y125{bottom:485.787600pt;}
.y150{bottom:486.266667pt;}
.y56{bottom:488.805333pt;}
.y34{bottom:488.869333pt;}
.y180{bottom:490.610000pt;}
.yad{bottom:491.200000pt;}
.y102{bottom:491.276533pt;}
.ydc{bottom:493.594667pt;}
.ye{bottom:498.500933pt;}
.y79{bottom:500.714667pt;}
.y17f{bottom:506.876667pt;}
.y33{bottom:508.597333pt;}
.y55{bottom:508.602667pt;}
.y124{bottom:509.880933pt;}
.yac{bottom:510.800000pt;}
.y101{bottom:511.148533pt;}
.ydb{bottom:513.061333pt;}
.yd{bottom:514.900933pt;}
.y78{bottom:519.786667pt;}
.y17e{bottom:523.143333pt;}
.y14f{bottom:526.053333pt;}
.y123{bottom:526.414267pt;}
.y32{bottom:528.325333pt;}
.y54{bottom:528.330667pt;}
.yab{bottom:530.400000pt;}
.yc{bottom:531.300933pt;}
.yda{bottom:532.453333pt;}
.y100{bottom:538.574267pt;}
.y77{bottom:538.858667pt;}
.y17d{bottom:539.410000pt;}
.y14e{bottom:545.925333pt;}
.yb{bottom:547.700933pt;}
.y31{bottom:548.053333pt;}
.y53{bottom:548.058667pt;}
.yaa{bottom:550.000000pt;}
.y122{bottom:550.507600pt;}
.yd9{bottom:551.925333pt;}
.yff{bottom:555.107600pt;}
.y76{bottom:557.930667pt;}
.ya{bottom:564.100933pt;}
.y14d{bottom:565.797333pt;}
.y17c{bottom:567.015200pt;}
.y121{bottom:567.040933pt;}
.y30{bottom:567.781333pt;}
.y52{bottom:567.786667pt;}
.ya9{bottom:569.600000pt;}
.yd8{bottom:571.397333pt;}
.yfe{bottom:571.640933pt;}
.y75{bottom:577.002667pt;}
.y14c{bottom:585.669333pt;}
.y2f{bottom:587.509333pt;}
.y51{bottom:587.514667pt;}
.y9{bottom:588.060933pt;}
.yfd{bottom:588.174267pt;}
.ya8{bottom:589.200000pt;}
.yd7{bottom:590.869333pt;}
.y120{bottom:591.134267pt;}
.y17b{bottom:593.824000pt;}
.y74{bottom:596.074667pt;}
.yfc{bottom:604.707600pt;}
.y14b{bottom:605.541333pt;}
.y2e{bottom:607.237333pt;}
.y50{bottom:607.242667pt;}
.ya7{bottom:608.800000pt;}
.y17a{bottom:609.290667pt;}
.yd6{bottom:610.341333pt;}
.y73{bottom:615.146667pt;}
.y11f{bottom:615.227600pt;}
.yfb{bottom:621.240933pt;}
.y14a{bottom:625.413333pt;}
.y2d{bottom:626.965333pt;}
.y4f{bottom:626.970667pt;}
.ya6{bottom:628.400000pt;}
.y8{bottom:628.581600pt;}
.yd5{bottom:629.813333pt;}
.y11e{bottom:631.760933pt;}
.y72{bottom:634.218667pt;}
.yfa{bottom:637.774267pt;}
.y149{bottom:645.285333pt;}
.y7{bottom:645.914933pt;}
.y2c{bottom:646.693333pt;}
.y4e{bottom:646.698667pt;}
.ya5{bottom:648.000000pt;}
.yd4{bottom:649.285333pt;}
.y179{bottom:652.000000pt;}
.y71{bottom:653.290667pt;}
.yf9{bottom:654.307600pt;}
.y11d{bottom:655.854267pt;}
.y178{bottom:664.800000pt;}
.y148{bottom:665.157333pt;}
.y6{bottom:665.648267pt;}
.y2b{bottom:666.421333pt;}
.y4d{bottom:666.426667pt;}
.ya4{bottom:667.600000pt;}
.yd3{bottom:668.757333pt;}
.yf8{bottom:670.840933pt;}
.y70{bottom:672.362667pt;}
.y177{bottom:677.600000pt;}
.y11c{bottom:679.947600pt;}
.y147{bottom:685.029333pt;}
.y2a{bottom:686.149333pt;}
.y4c{bottom:686.154667pt;}
.ya3{bottom:687.200000pt;}
.yf7{bottom:687.374267pt;}
.yd2{bottom:688.229333pt;}
.y176{bottom:690.400000pt;}
.y6f{bottom:691.434667pt;}
.y11b{bottom:696.480933pt;}
.y175{bottom:703.200000pt;}
.yf6{bottom:703.907600pt;}
.y146{bottom:704.901333pt;}
.y29{bottom:705.877333pt;}
.y4b{bottom:705.882667pt;}
.ya2{bottom:706.800000pt;}
.yd1{bottom:707.701333pt;}
.y6e{bottom:710.506667pt;}
.y174{bottom:716.000000pt;}
.yf5{bottom:720.440933pt;}
.y11a{bottom:720.574267pt;}
.y145{bottom:724.773333pt;}
.y5{bottom:725.066667pt;}
.y28{bottom:725.605333pt;}
.y4a{bottom:725.610667pt;}
.ya1{bottom:726.400000pt;}
.yd0{bottom:727.173333pt;}
.y173{bottom:728.800000pt;}
.y6d{bottom:729.578667pt;}
.y172{bottom:741.600000pt;}
.yf4{bottom:744.528000pt;}
.y119{bottom:744.645333pt;}
.y27{bottom:745.338667pt;}
.ya0{bottom:746.000000pt;}
.ycf{bottom:746.645333pt;}
.y6c{bottom:748.650667pt;}
.y4{bottom:751.466667pt;}
.y171{bottom:754.400000pt;}
.yf3{bottom:764.384000pt;}
.y118{bottom:764.517333pt;}
.y26{bottom:765.082667pt;}
.y9f{bottom:765.600000pt;}
.yce{bottom:766.117333pt;}
.y170{bottom:767.200000pt;}
.y6b{bottom:767.722667pt;}
.y3{bottom:777.866667pt;}
.y16f{bottom:780.000000pt;}
.yf2{bottom:784.256000pt;}
.y117{bottom:784.389333pt;}
.y25{bottom:784.810667pt;}
.y9e{bottom:785.200000pt;}
.ycd{bottom:785.589333pt;}
.y6a{bottom:786.794667pt;}
.y16e{bottom:792.800000pt;}
.yf1{bottom:804.128000pt;}
.y116{bottom:804.261333pt;}
.y24{bottom:804.538667pt;}
.y9d{bottom:804.800000pt;}
.ycc{bottom:805.061333pt;}
.y16d{bottom:805.600000pt;}
.y69{bottom:805.861333pt;}
.y16c{bottom:818.400000pt;}
.y2{bottom:824.000000pt;}
.y115{bottom:824.133333pt;}
.y23{bottom:824.266667pt;}
.y9c{bottom:824.400000pt;}
.ycb{bottom:824.533333pt;}
.y68{bottom:824.933333pt;}
.y16b{bottom:831.200000pt;}
.h8{height:26.945443pt;}
.h2{height:33.769531pt;}
.h13{height:34.730667pt;}
.h1{height:35.546875pt;}
.h9{height:36.229167pt;}
.h14{height:36.250500pt;}
.h4{height:37.333333pt;}
.h15{height:40.757812pt;}
.h6{height:43.022135pt;}
.he{height:43.413333pt;}
.h7{height:45.286458pt;}
.h5{height:54.343750pt;}
.hd{height:54.365083pt;}
.h11{height:54.386417pt;}
.h12{height:54.407750pt;}
.h10{height:54.663750pt;}
.ha{height:59.096625pt;}
.hf{height:59.160625pt;}
.hb{height:59.181958pt;}
.hc{height:59.203292pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.000000pt;}
.x7{left:73.253200pt;}
.x8{left:86.468400pt;}
.x2{left:100.000000pt;}
.x4{left:113.228400pt;}
.x6{left:120.000000pt;}
.x3{left:126.456667pt;}
.x1{left:556.250000pt;}
}




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