
    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_b951c819e3ce62813c975fab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020996;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_f7313fe733bbcbad548f2356.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044434;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_b9fc51afc5a275adb35ada66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_319544d8f1b0eabdd4612fe7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913086;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_7af9e4c76c026408691449af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.274414;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_6fa4ca3aa7d81e4044ea0b45.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_7bac41227f88657c6f75406a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.193000;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_8f01b33d0c84a356402deac3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918945;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.340000px;}
.v2{vertical-align:33.531000px;}
.ls28{letter-spacing:-0.013832px;}
.ls18{letter-spacing:-0.004611px;}
.ls6{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000004px;}
.lse{letter-spacing:0.000084px;}
.ls26{letter-spacing:0.002256px;}
.ls13{letter-spacing:0.002343px;}
.ls8{letter-spacing:0.003772px;}
.lsa{letter-spacing:0.003898px;}
.ls7{letter-spacing:0.003919px;}
.lsb{letter-spacing:0.003940px;}
.lsc{letter-spacing:0.004191px;}
.ls0{letter-spacing:0.004611px;}
.ls3{letter-spacing:0.005449px;}
.ls2{letter-spacing:0.005533px;}
.ls10{letter-spacing:0.005994px;}
.ls4{letter-spacing:0.006916px;}
.ls1f{letter-spacing:0.009221px;}
.ls9{letter-spacing:0.015718px;}
.lsf{letter-spacing:0.018358px;}
.ls1d{letter-spacing:0.018371px;}
.ls1{letter-spacing:0.018442px;}
.lsd{letter-spacing:0.023053px;}
.ls12{letter-spacing:0.254000px;}
.ls2a{letter-spacing:3.116735px;}
.ls25{letter-spacing:3.119256px;}
.ls17{letter-spacing:3.361095px;}
.ls5{letter-spacing:5.924564px;}
.ls23{letter-spacing:7.542869px;}
.ls16{letter-spacing:11.097607px;}
.ls21{letter-spacing:11.420346px;}
.ls15{letter-spacing:13.596528px;}
.ls22{letter-spacing:16.999118px;}
.ls1e{letter-spacing:18.542556px;}
.ls24{letter-spacing:22.316346px;}
.ls29{letter-spacing:23.071219px;}
.ls27{letter-spacing:35.902395px;}
.ls1b{letter-spacing:143.542886px;}
.ls1c{letter-spacing:171.327178px;}
.ls11{letter-spacing:172.439383px;}
.ls1a{letter-spacing:254.575056px;}
.ls20{letter-spacing:292.036236px;}
.ls19{letter-spacing:491.618440px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.760154px;}
.ws9{word-spacing:-27.755544px;}
.ws4{word-spacing:-23.596131px;}
.ws8{word-spacing:-0.046106px;}
.ws3{word-spacing:-0.043109px;}
.ws2{word-spacing:-0.039190px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:60.281351px;}
.wsc{word-spacing:60.289377px;}
.wsd{word-spacing:60.299676px;}
.ws11{word-spacing:87.991389px;}
.ws17{word-spacing:88.041505px;}
.wsf{word-spacing:115.751543px;}
.ws12{word-spacing:143.511697px;}
.ws16{word-spacing:143.580138px;}
.ws1c{word-spacing:154.866643px;}
.ws13{word-spacing:171.329993px;}
.ws1b{word-spacing:180.991010px;}
.ws10{word-spacing:199.090147px;}
.wse{word-spacing:226.842276px;}
.ws18{word-spacing:226.850302px;}
.ws1a{word-spacing:248.498738px;}
.ws14{word-spacing:254.610456px;}
.ws1f{word-spacing:267.585322px;}
.ws15{word-spacing:282.370610px;}
.ws22{word-spacing:284.948947px;}
.ws6{word-spacing:299.577505px;}
.wsb{word-spacing:335.350977px;}
.ws23{word-spacing:354.851305px;}
.wsa{word-spacing:390.871285px;}
.ws24{word-spacing:395.989564px;}
.ws1d{word-spacing:404.708030px;}
.ws7{word-spacing:435.234456px;}
.ws5{word-spacing:571.643810px;}
.ws21{word-spacing:649.209307px;}
.ws20{word-spacing:704.729616px;}
.ws1e{word-spacing:1205.700639px;}
._2a{margin-left:-172.434772px;}
._82{margin-left:-35.985071px;}
._83{margin-left:-23.066361px;}
._62{margin-left:-17.026534px;}
._34{margin-left:-13.673534px;}
._35{margin-left:-12.660001px;}
._37{margin-left:-11.456025px;}
._38{margin-left:-10.422265px;}
._80{margin-left:-7.582017px;}
._0{margin-left:-5.923972px;}
._3a{margin-left:-4.099208px;}
._39{margin-left:-2.998954px;}
._3{width:1.383167px;}
._26{width:2.950755px;}
._9{width:4.149500px;}
._1{width:5.881900px;}
._8{width:7.119866px;}
._5{width:8.437316px;}
._7{width:10.097116px;}
._a{width:11.394939px;}
._b{width:12.568464px;}
._2b{width:13.600690px;}
._4{width:14.661566px;}
._33{width:15.675888px;}
._23{width:16.828527px;}
._4b{width:18.672749px;}
._6{width:19.963705px;}
._2{width:21.070238px;}
._55{width:23.052777px;}
._4c{width:25.957427px;}
._d{width:29.461449px;}
._21{width:30.706299px;}
._8d{width:33.149893px;}
._36{width:34.231612px;}
._81{width:35.916227px;}
._41{width:37.944871px;}
._7b{width:40.062855px;}
._56{width:43.247010px;}
._8b{width:48.410832px;}
._29{width:58.461842px;}
._22{width:61.412598px;}
._66{width:69.896020px;}
._8c{width:76.166375px;}
._17{width:86.171280px;}
._4f{width:88.059830px;}
._1c{width:113.926824px;}
._50{width:115.778122px;}
._5d{width:123.782581px;}
._52{width:143.570259px;}
._5a{width:154.866643px;}
._2f{width:156.002664px;}
._5c{width:158.035013px;}
._54{width:171.330413px;}
._7d{width:176.492061px;}
._30{width:177.657223px;}
._61{width:182.626797px;}
._59{width:185.795167px;}
._4d{width:199.082722px;}
._5e{width:207.063043px;}
._60{width:213.555322px;}
._58{width:215.756951px;}
._53{width:226.850722px;}
._68{width:234.095247px;}
._1a{width:244.057197px;}
._48{width:252.070515px;}
._71{width:262.867057px;}
._3d{width:269.532597px;}
._51{width:282.371030px;}
._3c{width:291.325705px;}
._77{width:294.006820px;}
._75{width:295.421850px;}
._47{width:297.980196px;}
._5f{width:299.037413px;}
._1b{width:301.040211px;}
._6e{width:304.437605px;}
._79{width:307.311319px;}
._4e{width:310.131184px;}
._8a{width:312.709102px;}
._28{width:318.053351px;}
._27{width:324.193839px;}
._19{width:334.828899px;}
._31{width:338.169099px;}
._18{width:340.877947px;}
._25{width:345.813505px;}
._49{width:346.846013px;}
._57{width:349.187722px;}
._24{width:351.953993px;}
._5b{width:354.557722px;}
._42{width:363.111131px;}
._11{width:368.638102px;}
._2c{width:371.978302px;}
._10{width:377.322731px;}
._74{width:378.625938px;}
._15{width:382.857967px;}
._16{width:384.320673px;}
._44{width:390.871285px;}
._86{width:399.367921px;}
._45{width:402.366322px;}
._f{width:405.082885px;}
._13{width:412.080827px;}
._6c{width:415.478221px;}
._3e{width:418.631439px;}
._14{width:424.158410px;}
._2e{width:427.498610px;}
._20{width:429.093967px;}
._4a{width:430.126476px;}
._e{width:432.843039px;}
._1f{width:435.234456px;}
._12{width:438.378276px;}
._6f{width:443.238375px;}
._43{width:457.886630px;}
._c{width:460.603193px;}
._46{width:463.853676px;}
._1d{width:484.614276px;}
._3f{width:485.646784px;}
._40{width:491.613830px;}
._73{width:493.434866px;}
._7f{width:501.632397px;}
._85{width:510.408537px;}
._67{width:511.696788px;}
._6b{width:512.708443px;}
._89{width:549.172384px;}
._3b{width:557.432210px;}
._6a{width:582.039145px;}
._64{width:594.977250px;}
._88{width:621.449153px;}
._6d{width:623.749059px;}
._70{width:637.559453px;}
._7c{width:640.433167px;}
._87{width:649.209307px;}
._7a{width:654.888823px;}
._7e{width:682.648977px;}
._1e{width:684.851859px;}
._84{width:704.729616px;}
._69{width:748.600070px;}
._63{width:789.298328px;}
._65{width:900.338945px;}
._76{width:904.730210px;}
._78{width:932.490364px;}
._72{width:1104.158256px;}
._32{width:1155.368211px;}
._2d{width:1377.449443px;}
.fc1{color:transparent;}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.189721px;}
.fs1{font-size:46.105554px;}
.fs2{font-size:55.326665px;}
.fs4{font-size:59.937220px;}
.fs0{font-size:69.158331px;}
.y4f{bottom:-13.879890px;}
.y0{bottom:0.000000px;}
.ya1{bottom:3.933615px;}
.yf7{bottom:10.220745px;}
.y13a{bottom:13.364277px;}
.y117{bottom:14.412150px;}
.y39{bottom:15.717750px;}
.ycd{bottom:17.555715px;}
.ya0{bottom:19.651425px;}
.y116{bottom:22.794990px;}
.y139{bottom:29.082105px;}
.y38{bottom:31.435650px;}
.ycc{bottom:33.273525px;}
.yf6{bottom:37.464930px;}
.y138{bottom:44.799882px;}
.y9f{bottom:46.895550px;}
.ycb{bottom:48.991350px;}
.yf5{bottom:53.182800px;}
.y4e{bottom:56.326350px;}
.y137{bottom:60.517684px;}
.y37{bottom:62.871150px;}
.y4d{bottom:64.709100px;}
.yf4{bottom:68.900550px;}
.y115{bottom:76.235550px;}
.y77{bottom:77.283300px;}
.y36{bottom:78.589050px;}
.yca{bottom:80.427000px;}
.y136{bottom:82.522650px;}
.yf3{bottom:84.618300px;}
.y76{bottom:93.001200px;}
.y35{bottom:94.306800px;}
.y4c{bottom:95.096850px;}
.yc9{bottom:96.144750px;}
.y114{bottom:99.288300px;}
.y9e{bottom:101.383950px;}
.yf2{bottom:106.623300px;}
.y1{bottom:108.000000px;}
.y34{bottom:110.024550px;}
.y4a{bottom:110.814750px;}
.yc8{bottom:111.862500px;}
.y75{bottom:115.006050px;}
.y15d{bottom:119.197500px;}
.y9d{bottom:122.341050px;}
.y113{bottom:125.484600px;}
.y33{bottom:125.742450px;}
.y4b{bottom:126.532500px;}
.yf1{bottom:133.867500px;}
.y15c{bottom:134.915250px;}
.y74{bottom:135.963150px;}
.y32{bottom:141.460200px;}
.yc7{bottom:143.298150px;}
.y9c{bottom:144.346050px;}
.y135{bottom:146.441700px;}
.y49{bottom:149.585250px;}
.y112{bottom:152.728800px;}
.y31{bottom:157.177950px;}
.y48{bottom:157.968150px;}
.yc6{bottom:159.015900px;}
.y111{bottom:168.446550px;}
.yf0{bottom:170.542350px;}
.y30{bottom:172.895850px;}
.yc5{bottom:182.068650px;}
.y110{bottom:184.164450px;}
.y47{bottom:188.355900px;}
.y2f{bottom:188.613600px;}
.yc4{bottom:197.786550px;}
.y73{bottom:199.882200px;}
.y15b{bottom:201.978000px;}
.y2e{bottom:204.331500px;}
.y9b{bottom:208.265100px;}
.y134{bottom:209.312850px;}
.y10f{bottom:211.408650px;}
.y72{bottom:215.600100px;}
.y15a{bottom:217.695750px;}
.y2d{bottom:220.049250px;}
.yc2{bottom:220.839300px;}
.y46{bottom:223.982850px;}
.y133{bottom:225.030750px;}
.yc1{bottom:229.222050px;}
.y159{bottom:233.413500px;}
.yef{bottom:234.461400px;}
.y9a{bottom:235.509300px;}
.y2c{bottom:235.767000px;}
.yc3{bottom:236.557050px;}
.y10e{bottom:237.604950px;}
.y132{bottom:240.748500px;}
.y155{bottom:241.796400px;}
.y45{bottom:247.035600px;}
.y158{bottom:249.131400px;}
.y99{bottom:251.227050px;}
.y2b{bottom:251.484900px;}
.y131{bottom:256.466250px;}
.ybf{bottom:259.609950px;}
.yee{bottom:261.705600px;}
.y71{bottom:262.753500px;}
.y157{bottom:264.849150px;}
.y2a{bottom:267.202650px;}
.ybe{bottom:267.992700px;}
.y44{bottom:270.088350px;}
.yc0{bottom:275.327700px;}
.yed{bottom:277.423350px;}
.y6e{bottom:278.471250px;}
.y156{bottom:280.566900px;}
.y29{bottom:282.920400px;}
.y43{bottom:293.141250px;}
.y70{bottom:294.189000px;}
.ybd{bottom:298.380450px;}
.y28{bottom:298.638300px;}
.yec{bottom:299.428350px;}
.y42{bottom:301.524000px;}
.y154{bottom:303.619650px;}
.y130{bottom:304.667550px;}
.ybc{bottom:306.763350px;}
.y6f{bottom:309.906900px;}
.y153{bottom:312.002550px;}
.y27{bottom:314.356050px;}
.y10d{bottom:317.241750px;}
.y12f{bottom:320.385450px;}
.yeb{bottom:326.672550px;}
.y26{bottom:330.073800px;}
.y41{bottom:331.911750px;}
.y6d{bottom:332.959650px;}
.y98{bottom:337.151100px;}
.yea{bottom:342.390300px;}
.y10c{bottom:344.485950px;}
.y25{bottom:345.791700px;}
.y12e{bottom:347.629500px;}
.y6c{bottom:348.677400px;}
.y97{bottom:352.868850px;}
.y69{bottom:357.060300px;}
.y40{bottom:358.108050px;}
.y10b{bottom:360.203850px;}
.y24{bottom:361.509450px;}
.y12d{bottom:363.347400px;}
.y6b{bottom:364.395300px;}
.y152{bottom:365.443050px;}
.y96{bottom:368.586600px;}
.ye9{bottom:373.825950px;}
.ybb{bottom:375.921600px;}
.y23{bottom:377.227200px;}
.y6a{bottom:380.113050px;}
.y10a{bottom:381.160950px;}
.y151{bottom:388.495800px;}
.y12c{bottom:390.591600px;}
.yba{bottom:391.639350px;}
.y22{bottom:392.945100px;}
.y95{bottom:395.830800px;}
.ye8{bottom:401.070150px;}
.y68{bottom:403.165800px;}
.y12b{bottom:406.309350px;}
.y109{bottom:408.405000px;}
.y21{bottom:408.662850px;}
.y94{bottom:411.548700px;}
.yb9{bottom:414.692250px;}
.ye7{bottom:416.787900px;}
.y67{bottom:418.883550px;}
.y3f{bottom:422.027100px;}
.y108{bottom:424.122900px;}
.y20{bottom:424.380600px;}
.y12a{bottom:428.314350px;}
.yb8{bottom:430.410000px;}
.y64{bottom:434.601450px;}
.y3e{bottom:437.745000px;}
.y93{bottom:438.792750px;}
.y1f{bottom:440.098500px;}
.y107{bottom:446.127750px;}
.y66{bottom:450.319200px;}
.y3d{bottom:453.462750px;}
.y92{bottom:454.510650px;}
.y129{bottom:455.558550px;}
.ye6{bottom:464.989200px;}
.y65{bottom:466.036950px;}
.y3c{bottom:469.180650px;}
.y128{bottom:471.276300px;}
.y1e{bottom:471.534000px;}
.y1b{bottom:472.324200px;}
.y106{bottom:473.371950px;}
.y150{bottom:478.611300px;}
.ye5{bottom:480.706950px;}
.y91{bottom:481.754377px;}
.y3b{bottom:484.898400px;}
.y1d{bottom:487.251900px;}
.y63{bottom:489.089850px;}
.yb6{bottom:492.233400px;}
.y14f{bottom:494.329050px;}
.ye4{bottom:496.424700px;}
.y90{bottom:497.472180px;}
.y127{bottom:498.520500px;}
.y3a{bottom:500.616150px;}
.y105{bottom:504.807600px;}
.yb5{bottom:507.951150px;}
.y14e{bottom:510.046800px;}
.ye3{bottom:512.142600px;}
.y8f{bottom:513.189982px;}
.y126{bottom:514.238250px;}
.yb7{bottom:516.334050px;}
.y62{bottom:520.525350px;}
.yb4{bottom:523.668900px;}
.y14d{bottom:531.003900px;}
.y1a{bottom:536.243250px;}
.y8e{bottom:540.434550px;}
.y125{bottom:541.482450px;}
.y61{bottom:542.530350px;}
.ye2{bottom:543.578100px;}
.yb3{bottom:546.721800px;}
.y19{bottom:551.961000px;}
.yb2{bottom:555.104550px;}
.y8d{bottom:556.152450px;}
.y124{bottom:562.439550px;}
.y60{bottom:569.774550px;}
.y104{bottom:575.013750px;}
.y8c{bottom:577.109550px;}
.y18{bottom:579.205200px;}
.ye1{bottom:582.348750px;}
.y5f{bottom:585.492300px;}
.yb1{bottom:588.635850px;}
.y123{bottom:589.683750px;}
.ye0{bottom:590.731650px;}
.y17{bottom:594.922950px;}
.y103{bottom:598.066500px;}
.y5e{bottom:601.210050px;}
.y122{bottom:605.401500px;}
.y14c{bottom:608.545050px;}
.y16{bottom:610.640850px;}
.yb0{bottom:615.880050px;}
.y5d{bottom:616.927950px;}
.yde{bottom:621.119400px;}
.ydd{bottom:629.502150px;}
.yaf{bottom:631.597800px;}
.y121{bottom:632.645700px;}
.ydf{bottom:636.837150px;}
.y15{bottom:637.885050px;}
.y8b{bottom:641.028600px;}
.y1c{bottom:643.195350px;}
.y5c{bottom:644.172150px;}
.yae{bottom:647.315700px;}
.y14{bottom:653.602800px;}
.y14b{bottom:654.650700px;}
.y5b{bottom:659.889900px;}
.y102{bottom:667.224900px;}
.y8a{bottom:668.272800px;}
.y13{bottom:669.320550px;}
.y120{bottom:675.607650px;}
.y14a{bottom:677.703450px;}
.y89{bottom:683.990550px;}
.y12{bottom:685.038450px;}
.ydc{bottom:698.660550px;}
.y88{bottom:699.708300px;}
.y149{bottom:700.756200px;}
.y11f{bottom:702.851850px;}
.y11{bottom:712.282650px;}
.y101{bottom:714.378300px;}
.y87{bottom:715.426200px;}
.ydb{bottom:721.713300px;}
.y148{bottom:723.808950px;}
.y11e{bottom:724.856850px;}
.y10{bottom:728.000400px;}
.y5a{bottom:729.048300px;}
.yda{bottom:730.096050px;}
.yad{bottom:732.191850px;}
.y100{bottom:735.335400px;}
.y86{bottom:742.670400px;}
.yf{bottom:743.718150px;}
.y11d{bottom:745.813950px;}
.yac{bottom:747.909600px;}
.y147{bottom:750.005250px;}
.y85{bottom:758.388150px;}
.ye{bottom:759.436050px;}
.yff{bottom:762.579600px;}
.yd9{bottom:763.627350px;}
.yab{bottom:769.914600px;}
.y84{bottom:774.105900px;}
.yd{bottom:781.440900px;}
.yfe{bottom:784.584450px;}
.y59{bottom:798.206550px;}
.y83{bottom:801.350100px;}
.y58{bottom:813.924450px;}
.y82{bottom:817.068000px;}
.y11c{bottom:822.307200px;}
.yd8{bottom:826.498650px;}
.y146{bottom:829.641507px;}
.y57{bottom:829.642200px;}
.y81{bottom:832.785750px;}
.yaa{bottom:838.024950px;}
.yd7{bottom:842.216400px;}
.y145{bottom:845.359309px;}
.yc{bottom:845.359950px;}
.y56{bottom:850.599300px;}
.yfd{bottom:852.694950px;}
.y80{bottom:854.790600px;}
.yd6{bottom:857.934150px;}
.yb{bottom:861.077850px;}
.yd5{bottom:873.652050px;}
.yfc{bottom:875.747700px;}
.y144{bottom:876.794914px;}
.y55{bottom:877.843500px;}
.y7f{bottom:882.034800px;}
.ya9{bottom:884.130600px;}
.ya{bottom:888.322050px;}
.y11b{bottom:891.465600px;}
.y143{bottom:892.513350px;}
.y54{bottom:893.561250px;}
.y7e{bottom:897.752700px;}
.yfb{bottom:898.800450px;}
.y11a{bottom:899.848350px;}
.yd4{bottom:900.896250px;}
.y9{bottom:904.039800px;}
.yfa{bottom:906.135450px;}
.ya8{bottom:907.183350px;}
.y142{bottom:908.230519px;}
.y53{bottom:909.279000px;}
.y7d{bottom:913.470450px;}
.ya7{bottom:915.566100px;}
.yd3{bottom:916.614000px;}
.y141{bottom:923.949000px;}
.y119{bottom:930.236100px;}
.y8{bottom:931.284000px;}
.yd2{bottom:932.331750px;}
.yf9{bottom:937.571100px;}
.y118{bottom:938.619000px;}
.y140{bottom:939.666124px;}
.y7c{bottom:944.906100px;}
.ya6{bottom:945.953850px;}
.y7{bottom:947.001750px;}
.y7b{bottom:952.241100px;}
.y13f{bottom:955.384650px;}
.yd1{bottom:959.575950px;}
.yf8{bottom:960.623850px;}
.y6{bottom:962.719500px;}
.ya5{bottom:969.006750px;}
.y13e{bottom:971.101729px;}
.ya4{bottom:977.389500px;}
.y5{bottom:978.437400px;}
.y7a{bottom:983.676600px;}
.y13d{bottom:986.819532px;}
.yd0{bottom:986.820150px;}
.y4{bottom:994.155150px;}
.y52{bottom:995.203050px;}
.y13c{bottom:1002.537334px;}
.ycf{bottom:1002.538050px;}
.y79{bottom:1006.729350px;}
.ya3{bottom:1007.777250px;}
.y51{bottom:1010.920800px;}
.y3{bottom:1016.160150px;}
.y13b{bottom:1018.255137px;}
.yce{bottom:1018.255800px;}
.y78{bottom:1029.782250px;}
.y2{bottom:1031.877900px;}
.y50{bottom:1032.925800px;}
.ya2{bottom:1033.973550px;}
.h5{height:35.277052px;}
.h7{height:37.280663px;}
.h1f{height:37.280795px;}
.h20{height:37.283315px;}
.h23{height:37.283345px;}
.h26{height:37.283405px;}
.h1d{height:37.483137px;}
.h4{height:37.483275px;}
.h1e{height:37.483347px;}
.hf{height:37.484745px;}
.h10{height:37.484955px;}
.h11{height:37.485165px;}
.h22{height:37.485747px;}
.h24{height:37.485777px;}
.h27{height:37.485837px;}
.h28{height:37.486047px;}
.h21{height:37.486137px;}
.h25{height:37.486197px;}
.h9{height:38.118127px;}
.ha{height:44.844855px;}
.h6{height:44.979930px;}
.hd{height:48.728258px;}
.h3{height:56.224913px;}
.hc{height:66.620063px;}
.h1c{height:66.620543px;}
.hb{height:66.620663px;}
.h13{height:66.823275px;}
.he{height:70.811663px;}
.h16{height:70.812263px;}
.h15{height:71.014275px;}
.h12{height:74.184855px;}
.h1b{height:78.376455px;}
.h18{height:100.151663px;}
.h17{height:100.152263px;}
.h14{height:100.354275px;}
.h19{height:107.715855px;}
.h1a{height:107.716455px;}
.h8{height:510.304650px;}
.h2{height:1045.500000px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:676.500000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:6.516345px;}
.x3{left:11.870205px;}
.x1a{left:14.064165px;}
.x19{left:15.717803px;}
.x2{left:17.633400px;}
.x14{left:20.826090px;}
.x9{left:22.004924px;}
.x10{left:42.258000px;}
.x18{left:46.449450px;}
.x15{left:48.856200px;}
.x1{left:108.000000px;}
.xd{left:117.163050px;}
.x4{left:189.481350px;}
.xf{left:222.456000px;}
.xb{left:279.171150px;}
.x1b{left:303.681000px;}
.x13{left:382.695750px;}
.x16{left:445.026600px;}
.xc{left:448.104750px;}
.x12{left:466.884150px;}
.x17{left:488.381550px;}
.xa{left:492.703950px;}
.x5{left:531.785700px;}
.xe{left:546.455550px;}
.x7{left:565.726200px;}
.x8{left:594.967950px;}
.x11{left:615.810450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.080000pt;}
.v2{vertical-align:29.805333pt;}
.ls28{letter-spacing:-0.012295pt;}
.ls18{letter-spacing:-0.004098pt;}
.ls6{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000004pt;}
.lse{letter-spacing:0.000075pt;}
.ls26{letter-spacing:0.002006pt;}
.ls13{letter-spacing:0.002083pt;}
.ls8{letter-spacing:0.003353pt;}
.lsa{letter-spacing:0.003465pt;}
.ls7{letter-spacing:0.003484pt;}
.lsb{letter-spacing:0.003502pt;}
.lsc{letter-spacing:0.003726pt;}
.ls0{letter-spacing:0.004098pt;}
.ls3{letter-spacing:0.004843pt;}
.ls2{letter-spacing:0.004918pt;}
.ls10{letter-spacing:0.005328pt;}
.ls4{letter-spacing:0.006147pt;}
.ls1f{letter-spacing:0.008197pt;}
.ls9{letter-spacing:0.013971pt;}
.lsf{letter-spacing:0.016319pt;}
.ls1d{letter-spacing:0.016330pt;}
.ls1{letter-spacing:0.016393pt;}
.lsd{letter-spacing:0.020491pt;}
.ls12{letter-spacing:0.225778pt;}
.ls2a{letter-spacing:2.770432pt;}
.ls25{letter-spacing:2.772672pt;}
.ls17{letter-spacing:2.987640pt;}
.ls5{letter-spacing:5.266279pt;}
.ls23{letter-spacing:6.704772pt;}
.ls16{letter-spacing:9.864539pt;}
.ls21{letter-spacing:10.151418pt;}
.ls15{letter-spacing:12.085803pt;}
.ls22{letter-spacing:15.110327pt;}
.ls1e{letter-spacing:16.482272pt;}
.ls24{letter-spacing:19.836752pt;}
.ls29{letter-spacing:20.507750pt;}
.ls27{letter-spacing:31.913240pt;}
.ls1b{letter-spacing:127.593677pt;}
.ls1c{letter-spacing:152.290825pt;}
.ls11{letter-spacing:153.279451pt;}
.ls1a{letter-spacing:226.288939pt;}
.ls20{letter-spacing:259.587766pt;}
.ls19{letter-spacing:436.994169pt;}
.ws0{word-spacing:-24.675693pt;}
.ws9{word-spacing:-24.671594pt;}
.ws4{word-spacing:-20.974339pt;}
.ws8{word-spacing:-0.040983pt;}
.ws3{word-spacing:-0.038319pt;}
.ws2{word-spacing:-0.034835pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:53.583423pt;}
.wsc{word-spacing:53.590557pt;}
.wsd{word-spacing:53.599712pt;}
.ws11{word-spacing:78.214568pt;}
.ws17{word-spacing:78.259116pt;}
.wsf{word-spacing:102.890261pt;}
.ws12{word-spacing:127.565953pt;}
.ws16{word-spacing:127.626789pt;}
.ws1c{word-spacing:137.659238pt;}
.ws13{word-spacing:152.293327pt;}
.ws1b{word-spacing:160.880897pt;}
.ws10{word-spacing:176.969020pt;}
.wse{word-spacing:201.637578pt;}
.ws18{word-spacing:201.644712pt;}
.ws1a{word-spacing:220.887767pt;}
.ws14{word-spacing:226.320405pt;}
.ws1f{word-spacing:237.853619pt;}
.ws15{word-spacing:250.996097pt;}
.ws22{word-spacing:253.287953pt;}
.ws6{word-spacing:266.291116pt;}
.wsb{word-spacing:298.089757pt;}
.ws23{word-spacing:315.423382pt;}
.wsa{word-spacing:347.441142pt;}
.ws24{word-spacing:351.990723pt;}
.ws1d{word-spacing:359.740471pt;}
.ws7{word-spacing:386.875072pt;}
.ws5{word-spacing:508.127831pt;}
.ws21{word-spacing:577.074940pt;}
.ws20{word-spacing:626.426325pt;}
.ws1e{word-spacing:1071.733902pt;}
._2a{margin-left:-153.275353pt;}
._82{margin-left:-31.986729pt;}
._83{margin-left:-20.503432pt;}
._62{margin-left:-15.134697pt;}
._34{margin-left:-12.154252pt;}
._35{margin-left:-11.253334pt;}
._37{margin-left:-10.183133pt;}
._38{margin-left:-9.264236pt;}
._80{margin-left:-6.739571pt;}
._0{margin-left:-5.265752pt;}
._3a{margin-left:-3.643741pt;}
._39{margin-left:-2.665737pt;}
._3{width:1.229481pt;}
._26{width:2.622894pt;}
._9{width:3.688444pt;}
._1{width:5.228356pt;}
._8{width:6.328770pt;}
._5{width:7.499837pt;}
._7{width:8.975215pt;}
._a{width:10.128835pt;}
._b{width:11.171968pt;}
._2b{width:12.089502pt;}
._4{width:13.032503pt;}
._33{width:13.934123pt;}
._23{width:14.958691pt;}
._4b{width:16.597999pt;}
._6{width:17.745515pt;}
._2{width:18.729101pt;}
._55{width:20.491357pt;}
._4c{width:23.073268pt;}
._d{width:26.187955pt;}
._21{width:27.294488pt;}
._8d{width:29.466572pt;}
._36{width:30.428099pt;}
._81{width:31.925535pt;}
._41{width:33.728774pt;}
._7b{width:35.611427pt;}
._56{width:38.441786pt;}
._8b{width:43.031850pt;}
._29{width:51.966082pt;}
._22{width:54.588976pt;}
._66{width:62.129795pt;}
._8c{width:67.703445pt;}
._17{width:76.596694pt;}
._4f{width:78.275404pt;}
._1c{width:101.268288pt;}
._50{width:102.913886pt;}
._5d{width:110.028961pt;}
._52{width:127.618008pt;}
._5a{width:137.659238pt;}
._2f{width:138.669035pt;}
._5c{width:140.475567pt;}
._54{width:152.293701pt;}
._7d{width:156.881832pt;}
._30{width:157.917532pt;}
._61{width:162.334931pt;}
._59{width:165.151260pt;}
._4d{width:176.962419pt;}
._5e{width:184.056038pt;}
._60{width:189.826952pt;}
._58{width:191.783957pt;}
._53{width:201.645086pt;}
._68{width:208.084664pt;}
._1a{width:216.939731pt;}
._48{width:224.062680pt;}
._71{width:233.659606pt;}
._3d{width:239.584531pt;}
._51{width:250.996471pt;}
._3c{width:258.956182pt;}
._77{width:261.339396pt;}
._75{width:262.597200pt;}
._47{width:264.871285pt;}
._5f{width:265.811034pt;}
._1b{width:267.591298pt;}
._6e{width:270.611204pt;}
._79{width:273.165617pt;}
._4e{width:275.672163pt;}
._8a{width:277.963646pt;}
._28{width:282.714090pt;}
._27{width:288.172302pt;}
._19{width:297.625688pt;}
._31{width:300.594754pt;}
._18{width:303.002620pt;}
._25{width:307.389782pt;}
._49{width:308.307567pt;}
._57{width:310.389086pt;}
._24{width:312.847994pt;}
._5b{width:315.162419pt;}
._42{width:322.765450pt;}
._11{width:327.678312pt;}
._2c{width:330.647379pt;}
._10{width:335.397983pt;}
._74{width:336.556389pt;}
._15{width:340.318193pt;}
._16{width:341.618376pt;}
._44{width:347.441142pt;}
._86{width:354.993707pt;}
._45{width:357.658952pt;}
._f{width:360.073676pt;}
._13{width:366.294068pt;}
._6c{width:369.313974pt;}
._3e{width:372.116835pt;}
._14{width:377.029697pt;}
._2e{width:379.998764pt;}
._20{width:381.416860pt;}
._4a{width:382.334645pt;}
._e{width:384.749368pt;}
._1f{width:386.875072pt;}
._12{width:389.669578pt;}
._6f{width:393.989667pt;}
._43{width:407.010337pt;}
._c{width:409.425061pt;}
._46{width:412.314378pt;}
._1d{width:430.768245pt;}
._3f{width:431.686030pt;}
._40{width:436.990071pt;}
._73{width:438.608770pt;}
._7f{width:445.895464pt;}
._85{width:453.696477pt;}
._67{width:454.841589pt;}
._6b{width:455.740838pt;}
._89{width:488.153230pt;}
._3b{width:495.495297pt;}
._6a{width:517.368129pt;}
._64{width:528.868667pt;}
._88{width:552.399247pt;}
._6d{width:554.443608pt;}
._70{width:566.719514pt;}
._7c{width:569.273927pt;}
._87{width:577.074940pt;}
._7a{width:582.123398pt;}
._7e{width:606.799091pt;}
._1e{width:608.757208pt;}
._84{width:626.426325pt;}
._69{width:665.422284pt;}
._63{width:701.598514pt;}
._65{width:800.301284pt;}
._76{width:804.204631pt;}
._78{width:828.880323pt;}
._72{width:981.474005pt;}
._32{width:1026.993965pt;}
._2d{width:1224.399505pt;}
.fs3{font-size:34.835307pt;}
.fs1{font-size:40.982715pt;}
.fs2{font-size:49.179258pt;}
.fs4{font-size:53.277529pt;}
.fs0{font-size:61.474072pt;}
.y4f{bottom:-12.337680pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:3.496547pt;}
.yf7{bottom:9.085107pt;}
.y13a{bottom:11.879357pt;}
.y117{bottom:12.810800pt;}
.y39{bottom:13.971333pt;}
.ycd{bottom:15.605080pt;}
.ya0{bottom:17.467933pt;}
.y116{bottom:20.262213pt;}
.y139{bottom:25.850760pt;}
.y38{bottom:27.942800pt;}
.ycc{bottom:29.576467pt;}
.yf6{bottom:33.302160pt;}
.y138{bottom:39.822117pt;}
.y9f{bottom:41.684933pt;}
.ycb{bottom:43.547867pt;}
.yf5{bottom:47.273600pt;}
.y4e{bottom:50.067867pt;}
.y137{bottom:53.793497pt;}
.y37{bottom:55.885467pt;}
.y4d{bottom:57.519200pt;}
.yf4{bottom:61.244933pt;}
.y115{bottom:67.764933pt;}
.y77{bottom:68.696267pt;}
.y36{bottom:69.856933pt;}
.yca{bottom:71.490667pt;}
.y136{bottom:73.353467pt;}
.yf3{bottom:75.216267pt;}
.y76{bottom:82.667733pt;}
.y35{bottom:83.828267pt;}
.y4c{bottom:84.530533pt;}
.yc9{bottom:85.462000pt;}
.y114{bottom:88.256267pt;}
.y9e{bottom:90.119067pt;}
.yf2{bottom:94.776267pt;}
.y1{bottom:96.000000pt;}
.y34{bottom:97.799600pt;}
.y4a{bottom:98.502000pt;}
.yc8{bottom:99.433333pt;}
.y75{bottom:102.227600pt;}
.y15d{bottom:105.953333pt;}
.y9d{bottom:108.747600pt;}
.y113{bottom:111.541867pt;}
.y33{bottom:111.771067pt;}
.y4b{bottom:112.473333pt;}
.yf1{bottom:118.993333pt;}
.y15c{bottom:119.924667pt;}
.y74{bottom:120.856133pt;}
.y32{bottom:125.742400pt;}
.yc7{bottom:127.376133pt;}
.y9c{bottom:128.307600pt;}
.y135{bottom:130.170400pt;}
.y49{bottom:132.964667pt;}
.y112{bottom:135.758933pt;}
.y31{bottom:139.713733pt;}
.y48{bottom:140.416133pt;}
.yc6{bottom:141.347467pt;}
.y111{bottom:149.730267pt;}
.yf0{bottom:151.593200pt;}
.y30{bottom:153.685200pt;}
.yc5{bottom:161.838800pt;}
.y110{bottom:163.701733pt;}
.y47{bottom:167.427467pt;}
.y2f{bottom:167.656533pt;}
.yc4{bottom:175.810267pt;}
.y73{bottom:177.673067pt;}
.y15b{bottom:179.536000pt;}
.y2e{bottom:181.628000pt;}
.y9b{bottom:185.124533pt;}
.y134{bottom:186.055867pt;}
.y10f{bottom:187.918800pt;}
.y72{bottom:191.644533pt;}
.y15a{bottom:193.507333pt;}
.y2d{bottom:195.599333pt;}
.yc2{bottom:196.301600pt;}
.y46{bottom:199.095867pt;}
.y133{bottom:200.027333pt;}
.yc1{bottom:203.752933pt;}
.y159{bottom:207.478667pt;}
.yef{bottom:208.410133pt;}
.y9a{bottom:209.341600pt;}
.y2c{bottom:209.570667pt;}
.yc3{bottom:210.272933pt;}
.y10e{bottom:211.204400pt;}
.y132{bottom:213.998667pt;}
.y155{bottom:214.930133pt;}
.y45{bottom:219.587200pt;}
.y158{bottom:221.450133pt;}
.y99{bottom:223.312933pt;}
.y2b{bottom:223.542133pt;}
.y131{bottom:227.970000pt;}
.ybf{bottom:230.764400pt;}
.yee{bottom:232.627200pt;}
.y71{bottom:233.558667pt;}
.y157{bottom:235.421467pt;}
.y2a{bottom:237.513467pt;}
.ybe{bottom:238.215733pt;}
.y44{bottom:240.078533pt;}
.yc0{bottom:244.735733pt;}
.yed{bottom:246.598533pt;}
.y6e{bottom:247.530000pt;}
.y156{bottom:249.392800pt;}
.y29{bottom:251.484800pt;}
.y43{bottom:260.570000pt;}
.y70{bottom:261.501333pt;}
.ybd{bottom:265.227067pt;}
.y28{bottom:265.456267pt;}
.yec{bottom:266.158533pt;}
.y42{bottom:268.021333pt;}
.y154{bottom:269.884133pt;}
.y130{bottom:270.815600pt;}
.ybc{bottom:272.678533pt;}
.y6f{bottom:275.472800pt;}
.y153{bottom:277.335600pt;}
.y27{bottom:279.427600pt;}
.y10d{bottom:281.992667pt;}
.y12f{bottom:284.787067pt;}
.yeb{bottom:290.375600pt;}
.y26{bottom:293.398933pt;}
.y41{bottom:295.032667pt;}
.y6d{bottom:295.964133pt;}
.y98{bottom:299.689867pt;}
.yea{bottom:304.346933pt;}
.y10c{bottom:306.209733pt;}
.y25{bottom:307.370400pt;}
.y12e{bottom:309.004000pt;}
.y6c{bottom:309.935467pt;}
.y97{bottom:313.661200pt;}
.y69{bottom:317.386933pt;}
.y40{bottom:318.318267pt;}
.y10b{bottom:320.181200pt;}
.y24{bottom:321.341733pt;}
.y12d{bottom:322.975467pt;}
.y6b{bottom:323.906933pt;}
.y152{bottom:324.838267pt;}
.y96{bottom:327.632533pt;}
.ye9{bottom:332.289733pt;}
.ybb{bottom:334.152533pt;}
.y23{bottom:335.313067pt;}
.y6a{bottom:337.878267pt;}
.y10a{bottom:338.809733pt;}
.y151{bottom:345.329600pt;}
.y12c{bottom:347.192533pt;}
.yba{bottom:348.123867pt;}
.y22{bottom:349.284533pt;}
.y95{bottom:351.849600pt;}
.ye8{bottom:356.506800pt;}
.y68{bottom:358.369600pt;}
.y12b{bottom:361.163867pt;}
.y109{bottom:363.026667pt;}
.y21{bottom:363.255867pt;}
.y94{bottom:365.821067pt;}
.yb9{bottom:368.615333pt;}
.ye7{bottom:370.478133pt;}
.y67{bottom:372.340933pt;}
.y3f{bottom:375.135200pt;}
.y108{bottom:376.998133pt;}
.y20{bottom:377.227200pt;}
.y12a{bottom:380.723867pt;}
.yb8{bottom:382.586667pt;}
.y64{bottom:386.312400pt;}
.y3e{bottom:389.106667pt;}
.y93{bottom:390.038000pt;}
.y1f{bottom:391.198667pt;}
.y107{bottom:396.558000pt;}
.y66{bottom:400.283733pt;}
.y3d{bottom:403.078000pt;}
.y92{bottom:404.009467pt;}
.y129{bottom:404.940933pt;}
.ye6{bottom:413.323733pt;}
.y65{bottom:414.255067pt;}
.y3c{bottom:417.049467pt;}
.y128{bottom:418.912267pt;}
.y1e{bottom:419.141333pt;}
.y1b{bottom:419.843733pt;}
.y106{bottom:420.775067pt;}
.y150{bottom:425.432267pt;}
.ye5{bottom:427.295067pt;}
.y91{bottom:428.226113pt;}
.y3b{bottom:431.020800pt;}
.y1d{bottom:433.112800pt;}
.y63{bottom:434.746533pt;}
.yb6{bottom:437.540800pt;}
.y14f{bottom:439.403600pt;}
.ye4{bottom:441.266400pt;}
.y90{bottom:442.197493pt;}
.y127{bottom:443.129333pt;}
.y3a{bottom:444.992133pt;}
.y105{bottom:448.717867pt;}
.yb5{bottom:451.512133pt;}
.y14e{bottom:453.374933pt;}
.ye3{bottom:455.237867pt;}
.y8f{bottom:456.168873pt;}
.y126{bottom:457.100667pt;}
.yb7{bottom:458.963600pt;}
.y62{bottom:462.689200pt;}
.yb4{bottom:465.483467pt;}
.y14d{bottom:472.003467pt;}
.y1a{bottom:476.660667pt;}
.y8e{bottom:480.386267pt;}
.y125{bottom:481.317733pt;}
.y61{bottom:482.249200pt;}
.ye2{bottom:483.180533pt;}
.yb3{bottom:485.974933pt;}
.y19{bottom:490.632000pt;}
.yb2{bottom:493.426267pt;}
.y8d{bottom:494.357733pt;}
.y124{bottom:499.946267pt;}
.y60{bottom:506.466267pt;}
.y104{bottom:511.123333pt;}
.y8c{bottom:512.986267pt;}
.y18{bottom:514.849067pt;}
.ye1{bottom:517.643333pt;}
.y5f{bottom:520.437600pt;}
.yb1{bottom:523.231867pt;}
.y123{bottom:524.163333pt;}
.ye0{bottom:525.094800pt;}
.y17{bottom:528.820400pt;}
.y103{bottom:531.614667pt;}
.y5e{bottom:534.408933pt;}
.y122{bottom:538.134667pt;}
.y14c{bottom:540.928933pt;}
.y16{bottom:542.791867pt;}
.yb0{bottom:547.448933pt;}
.y5d{bottom:548.380400pt;}
.yde{bottom:552.106133pt;}
.ydd{bottom:559.557467pt;}
.yaf{bottom:561.420267pt;}
.y121{bottom:562.351733pt;}
.ydf{bottom:566.077467pt;}
.y15{bottom:567.008933pt;}
.y8b{bottom:569.803200pt;}
.y1c{bottom:571.729200pt;}
.y5c{bottom:572.597467pt;}
.yae{bottom:575.391733pt;}
.y14{bottom:580.980267pt;}
.y14b{bottom:581.911733pt;}
.y5b{bottom:586.568800pt;}
.y102{bottom:593.088800pt;}
.y8a{bottom:594.020267pt;}
.y13{bottom:594.951600pt;}
.y120{bottom:600.540133pt;}
.y14a{bottom:602.403067pt;}
.y89{bottom:607.991600pt;}
.y12{bottom:608.923067pt;}
.ydc{bottom:621.031600pt;}
.y88{bottom:621.962933pt;}
.y149{bottom:622.894400pt;}
.y11f{bottom:624.757200pt;}
.y11{bottom:633.140133pt;}
.y101{bottom:635.002933pt;}
.y87{bottom:635.934400pt;}
.ydb{bottom:641.522933pt;}
.y148{bottom:643.385733pt;}
.y11e{bottom:644.317200pt;}
.y10{bottom:647.111467pt;}
.y5a{bottom:648.042933pt;}
.yda{bottom:648.974267pt;}
.yad{bottom:650.837200pt;}
.y100{bottom:653.631467pt;}
.y86{bottom:660.151467pt;}
.yf{bottom:661.082800pt;}
.y11d{bottom:662.945733pt;}
.yac{bottom:664.808533pt;}
.y147{bottom:666.671333pt;}
.y85{bottom:674.122800pt;}
.ye{bottom:675.054267pt;}
.yff{bottom:677.848533pt;}
.yd9{bottom:678.779867pt;}
.yab{bottom:684.368533pt;}
.y84{bottom:688.094133pt;}
.yd{bottom:694.614133pt;}
.yfe{bottom:697.408400pt;}
.y59{bottom:709.516933pt;}
.y83{bottom:712.311200pt;}
.y58{bottom:723.488400pt;}
.y82{bottom:726.282667pt;}
.y11c{bottom:730.939733pt;}
.yd8{bottom:734.665467pt;}
.y146{bottom:737.459117pt;}
.y57{bottom:737.459733pt;}
.y81{bottom:740.254000pt;}
.yaa{bottom:744.911067pt;}
.yd7{bottom:748.636800pt;}
.y145{bottom:751.430497pt;}
.yc{bottom:751.431067pt;}
.y56{bottom:756.088267pt;}
.yfd{bottom:757.951067pt;}
.y80{bottom:759.813867pt;}
.yd6{bottom:762.608133pt;}
.yb{bottom:765.402533pt;}
.yd5{bottom:776.579600pt;}
.yfc{bottom:778.442400pt;}
.y144{bottom:779.373257pt;}
.y55{bottom:780.305333pt;}
.y7f{bottom:784.030933pt;}
.ya9{bottom:785.893867pt;}
.ya{bottom:789.619600pt;}
.y11b{bottom:792.413867pt;}
.y143{bottom:793.345200pt;}
.y54{bottom:794.276667pt;}
.y7e{bottom:798.002400pt;}
.yfb{bottom:798.933733pt;}
.y11a{bottom:799.865200pt;}
.yd4{bottom:800.796667pt;}
.y9{bottom:803.590933pt;}
.yfa{bottom:805.453733pt;}
.ya8{bottom:806.385200pt;}
.y142{bottom:807.316017pt;}
.y53{bottom:808.248000pt;}
.y7d{bottom:811.973733pt;}
.ya7{bottom:813.836533pt;}
.yd3{bottom:814.768000pt;}
.y141{bottom:821.288000pt;}
.y119{bottom:826.876533pt;}
.y8{bottom:827.808000pt;}
.yd2{bottom:828.739333pt;}
.yf9{bottom:833.396533pt;}
.y118{bottom:834.328000pt;}
.y140{bottom:835.258777pt;}
.y7c{bottom:839.916533pt;}
.ya6{bottom:840.847867pt;}
.y7{bottom:841.779333pt;}
.y7b{bottom:846.436533pt;}
.y13f{bottom:849.230800pt;}
.yd1{bottom:852.956400pt;}
.yf8{bottom:853.887867pt;}
.y6{bottom:855.750667pt;}
.ya5{bottom:861.339333pt;}
.y13e{bottom:863.201537pt;}
.ya4{bottom:868.790667pt;}
.y5{bottom:869.722133pt;}
.y7a{bottom:874.379200pt;}
.y13d{bottom:877.172917pt;}
.yd0{bottom:877.173467pt;}
.y4{bottom:883.693467pt;}
.y52{bottom:884.624933pt;}
.y13c{bottom:891.144297pt;}
.ycf{bottom:891.144933pt;}
.y79{bottom:894.870533pt;}
.ya3{bottom:895.802000pt;}
.y51{bottom:898.596267pt;}
.y3{bottom:903.253467pt;}
.y13b{bottom:905.115677pt;}
.yce{bottom:905.116267pt;}
.y78{bottom:915.362000pt;}
.y2{bottom:917.224800pt;}
.y50{bottom:918.156267pt;}
.ya2{bottom:919.087600pt;}
.h5{height:31.357380pt;}
.h7{height:33.138367pt;}
.h1f{height:33.138484pt;}
.h20{height:33.140724pt;}
.h23{height:33.140751pt;}
.h26{height:33.140804pt;}
.h1d{height:33.318344pt;}
.h4{height:33.318467pt;}
.h1e{height:33.318531pt;}
.hf{height:33.319773pt;}
.h10{height:33.319960pt;}
.h11{height:33.320147pt;}
.h22{height:33.320664pt;}
.h24{height:33.320691pt;}
.h27{height:33.320744pt;}
.h28{height:33.320931pt;}
.h21{height:33.321011pt;}
.h25{height:33.321064pt;}
.h9{height:33.882780pt;}
.ha{height:39.862094pt;}
.h6{height:39.982160pt;}
.hd{height:43.314007pt;}
.h3{height:49.977700pt;}
.hc{height:59.217834pt;}
.h1c{height:59.218260pt;}
.hb{height:59.218367pt;}
.h13{height:59.398467pt;}
.he{height:62.943700pt;}
.h16{height:62.944234pt;}
.h15{height:63.123800pt;}
.h12{height:65.942094pt;}
.h1b{height:69.667960pt;}
.h18{height:89.023700pt;}
.h17{height:89.024234pt;}
.h14{height:89.203800pt;}
.h19{height:95.747427pt;}
.h1a{height:95.747960pt;}
.h8{height:453.604133pt;}
.h2{height:929.333333pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:601.333333pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:5.792307pt;}
.x3{left:10.551293pt;}
.x1a{left:12.501480pt;}
.x19{left:13.971380pt;}
.x2{left:15.674133pt;}
.x14{left:18.512080pt;}
.x9{left:19.559932pt;}
.x10{left:37.562667pt;}
.x18{left:41.288400pt;}
.x15{left:43.427733pt;}
.x1{left:96.000000pt;}
.xd{left:104.144933pt;}
.x4{left:168.427867pt;}
.xf{left:197.738667pt;}
.xb{left:248.152133pt;}
.x1b{left:269.938667pt;}
.x13{left:340.174000pt;}
.x16{left:395.579200pt;}
.xc{left:398.315333pt;}
.x12{left:415.008133pt;}
.x17{left:434.116933pt;}
.xa{left:437.959067pt;}
.x5{left:472.698400pt;}
.xe{left:485.738267pt;}
.x7{left:502.867733pt;}
.x8{left:528.860400pt;}
.x11{left:547.387067pt;}
}




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