
    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_eb386d3bf2baf22038f902c9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_19ec62915aae1b243a82a927.woff')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_0cbb33e67ed68fdd1d281429.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_3e43f3b208d2da39a373d910.woff')format("woff");}.ff4{font-family:ff4;line-height:0.234000;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_b67d0efa4fe164a4454fc6fd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_a31051fab663e6edd495256a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_33c96c880e956af3ef43dd05.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_4776e4d5b3824aa64cd89196.woff')format("woff");}.ff8{font-family:ff8;line-height:0.823000;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_d7c0cecc1baf0b5b28d63d5a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.188000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0238f523e70f5551f0cec8d8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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);}
.m5{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.v2{vertical-align:9.866068px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:11.702327px;}
.lsd{letter-spacing:16.182288px;}
.ls1{letter-spacing:16.522288px;}
.lsc{letter-spacing:17.886593px;}
.ls0{letter-spacing:19.038201px;}
.ls9{letter-spacing:19.931063px;}
.lsb{letter-spacing:19.934889px;}
.ls8{letter-spacing:20.026702px;}
.lsa{letter-spacing:20.030527px;}
.ls5{letter-spacing:24.780635px;}
.ls6{letter-spacing:24.785417px;}
.ls7{letter-spacing:25.120161px;}
.ls3{letter-spacing:25.765739px;}
.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;}
}
.ws2{word-spacing:-24.230394px;}
.ws3{word-spacing:-14.011436px;}
.ws1{word-spacing:-13.341780px;}
.ws6{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws8{word-spacing:-11.208832px;}
.ws7{word-spacing:-10.759500px;}
.ws5{word-spacing:-10.061328px;}
.ws9{word-spacing:-9.563850px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-17.343592px;}
._15{margin-left:-5.168234px;}
._e{margin-left:-4.089852px;}
._4{margin-left:-2.724583px;}
._7{margin-left:-1.553672px;}
._2{width:1.069417px;}
._1{width:2.490466px;}
._3{width:4.045991px;}
._6{width:5.792915px;}
._8{width:7.023802px;}
._a{width:8.938993px;}
._9{width:10.238740px;}
._c{width:11.486508px;}
._14{width:12.648549px;}
._d{width:15.131656px;}
._0{width:16.182288px;}
._12{width:17.215416px;}
._16{width:18.358328px;}
._11{width:20.318240px;}
._13{width:21.392354px;}
._10{width:23.456004px;}
._f{width:24.579788px;}
._b{width:30.193927px;}
._39{width:31.418134px;}
._17{width:36.597105px;}
._18{width:37.630030px;}
._2c{width:50.359874px;}
._1d{width:131.694215px;}
._1b{width:153.232005px;}
._1a{width:158.813468px;}
._22{width:160.228917px;}
._19{width:166.150853px;}
._28{width:174.991676px;}
._2b{width:185.817954px;}
._23{width:187.466762px;}
._29{width:192.554730px;}
._27{width:193.664137px;}
._20{width:196.529466px;}
._1f{width:209.004552px;}
._1e{width:213.403923px;}
._1c{width:217.420740px;}
._2a{width:219.830831px;}
._21{width:247.565996px;}
._26{width:254.222435px;}
._25{width:276.640100px;}
._24{width:294.849670px;}
._31{width:488.150381px;}
._36{width:517.744758px;}
._32{width:525.292548px;}
._2d{width:540.495244px;}
._38{width:594.496567px;}
._2e{width:609.898191px;}
._35{width:656.692196px;}
._37{width:683.145805px;}
._33{width:685.479385px;}
._34{width:739.878564px;}
._2f{width:763.570133px;}
._30{width:784.488186px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs6{font-size:26.761800px;}
.fsc{font-size:30.108600px;}
.fs7{font-size:38.255400px;}
.fsb{font-size:38.256000px;}
.fs8{font-size:41.842200px;}
.fs5{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs4{font-size:44.327400px;}
.fs9{font-size:47.820600px;}
.fs1{font-size:57.384000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsa{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y40{bottom:47.430000px;}
.y140{bottom:78.411853px;}
.y7d{bottom:78.416181px;}
.y96{bottom:78.491250px;}
.ye4{bottom:78.491386px;}
.y101{bottom:86.829776px;}
.y4{bottom:91.320000px;}
.ye3{bottom:92.777850px;}
.y13f{bottom:94.143635px;}
.y7c{bottom:94.147962px;}
.y1fe{bottom:96.695622px;}
.y1a9{bottom:96.700404px;}
.ye2{bottom:97.540050px;}
.y100{bottom:102.476676px;}
.y3{bottom:105.630000px;}
.y1fd{bottom:108.600703px;}
.y1a8{bottom:108.605485px;}
.y14e{bottom:108.766852px;}
.y7b{bottom:109.794863px;}
.ye1{bottom:114.040303px;}
.y122{bottom:117.528077px;}
.yff{bottom:118.208458px;}
.y3e{bottom:119.905636px;}
.y1fc{bottom:120.590902px;}
.y1a7{bottom:120.595683px;}
.y14d{bottom:120.758007px;}
.y13e{bottom:125.523512px;}
.y7a{bottom:125.526645px;}
.ye0{bottom:126.880728px;}
.y1fb{bottom:132.582057px;}
.y1a6{bottom:132.586839px;}
.y14c{bottom:132.748206px;}
.y121{bottom:133.261054px;}
.yfe{bottom:133.856554px;}
.y3d{bottom:134.192100px;}
.ydf{bottom:139.722109px;}
.y79{bottom:141.174740px;}
.y1fa{bottom:144.487137px;}
.y1a5{bottom:144.491919px;}
.y14b{bottom:144.653286px;}
.y120{bottom:148.907954px;}
.yfd{bottom:149.588336px;}
.yde{bottom:152.562534px;}
.y1f9{bottom:156.477336px;}
.y1a4{bottom:156.482118px;}
.y14a{bottom:156.643485px;}
.y78{bottom:156.906522px;}
.y93{bottom:157.841415px;}
.y39{bottom:159.703536px;}
.y11f{bottom:164.639736px;}
.yfc{bottom:165.235236px;}
.ydd{bottom:165.402959px;}
.y13d{bottom:166.851270px;}
.y1f8{bottom:168.383373px;}
.y1a3{bottom:168.388155px;}
.y149{bottom:168.549522px;}
.y77{bottom:172.553423px;}
.y92{bottom:173.574392px;}
.y38{bottom:174.075000px;}
.ydc{bottom:178.244341px;}
.y11e{bottom:180.286637px;}
.y1f7{bottom:180.373571px;}
.y1a2{bottom:180.378353px;}
.y148{bottom:180.539721px;}
.yfb{bottom:180.967018px;}
.y13c{bottom:182.499366px;}
.y91{bottom:189.221293px;}
.ydb{bottom:191.169884px;}
.y1f6{bottom:192.278652px;}
.y1a1{bottom:192.283434px;}
.y147{bottom:192.444801px;}
.y11d{bottom:196.019614px;}
.yfa{bottom:196.615114px;}
.y13b{bottom:198.231148px;}
.y76{bottom:203.933300px;}
.yda{bottom:204.010309px;}
.y1f5{bottom:204.268851px;}
.y1a0{bottom:204.273633px;}
.y146{bottom:204.435000px;}
.y90{bottom:204.953075px;}
.y11c{bottom:211.666514px;}
.yf9{bottom:212.346896px;}
.y13a{bottom:213.878048px;}
.y1f4{bottom:216.260006px;}
.y19f{bottom:216.264788px;}
.yd9{bottom:216.851690px;}
.y8f{bottom:220.599975px;}
.y36{bottom:224.080198px;}
.y11b{bottom:227.398296px;}
.yf8{bottom:227.993796px;}
.y1f3{bottom:228.165086px;}
.y19e{bottom:228.169868px;}
.y139{bottom:229.609830px;}
.y145{bottom:231.991296px;}
.y75{bottom:236.077112px;}
.y8e{bottom:236.332952px;}
.yd8{bottom:236.580000px;}
.y35{bottom:239.727098px;}
.y1f2{bottom:240.155285px;}
.y19d{bottom:240.160067px;}
.y11a{bottom:243.045197px;}
.yf7{bottom:243.725578px;}
.y138{bottom:245.342808px;}
.y74{bottom:251.810090px;}
.y8d{bottom:251.979853px;}
.y1f1{bottom:252.060366px;}
.y19c{bottom:252.065147px;}
.y34{bottom:255.460076px;}
.yd6{bottom:256.224000px;}
.y119{bottom:258.776978px;}
.yf6{bottom:259.372478px;}
.yd7{bottom:260.475000px;}
.y137{bottom:260.989708px;}
.y144{bottom:263.369978px;}
.y1f0{bottom:264.051521px;}
.y19b{bottom:264.056303px;}
.y73{bottom:267.456990px;}
.y8c{bottom:267.711635px;}
.y33{bottom:271.106976px;}
.y118{bottom:274.425074px;}
.yf5{bottom:275.105456px;}
.yd5{bottom:275.953572px;}
.y1ef{bottom:276.041719px;}
.y19a{bottom:276.046501px;}
.y136{bottom:276.721490px;}
.y143{bottom:279.018074px;}
.y72{bottom:283.188772px;}
.y8b{bottom:283.358535px;}
.y32{bottom:286.838758px;}
.y1ee{bottom:287.946800px;}
.y199{bottom:287.951582px;}
.y117{bottom:290.156856px;}
.yd4{bottom:290.325036px;}
.yf4{bottom:290.752356px;}
.y135{bottom:292.368390px;}
.y71{bottom:298.835672px;}
.y8a{bottom:299.091512px;}
.y1ed{bottom:299.936999px;}
.y198{bottom:299.941781px;}
.y31{bottom:302.485658px;}
.yd3{bottom:304.696500px;}
.y116{bottom:305.803756px;}
.yf3{bottom:306.484138px;}
.y142{bottom:310.396756px;}
.y1ec{bottom:311.843036px;}
.y197{bottom:311.847817px;}
.y70{bottom:314.567454px;}
.y89{bottom:314.738413px;}
.y30{bottom:318.218636px;}
.y115{bottom:321.535538px;}
.yf2{bottom:322.131038px;}
.y134{bottom:323.748268px;}
.y1eb{bottom:323.833234px;}
.y196{bottom:323.838016px;}
.y6f{bottom:330.215550px;}
.y88{bottom:330.470195px;}
.y2f{bottom:333.865536px;}
.y1ea{bottom:335.738315px;}
.y195{bottom:335.743097px;}
.y114{bottom:337.183634px;}
.yf1{bottom:337.864016px;}
.yd2{bottom:338.719248px;}
.y141{bottom:341.776634px;}
.y6e{bottom:345.947332px;}
.y87{bottom:346.117095px;}
.y1e9{bottom:347.729470px;}
.y194{bottom:347.734252px;}
.y2e{bottom:349.597318px;}
.y113{bottom:352.915416px;}
.yf0{bottom:353.510916px;}
.yd1{bottom:354.451030px;}
.y133{bottom:357.508416px;}
.y1e8{bottom:359.719669px;}
.y193{bottom:359.724451px;}
.y6d{bottom:361.679114px;}
.y86{bottom:361.848877px;}
.y37{bottom:365.244218px;}
.y112{bottom:368.562316px;}
.yef{bottom:369.242698px;}
.yd0{bottom:370.097930px;}
.y1e7{bottom:371.624749px;}
.y192{bottom:371.629531px;}
.y132{bottom:373.155316px;}
.y6c{bottom:377.326014px;}
.y85{bottom:377.496973px;}
.yb3{bottom:379.790880px;}
.y2d{bottom:380.976000px;}
.y1e6{bottom:383.614948px;}
.y191{bottom:383.619730px;}
.y111{bottom:384.294098px;}
.yee{bottom:384.889598px;}
.ycf{bottom:385.830908px;}
.y131{bottom:388.887098px;}
.yb2{bottom:392.631305px;}
.y6b{bottom:393.058991px;}
.y84{bottom:393.228754px;}
.y1e5{bottom:395.520985px;}
.y190{bottom:395.525767px;}
.y110{bottom:399.942194px;}
.yed{bottom:400.622576px;}
.yce{bottom:401.477808px;}
.y130{bottom:404.535194px;}
.yb1{bottom:405.472686px;}
.y1e4{bottom:407.511183px;}
.y18f{bottom:407.515965px;}
.y6a{bottom:408.705892px;}
.y83{bottom:408.875655px;}
.y10f{bottom:415.673976px;}
.yec{bottom:416.269476px;}
.ycd{bottom:417.209590px;}
.yb0{bottom:418.313111px;}
.y1e3{bottom:419.501382px;}
.y18e{bottom:419.506164px;}
.y12f{bottom:420.266976px;}
.y69{bottom:424.437674px;}
.y82{bottom:424.607437px;}
.yaf{bottom:431.153536px;}
.y10e{bottom:431.320876px;}
.y1e2{bottom:431.406463px;}
.y18d{bottom:431.411245px;}
.yeb{bottom:432.001258px;}
.ycc{bottom:432.856490px;}
.y12e{bottom:435.998758px;}
.y95{bottom:440.255532px;}
.y2c{bottom:440.507181px;}
.y1e1{bottom:443.397618px;}
.y18c{bottom:443.402400px;}
.yae{bottom:443.994918px;}
.y10d{bottom:447.052658px;}
.yea{bottom:447.648158px;}
.ycb{bottom:448.588272px;}
.y12d{bottom:451.645658px;}
.y2b{bottom:454.793646px;}
.y1e0{bottom:455.302698px;}
.y18b{bottom:455.307480px;}
.y68{bottom:455.817551px;}
.y81{bottom:455.987314px;}
.yad{bottom:456.835343px;}
.y10c{bottom:462.699559px;}
.ye9{bottom:463.381136px;}
.yca{bottom:464.236368px;}
.y1df{bottom:467.292897px;}
.y18a{bottom:467.297679px;}
.y12c{bottom:467.378636px;}
.y2a{bottom:469.165110px;}
.yac{bottom:469.761842px;}
.y80{bottom:471.634215px;}
.y10b{bottom:478.432536px;}
.ye8{bottom:479.028036px;}
.y1de{bottom:479.284052px;}
.y189{bottom:479.288834px;}
.yc9{bottom:479.968150px;}
.yab{bottom:482.602267px;}
.y12b{bottom:483.025536px;}
.y29{bottom:483.536574px;}
.y67{bottom:487.196233px;}
.y7f{bottom:487.365997px;}
.y1dd{bottom:491.189133px;}
.y188{bottom:491.193915px;}
.y10a{bottom:494.079436px;}
.ye7{bottom:494.759818px;}
.yaa{bottom:495.442692px;}
.yc8{bottom:495.615050px;}
.y28{bottom:497.823038px;}
.y12a{bottom:498.757318px;}
.y7e{bottom:503.014092px;}
.y1dc{bottom:503.179331px;}
.y187{bottom:503.184113px;}
.ya9{bottom:508.284074px;}
.y109{bottom:509.811218px;}
.ye6{bottom:510.406718px;}
.yc7{bottom:511.346832px;}
.y27{bottom:512.194502px;}
.y1db{bottom:515.084412px;}
.y186{bottom:515.089194px;}
.y66{bottom:518.745874px;}
.ya8{bottom:521.124499px;}
.y108{bottom:525.543000px;}
.ye5{bottom:526.138500px;}
.y26{bottom:526.565966px;}
.yc6{bottom:526.994928px;}
.y1da{bottom:527.075567px;}
.y185{bottom:527.080349px;}
.y129{bottom:530.136000px;}
.ya7{bottom:533.965880px;}
.y65{bottom:534.392775px;}
.y1d9{bottom:538.980647px;}
.y184{bottom:538.985429px;}
.y25{bottom:540.852430px;}
.yc5{bottom:542.726710px;}
.ya6{bottom:546.806305px;}
.y64{bottom:550.124557px;}
.y1d8{bottom:550.970846px;}
.y183{bottom:550.975628px;}
.y24{bottom:555.223895px;}
.yc4{bottom:558.373610px;}
.y128{bottom:559.134036px;}
.ya5{bottom:559.646730px;}
.y107{bottom:559.814536px;}
.y1d7{bottom:562.961045px;}
.y182{bottom:562.965827px;}
.y154{bottom:563.725536px;}
.y63{bottom:565.771457px;}
.y23{bottom:569.595359px;}
.y126{bottom:571.719000px;}
.y105{bottom:572.314500px;}
.ya4{bottom:572.573230px;}
.y125{bottom:573.505072px;}
.y127{bottom:573.505500px;}
.y106{bottom:574.101000px;}
.y104{bottom:574.101072px;}
.yc3{bottom:574.105392px;}
.y1d6{bottom:574.867082px;}
.y181{bottom:574.871864px;}
.y152{bottom:576.312000px;}
.y153{bottom:578.097000px;}
.y151{bottom:578.098072px;}
.y62{bottom:581.504434px;}
.y22{bottom:583.966823px;}
.ya3{bottom:585.413655px;}
.y1d5{bottom:586.857281px;}
.y180{bottom:586.862062px;}
.y124{bottom:587.876536px;}
.y103{bottom:588.472536px;}
.yc2{bottom:589.752292px;}
.y150{bottom:592.469536px;}
.y61{bottom:597.151335px;}
.y21{bottom:598.253287px;}
.ya2{bottom:598.254080px;}
.y1d4{bottom:598.762361px;}
.y17f{bottom:598.767143px;}
.y123{bottom:602.163000px;}
.y102{bottom:602.844000px;}
.yc1{bottom:605.485270px;}
.y14f{bottom:606.756000px;}
.y1d3{bottom:610.752560px;}
.y17e{bottom:610.757342px;}
.ya1{bottom:611.095461px;}
.y20{bottom:612.624751px;}
.y60{bottom:612.883116px;}
.yc0{bottom:621.132170px;}
.y1d2{bottom:622.743715px;}
.y17d{bottom:622.748497px;}
.ya0{bottom:623.935886px;}
.y1f{bottom:626.996215px;}
.y5f{bottom:628.530017px;}
.y1d1{bottom:634.648795px;}
.y17c{bottom:634.653577px;}
.y9f{bottom:636.777268px;}
.ybf{bottom:636.863952px;}
.y1e{bottom:641.282679px;}
.y5e{bottom:644.262994px;}
.y1d0{bottom:646.638994px;}
.y17b{bottom:646.643776px;}
.y9e{bottom:649.617693px;}
.y18{bottom:650.297919px;}
.ybe{bottom:652.510852px;}
.y1d{bottom:655.654143px;}
.y1cf{bottom:658.545031px;}
.y17a{bottom:658.549813px;}
.y5d{bottom:659.909894px;}
.y9d{bottom:662.543236px;}
.y17{bottom:663.138344px;}
.ybd{bottom:668.243830px;}
.y1c{bottom:670.025608px;}
.y1ce{bottom:670.535230px;}
.y179{bottom:670.540012px;}
.y5c{bottom:675.641676px;}
.y16{bottom:675.978769px;}
.y9c{bottom:682.187384px;}
.y1cd{bottom:682.440310px;}
.y178{bottom:682.445092px;}
.ybc{bottom:683.890730px;}
.y1b{bottom:684.312072px;}
.y15{bottom:688.820150px;}
.y5b{bottom:691.288577px;}
.y1cc{bottom:694.430509px;}
.y177{bottom:694.435291px;}
.y9b{bottom:695.112927px;}
.y1a{bottom:698.683536px;}
.y14{bottom:701.660575px;}
.y1cb{bottom:706.421664px;}
.y176{bottom:706.426446px;}
.y5a{bottom:707.021554px;}
.y9a{bottom:707.954308px;}
.y19{bottom:713.055000px;}
.y13{bottom:714.501000px;}
.ybb{bottom:715.269412px;}
.y1ca{bottom:718.326745px;}
.y175{bottom:718.331527px;}
.y59{bottom:722.753336px;}
.y99{bottom:727.597500px;}
.y1c9{bottom:730.316943px;}
.y174{bottom:730.321725px;}
.yba{bottom:731.002389px;}
.y58{bottom:738.400236px;}
.y1c8{bottom:742.222024px;}
.y173{bottom:742.226806px;}
.y12{bottom:742.308000px;}
.y98{bottom:747.325536px;}
.y57{bottom:754.132018px;}
.y1c7{bottom:754.213179px;}
.y172{bottom:754.217961px;}
.y97{bottom:761.697000px;}
.yb9{bottom:766.123034px;}
.y1c6{bottom:766.203378px;}
.y171{bottom:766.208160px;}
.y56{bottom:769.780114px;}
.y1c5{bottom:778.108458px;}
.y170{bottom:778.113240px;}
.yb8{bottom:781.769934px;}
.y55{bottom:785.511896px;}
.y1c4{bottom:790.099613px;}
.y16f{bottom:790.104395px;}
.y11{bottom:791.802000px;}
.y10{bottom:796.053000px;}
.yb7{bottom:797.501716px;}
.y54{bottom:801.158796px;}
.y1c3{bottom:802.004694px;}
.y16e{bottom:802.009476px;}
.yf{bottom:804.642000px;}
.ye{bottom:808.894500px;}
.yb6{bottom:813.149812px;}
.y1c2{bottom:813.994893px;}
.y16d{bottom:813.999674px;}
.y53{bottom:816.890578px;}
.yd{bottom:817.483500px;}
.yc{bottom:821.736000px;}
.y1c1{bottom:825.899973px;}
.y16c{bottom:825.904755px;}
.y52{bottom:832.537478px;}
.y1c0{bottom:837.891128px;}
.y16b{bottom:837.895910px;}
.ya{bottom:842.146650px;}
.yb5{bottom:844.528494px;}
.y51{bottom:848.270456px;}
.yb{bottom:849.202500px;}
.y1bf{bottom:849.881327px;}
.y16a{bottom:849.886109px;}
.y8{bottom:861.619500px;}
.y1be{bottom:861.786407px;}
.y169{bottom:861.791189px;}
.y50{bottom:863.917356px;}
.y9{bottom:868.591500px;}
.y1bd{bottom:873.776606px;}
.y168{bottom:873.781388px;}
.y4f{bottom:879.649138px;}
.y1bc{bottom:885.682643px;}
.y167{bottom:885.687425px;}
.y4e{bottom:895.296038px;}
.y1bb{bottom:897.672842px;}
.y166{bottom:897.677624px;}
.y7{bottom:899.036716px;}
.y1ba{bottom:909.663040px;}
.y165{bottom:909.667822px;}
.y4d{bottom:911.029016px;}
.y1b9{bottom:921.568121px;}
.y164{bottom:921.572903px;}
.y6{bottom:924.888000px;}
.y4c{bottom:926.675916px;}
.y1b8{bottom:933.559276px;}
.y163{bottom:933.564058px;}
.y4b{bottom:942.407698px;}
.y1b7{bottom:945.464357px;}
.y162{bottom:945.469138px;}
.y1b6{bottom:957.454555px;}
.y161{bottom:957.459337px;}
.y5{bottom:957.798000px;}
.y4a{bottom:958.054598px;}
.y1b5{bottom:969.360592px;}
.y160{bottom:969.365374px;}
.y49{bottom:973.787576px;}
.y1b4{bottom:981.350791px;}
.y15f{bottom:981.355573px;}
.y48{bottom:989.434476px;}
.y1b3{bottom:993.340990px;}
.y15e{bottom:993.345772px;}
.y3c{bottom:1003.719000px;}
.y47{bottom:1005.166258px;}
.y1b2{bottom:1005.246070px;}
.y15d{bottom:1005.250852px;}
.y1b1{bottom:1017.237225px;}
.y15c{bottom:1017.242007px;}
.y46{bottom:1020.813158px;}
.y1b0{bottom:1029.142306px;}
.y15b{bottom:1029.147088px;}
.y45{bottom:1036.546136px;}
.y1af{bottom:1041.132504px;}
.y15a{bottom:1041.137286px;}
.y3b{bottom:1045.474500px;}
.y44{bottom:1052.193036px;}
.y1ae{bottom:1053.122703px;}
.y159{bottom:1053.127485px;}
.y1ad{bottom:1065.028740px;}
.y158{bottom:1065.033522px;}
.y43{bottom:1067.924818px;}
.y1ac{bottom:1077.018939px;}
.y157{bottom:1077.023721px;}
.y42{bottom:1083.571718px;}
.y3a{bottom:1087.312500px;}
.y1ab{bottom:1088.924019px;}
.y156{bottom:1088.928801px;}
.y41{bottom:1099.303500px;}
.y1aa{bottom:1100.914218px;}
.y155{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y3f{bottom:1128.630000px;}
.y1ff{bottom:1128.635037px;}
.yb4{bottom:1128.638422px;}
.y200{bottom:1128.640776px;}
.y94{bottom:1128.642000px;}
.h9{height:23.521113px;}
.h10{height:26.462637px;}
.ha{height:33.622910px;}
.hf{height:33.623438px;}
.he{height:34.478653px;}
.h11{height:36.568337px;}
.hb{height:36.775371px;}
.h8{height:37.122363px;}
.h3{height:37.826367px;}
.h7{height:38.959629px;}
.hc{height:42.029824px;}
.h4{height:50.435156px;}
.h6{height:55.689609px;}
.h5{height:70.925098px;}
.hd{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x10{left:62.758950px;}
.x15{left:63.949500px;}
.x23{left:65.905500px;}
.x12{left:74.323389px;}
.x25{left:84.361797px;}
.x26{left:93.970597px;}
.x36{left:128.747884px;}
.x34{left:134.190671px;}
.x35{left:150.603194px;}
.x3{left:159.874500px;}
.x4{left:165.912000px;}
.xd{left:170.844000px;}
.xe{left:177.391500px;}
.xf{left:181.899000px;}
.x3b{left:267.276426px;}
.x1b{left:274.336500px;}
.x5{left:280.459500px;}
.x6{left:286.497000px;}
.x33{left:300.100515px;}
.x11{left:302.995500px;}
.x17{left:308.437500px;}
.x24{left:309.798000px;}
.x18{left:311.158500px;}
.x1{left:329.936979px;}
.x16{left:342.624000px;}
.x29{left:365.329500px;}
.x2a{left:374.428500px;}
.x7{left:408.954000px;}
.x8{left:414.991500px;}
.x1a{left:441.626979px;}
.x27{left:445.606500px;}
.x28{left:454.705500px;}
.x13{left:459.888932px;}
.x1c{left:468.907500px;}
.x14{left:477.831221px;}
.x2d{left:489.400803px;}
.x38{left:540.589262px;}
.x37{left:554.875741px;}
.x1d{left:575.460266px;}
.x2b{left:590.595900px;}
.x9{left:599.272500px;}
.xa{left:605.905500px;}
.x3a{left:607.685408px;}
.x20{left:617.549863px;}
.x2c{left:623.591182px;}
.x19{left:638.801979px;}
.x30{left:640.939050px;}
.x1e{left:670.107951px;}
.x31{left:681.757561px;}
.x2e{left:689.495672px;}
.xb{left:715.947000px;}
.xc{left:721.474500px;}
.x2f{left:735.246262px;}
.x21{left:738.220365px;}
.x1f{left:756.252417px;}
.x32{left:763.734102px;}
.x22{left:782.609837px;}
.x39{left:811.011902px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.v2{vertical-align:8.769838pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:10.402068pt;}
.lsd{letter-spacing:14.384256pt;}
.ls1{letter-spacing:14.686478pt;}
.lsc{letter-spacing:15.899194pt;}
.ls0{letter-spacing:16.922845pt;}
.ls9{letter-spacing:17.716501pt;}
.lsb{letter-spacing:17.719901pt;}
.ls8{letter-spacing:17.801513pt;}
.lsa{letter-spacing:17.804913pt;}
.ls5{letter-spacing:22.027231pt;}
.ls6{letter-spacing:22.031482pt;}
.ls7{letter-spacing:22.329032pt;}
.ls3{letter-spacing:22.902879pt;}
.ws2{word-spacing:-21.538128pt;}
.ws3{word-spacing:-12.454610pt;}
.ws1{word-spacing:-11.859360pt;}
.ws6{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws8{word-spacing:-9.963406pt;}
.ws7{word-spacing:-9.564000pt;}
.ws5{word-spacing:-8.943403pt;}
.ws9{word-spacing:-8.501200pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-15.416526pt;}
._15{margin-left:-4.593986pt;}
._e{margin-left:-3.635424pt;}
._4{margin-left:-2.421852pt;}
._7{margin-left:-1.381042pt;}
._2{width:0.950593pt;}
._1{width:2.213747pt;}
._3{width:3.596437pt;}
._6{width:5.149258pt;}
._8{width:6.243379pt;}
._a{width:7.945771pt;}
._9{width:9.101102pt;}
._c{width:10.210229pt;}
._14{width:11.243154pt;}
._d{width:13.450361pt;}
._0{width:14.384256pt;}
._12{width:15.302592pt;}
._16{width:16.318514pt;}
._11{width:18.060658pt;}
._13{width:19.015426pt;}
._10{width:20.849782pt;}
._f{width:21.848701pt;}
._b{width:26.839046pt;}
._39{width:27.927230pt;}
._17{width:32.530760pt;}
._18{width:33.448916pt;}
._2c{width:44.764332pt;}
._1d{width:117.061524pt;}
._1b{width:136.206226pt;}
._1a{width:141.167527pt;}
._22{width:142.425704pt;}
._19{width:147.689647pt;}
._28{width:155.548157pt;}
._2b{width:165.171515pt;}
._23{width:166.637122pt;}
._29{width:171.159760pt;}
._27{width:172.145900pt;}
._20{width:174.692859pt;}
._1f{width:185.781824pt;}
._1e{width:189.692376pt;}
._1c{width:193.262880pt;}
._2a{width:195.405183pt;}
._21{width:220.058663pt;}
._26{width:225.975498pt;}
._25{width:245.902311pt;}
._24{width:262.088596pt;}
._31{width:433.911449pt;}
._36{width:460.217563pt;}
._32{width:466.926710pt;}
._2d{width:480.440217pt;}
._38{width:528.441393pt;}
._2e{width:542.131725pt;}
._35{width:583.726397pt;}
._37{width:607.240716pt;}
._33{width:609.315009pt;}
._34{width:657.669834pt;}
._2f{width:678.729007pt;}
._30{width:697.322832pt;}
.fs6{font-size:23.788267pt;}
.fsc{font-size:26.763200pt;}
.fs7{font-size:34.004800pt;}
.fsb{font-size:34.005333pt;}
.fs8{font-size:37.193067pt;}
.fs5{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs4{font-size:39.402133pt;}
.fs9{font-size:42.507200pt;}
.fs1{font-size:51.008000pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsa{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y40{bottom:42.160000pt;}
.y140{bottom:69.699425pt;}
.y7d{bottom:69.703272pt;}
.y96{bottom:69.770000pt;}
.ye4{bottom:69.770121pt;}
.y101{bottom:77.182023pt;}
.y4{bottom:81.173333pt;}
.ye3{bottom:82.469200pt;}
.y13f{bottom:83.683231pt;}
.y7c{bottom:83.687078pt;}
.y1fe{bottom:85.951664pt;}
.y1a9{bottom:85.955915pt;}
.ye2{bottom:86.702267pt;}
.y100{bottom:91.090379pt;}
.y3{bottom:93.893333pt;}
.y1fd{bottom:96.533958pt;}
.y1a8{bottom:96.538209pt;}
.y14e{bottom:96.681646pt;}
.y7b{bottom:97.595434pt;}
.ye1{bottom:101.369158pt;}
.y122{bottom:104.469401pt;}
.yff{bottom:105.074185pt;}
.y3e{bottom:106.582787pt;}
.y1fc{bottom:107.191912pt;}
.y1a7{bottom:107.196163pt;}
.y14d{bottom:107.340451pt;}
.y13e{bottom:111.576455pt;}
.y7a{bottom:111.579240pt;}
.ye0{bottom:112.782869pt;}
.y1fb{bottom:117.850717pt;}
.y1a6{bottom:117.854968pt;}
.y14c{bottom:117.998405pt;}
.y121{bottom:118.454270pt;}
.yfe{bottom:118.983604pt;}
.y3d{bottom:119.281867pt;}
.ydf{bottom:124.197430pt;}
.y79{bottom:125.488658pt;}
.y1fa{bottom:128.433011pt;}
.y1a5{bottom:128.437261pt;}
.y14b{bottom:128.580699pt;}
.y120{bottom:132.362626pt;}
.yfd{bottom:132.967410pt;}
.yde{bottom:135.611141pt;}
.y1f9{bottom:139.090965pt;}
.y1a4{bottom:139.095216pt;}
.y14a{bottom:139.238653pt;}
.y78{bottom:139.472464pt;}
.y93{bottom:140.303480pt;}
.y39{bottom:141.958699pt;}
.y11f{bottom:146.346432pt;}
.yfc{bottom:146.875766pt;}
.ydd{bottom:147.024853pt;}
.y13d{bottom:148.312240pt;}
.y1f8{bottom:149.674109pt;}
.y1a3{bottom:149.678360pt;}
.y149{bottom:149.821797pt;}
.y77{bottom:153.380820pt;}
.y92{bottom:154.288349pt;}
.y38{bottom:154.733333pt;}
.ydc{bottom:158.439414pt;}
.y11e{bottom:160.254788pt;}
.y1f7{bottom:160.332064pt;}
.y1a2{bottom:160.336314pt;}
.y148{bottom:160.479752pt;}
.yfb{bottom:160.859572pt;}
.y13c{bottom:162.221659pt;}
.y91{bottom:168.196705pt;}
.ydb{bottom:169.928786pt;}
.y1f6{bottom:170.914357pt;}
.y1a1{bottom:170.918608pt;}
.y147{bottom:171.062046pt;}
.y11d{bottom:174.239657pt;}
.yfa{bottom:174.768990pt;}
.y13b{bottom:176.205465pt;}
.y76{bottom:181.274045pt;}
.yda{bottom:181.342497pt;}
.y1f5{bottom:181.572312pt;}
.y1a0{bottom:181.576562pt;}
.y146{bottom:181.720000pt;}
.y90{bottom:182.180511pt;}
.y11c{bottom:188.148013pt;}
.yf9{bottom:188.752796pt;}
.y13a{bottom:190.113821pt;}
.y1f4{bottom:192.231116pt;}
.y19f{bottom:192.235367pt;}
.yd9{bottom:192.757058pt;}
.y8f{bottom:196.088867pt;}
.y36{bottom:199.182398pt;}
.y11b{bottom:202.131819pt;}
.yf8{bottom:202.661152pt;}
.y1f3{bottom:202.813410pt;}
.y19e{bottom:202.817661pt;}
.y139{bottom:204.097627pt;}
.y145{bottom:206.214486pt;}
.y75{bottom:209.846322pt;}
.y8e{bottom:210.073735pt;}
.yd8{bottom:210.293333pt;}
.y35{bottom:213.090754pt;}
.y1f2{bottom:213.471365pt;}
.y19d{bottom:213.475615pt;}
.y11a{bottom:216.040175pt;}
.yf7{bottom:216.644958pt;}
.y138{bottom:218.082496pt;}
.y74{bottom:223.831191pt;}
.y8d{bottom:223.982091pt;}
.y1f1{bottom:224.053658pt;}
.y19c{bottom:224.057909pt;}
.y34{bottom:227.075623pt;}
.yd6{bottom:227.754667pt;}
.y119{bottom:230.023981pt;}
.yf6{bottom:230.553314pt;}
.yd7{bottom:231.533333pt;}
.y137{bottom:231.990852pt;}
.y144{bottom:234.106647pt;}
.y1f0{bottom:234.712463pt;}
.y19b{bottom:234.716713pt;}
.y73{bottom:237.739547pt;}
.y8c{bottom:237.965897pt;}
.y33{bottom:240.983979pt;}
.y118{bottom:243.933399pt;}
.yf5{bottom:244.538183pt;}
.yd5{bottom:245.292064pt;}
.y1ef{bottom:245.370417pt;}
.y19a{bottom:245.374668pt;}
.y136{bottom:245.974658pt;}
.y143{bottom:248.016066pt;}
.y72{bottom:251.723353pt;}
.y8b{bottom:251.874253pt;}
.y32{bottom:254.967785pt;}
.y1ee{bottom:255.952711pt;}
.y199{bottom:255.956962pt;}
.y117{bottom:257.917205pt;}
.yd4{bottom:258.066699pt;}
.yf4{bottom:258.446539pt;}
.y135{bottom:259.883014pt;}
.y71{bottom:265.631709pt;}
.y8a{bottom:265.859122pt;}
.y1ed{bottom:266.610665pt;}
.y198{bottom:266.614916pt;}
.y31{bottom:268.876141pt;}
.yd3{bottom:270.841333pt;}
.y116{bottom:271.825561pt;}
.yf3{bottom:272.430345pt;}
.y142{bottom:275.908228pt;}
.y1ec{bottom:277.193809pt;}
.y197{bottom:277.198060pt;}
.y70{bottom:279.615515pt;}
.y89{bottom:279.767478pt;}
.y30{bottom:282.861009pt;}
.y115{bottom:285.809367pt;}
.yf2{bottom:286.338701pt;}
.y134{bottom:287.776238pt;}
.y1eb{bottom:287.851764pt;}
.y196{bottom:287.856014pt;}
.y6f{bottom:293.524933pt;}
.y88{bottom:293.751284pt;}
.y2f{bottom:296.769365pt;}
.y1ea{bottom:298.434058pt;}
.y195{bottom:298.438308pt;}
.y114{bottom:299.718786pt;}
.yf1{bottom:300.323570pt;}
.yd2{bottom:301.083776pt;}
.y141{bottom:303.801453pt;}
.y6e{bottom:307.508739pt;}
.y87{bottom:307.659640pt;}
.y1e9{bottom:309.092862pt;}
.y194{bottom:309.097113pt;}
.y2e{bottom:310.753171pt;}
.y113{bottom:313.702592pt;}
.yf0{bottom:314.231925pt;}
.yd1{bottom:315.067582pt;}
.y133{bottom:317.785259pt;}
.y1e8{bottom:319.750817pt;}
.y193{bottom:319.755067pt;}
.y6d{bottom:321.492545pt;}
.y86{bottom:321.643446pt;}
.y37{bottom:324.661527pt;}
.y112{bottom:327.610948pt;}
.yef{bottom:328.215732pt;}
.yd0{bottom:328.975938pt;}
.y1e7{bottom:330.333110pt;}
.y192{bottom:330.337361pt;}
.y132{bottom:331.693615pt;}
.y6c{bottom:335.400901pt;}
.y85{bottom:335.552865pt;}
.yb3{bottom:337.591893pt;}
.y2d{bottom:338.645333pt;}
.y1e6{bottom:340.991065pt;}
.y191{bottom:340.995315pt;}
.y111{bottom:341.594754pt;}
.yee{bottom:342.124087pt;}
.ycf{bottom:342.960807pt;}
.y131{bottom:345.677421pt;}
.yb2{bottom:349.005604pt;}
.y6b{bottom:349.385770pt;}
.y84{bottom:349.536671pt;}
.y1e5{bottom:351.574209pt;}
.y190{bottom:351.578459pt;}
.y110{bottom:355.504173pt;}
.yed{bottom:356.108956pt;}
.yce{bottom:356.869163pt;}
.y130{bottom:359.586839pt;}
.yb1{bottom:360.420166pt;}
.y1e4{bottom:362.232163pt;}
.y18f{bottom:362.236414pt;}
.y6a{bottom:363.294126pt;}
.y83{bottom:363.445026pt;}
.y10f{bottom:369.487979pt;}
.yec{bottom:370.017312pt;}
.ycd{bottom:370.852969pt;}
.yb0{bottom:371.833877pt;}
.y1e3{bottom:372.890118pt;}
.y18e{bottom:372.894368pt;}
.y12f{bottom:373.570645pt;}
.y69{bottom:377.277932pt;}
.y82{bottom:377.428833pt;}
.yaf{bottom:383.247588pt;}
.y10e{bottom:383.396334pt;}
.y1e2{bottom:383.472411pt;}
.y18d{bottom:383.476662pt;}
.yeb{bottom:384.001118pt;}
.ycc{bottom:384.761325pt;}
.y12e{bottom:387.554451pt;}
.y95{bottom:391.338251pt;}
.y2c{bottom:391.561939pt;}
.y1e1{bottom:394.131216pt;}
.y18c{bottom:394.135466pt;}
.yae{bottom:394.662149pt;}
.y10d{bottom:397.380141pt;}
.yea{bottom:397.909474pt;}
.ycb{bottom:398.745131pt;}
.y12d{bottom:401.462807pt;}
.y2b{bottom:404.261018pt;}
.y1e0{bottom:404.713510pt;}
.y18b{bottom:404.717760pt;}
.y68{bottom:405.171157pt;}
.y81{bottom:405.322057pt;}
.yad{bottom:406.075860pt;}
.y10c{bottom:411.288496pt;}
.ye9{bottom:411.894343pt;}
.yca{bottom:412.654549pt;}
.y1df{bottom:415.371464pt;}
.y18a{bottom:415.375715pt;}
.y12c{bottom:415.447676pt;}
.y2a{bottom:417.035653pt;}
.yac{bottom:417.566082pt;}
.y80{bottom:419.230413pt;}
.y10b{bottom:425.273365pt;}
.ye8{bottom:425.802699pt;}
.y1de{bottom:426.030269pt;}
.y189{bottom:426.034519pt;}
.yc9{bottom:426.638355pt;}
.yab{bottom:428.979793pt;}
.y12b{bottom:429.356032pt;}
.y29{bottom:429.810288pt;}
.y67{bottom:433.063319pt;}
.y7f{bottom:433.214219pt;}
.y1dd{bottom:436.612562pt;}
.y188{bottom:436.616813pt;}
.y10a{bottom:439.181721pt;}
.ye7{bottom:439.786505pt;}
.yaa{bottom:440.393504pt;}
.yc8{bottom:440.546711pt;}
.y28{bottom:442.509367pt;}
.y12a{bottom:443.339838pt;}
.y7e{bottom:447.123638pt;}
.y1dc{bottom:447.270517pt;}
.y187{bottom:447.274767pt;}
.ya9{bottom:451.808066pt;}
.y109{bottom:453.165527pt;}
.ye6{bottom:453.694861pt;}
.yc7{bottom:454.530517pt;}
.y27{bottom:455.284002pt;}
.y1db{bottom:457.852811pt;}
.y186{bottom:457.857061pt;}
.y66{bottom:461.107444pt;}
.ya8{bottom:463.221777pt;}
.y108{bottom:467.149333pt;}
.ye5{bottom:467.678667pt;}
.y26{bottom:468.058637pt;}
.yc6{bottom:468.439936pt;}
.y1da{bottom:468.511615pt;}
.y185{bottom:468.515866pt;}
.y129{bottom:471.232000pt;}
.ya7{bottom:474.636338pt;}
.y65{bottom:475.015800pt;}
.y1d9{bottom:479.093909pt;}
.y184{bottom:479.098159pt;}
.y25{bottom:480.757716pt;}
.yc5{bottom:482.423742pt;}
.ya6{bottom:486.050049pt;}
.y64{bottom:488.999606pt;}
.y1d8{bottom:489.751863pt;}
.y183{bottom:489.756114pt;}
.y24{bottom:493.532351pt;}
.yc4{bottom:496.332098pt;}
.y128{bottom:497.008032pt;}
.ya5{bottom:497.463760pt;}
.y107{bottom:497.612921pt;}
.y1d7{bottom:500.409818pt;}
.y182{bottom:500.414068pt;}
.y154{bottom:501.089365pt;}
.y63{bottom:502.907962pt;}
.y23{bottom:506.306985pt;}
.y126{bottom:508.194667pt;}
.y105{bottom:508.724000pt;}
.ya4{bottom:508.953982pt;}
.y125{bottom:509.782286pt;}
.y127{bottom:509.782667pt;}
.y106{bottom:510.312000pt;}
.y104{bottom:510.312064pt;}
.yc3{bottom:510.315904pt;}
.y1d6{bottom:510.992962pt;}
.y181{bottom:510.997212pt;}
.y152{bottom:512.277333pt;}
.y153{bottom:513.864000pt;}
.y151{bottom:513.864953pt;}
.y62{bottom:516.892830pt;}
.y22{bottom:519.081620pt;}
.ya3{bottom:520.367693pt;}
.y1d5{bottom:521.650916pt;}
.y180{bottom:521.655167pt;}
.y124{bottom:522.556921pt;}
.y103{bottom:523.086699pt;}
.yc2{bottom:524.224260pt;}
.y150{bottom:526.639587pt;}
.y61{bottom:530.801186pt;}
.y21{bottom:531.780699pt;}
.ya2{bottom:531.781404pt;}
.y1d4{bottom:532.233210pt;}
.y17f{bottom:532.237460pt;}
.y123{bottom:535.256000pt;}
.y102{bottom:535.861333pt;}
.yc1{bottom:538.209129pt;}
.y14f{bottom:539.338667pt;}
.y1d3{bottom:542.891164pt;}
.y17e{bottom:542.895415pt;}
.ya1{bottom:543.195966pt;}
.y20{bottom:544.555334pt;}
.y60{bottom:544.784992pt;}
.yc0{bottom:552.117484pt;}
.y1d2{bottom:553.549969pt;}
.y17d{bottom:553.554219pt;}
.ya0{bottom:554.609677pt;}
.y1f{bottom:557.329969pt;}
.y5f{bottom:558.693348pt;}
.y1d1{bottom:564.132263pt;}
.y17c{bottom:564.136513pt;}
.y9f{bottom:566.024238pt;}
.ybf{bottom:566.101291pt;}
.y1e{bottom:570.029048pt;}
.y5e{bottom:572.678217pt;}
.y1d0{bottom:574.790217pt;}
.y17b{bottom:574.794468pt;}
.y9e{bottom:577.437949pt;}
.y18{bottom:578.042594pt;}
.ybe{bottom:580.009646pt;}
.y1d{bottom:582.803683pt;}
.y1cf{bottom:585.373361pt;}
.y17a{bottom:585.377612pt;}
.y5d{bottom:586.586573pt;}
.y9d{bottom:588.927321pt;}
.y17{bottom:589.456305pt;}
.ybd{bottom:593.994515pt;}
.y1c{bottom:595.578318pt;}
.y1ce{bottom:596.031315pt;}
.y179{bottom:596.035566pt;}
.y5c{bottom:600.570379pt;}
.y16{bottom:600.870017pt;}
.y9c{bottom:606.388786pt;}
.y1cd{bottom:606.613609pt;}
.y178{bottom:606.617860pt;}
.ybc{bottom:607.902871pt;}
.y1b{bottom:608.277397pt;}
.y15{bottom:612.284578pt;}
.y5b{bottom:614.478735pt;}
.y1cc{bottom:617.271564pt;}
.y177{bottom:617.275814pt;}
.y9b{bottom:617.878157pt;}
.y1a{bottom:621.052032pt;}
.y14{bottom:623.698289pt;}
.y1cb{bottom:627.930368pt;}
.y176{bottom:627.934619pt;}
.y5a{bottom:628.463604pt;}
.y9a{bottom:629.292719pt;}
.y19{bottom:633.826667pt;}
.y13{bottom:635.112000pt;}
.ybb{bottom:635.795033pt;}
.y1ca{bottom:638.512662pt;}
.y175{bottom:638.516912pt;}
.y59{bottom:642.447410pt;}
.y99{bottom:646.753333pt;}
.y1c9{bottom:649.170616pt;}
.y174{bottom:649.174867pt;}
.yba{bottom:649.779902pt;}
.y58{bottom:656.355766pt;}
.y1c8{bottom:659.752910pt;}
.y173{bottom:659.757161pt;}
.y12{bottom:659.829333pt;}
.y98{bottom:664.289365pt;}
.y57{bottom:670.339572pt;}
.y1c7{bottom:670.411715pt;}
.y172{bottom:670.415965pt;}
.y97{bottom:677.064000pt;}
.yb9{bottom:680.998252pt;}
.y1c6{bottom:681.069669pt;}
.y171{bottom:681.073920pt;}
.y56{bottom:684.248990pt;}
.y1c5{bottom:691.651963pt;}
.y170{bottom:691.656213pt;}
.yb8{bottom:694.906608pt;}
.y55{bottom:698.232796pt;}
.y1c4{bottom:702.310767pt;}
.y16f{bottom:702.315018pt;}
.y11{bottom:703.824000pt;}
.y10{bottom:707.602667pt;}
.yb7{bottom:708.890414pt;}
.y54{bottom:712.141152pt;}
.y1c3{bottom:712.893061pt;}
.y16e{bottom:712.897312pt;}
.yf{bottom:715.237333pt;}
.ye{bottom:719.017333pt;}
.yb6{bottom:722.799833pt;}
.y1c2{bottom:723.551016pt;}
.y16d{bottom:723.555266pt;}
.y53{bottom:726.124958pt;}
.yd{bottom:726.652000pt;}
.yc{bottom:730.432000pt;}
.y1c1{bottom:734.133309pt;}
.y16c{bottom:734.137560pt;}
.y52{bottom:740.033314pt;}
.y1c0{bottom:744.792114pt;}
.y16b{bottom:744.796365pt;}
.ya{bottom:748.574800pt;}
.yb5{bottom:750.691995pt;}
.y51{bottom:754.018183pt;}
.yb{bottom:754.846667pt;}
.y1bf{bottom:755.450068pt;}
.y16a{bottom:755.454319pt;}
.y8{bottom:765.884000pt;}
.y1be{bottom:766.032362pt;}
.y169{bottom:766.036613pt;}
.y50{bottom:767.926539pt;}
.y9{bottom:772.081333pt;}
.y1bd{bottom:776.690317pt;}
.y168{bottom:776.694567pt;}
.y4f{bottom:781.910345pt;}
.y1bc{bottom:787.273460pt;}
.y167{bottom:787.277711pt;}
.y4e{bottom:795.818701pt;}
.y1bb{bottom:797.931415pt;}
.y166{bottom:797.935665pt;}
.y7{bottom:799.143748pt;}
.y1ba{bottom:808.589369pt;}
.y165{bottom:808.593620pt;}
.y4d{bottom:809.803570pt;}
.y1b9{bottom:819.171663pt;}
.y164{bottom:819.175914pt;}
.y6{bottom:822.122667pt;}
.y4c{bottom:823.711925pt;}
.y1b8{bottom:829.830468pt;}
.y163{bottom:829.834718pt;}
.y4b{bottom:837.695732pt;}
.y1b7{bottom:840.412761pt;}
.y162{bottom:840.417012pt;}
.y1b6{bottom:851.070716pt;}
.y161{bottom:851.074966pt;}
.y5{bottom:851.376000pt;}
.y4a{bottom:851.604087pt;}
.y1b5{bottom:861.653860pt;}
.y160{bottom:861.658110pt;}
.y49{bottom:865.588956pt;}
.y1b4{bottom:872.311814pt;}
.y15f{bottom:872.316065pt;}
.y48{bottom:879.497312pt;}
.y1b3{bottom:882.969769pt;}
.y15e{bottom:882.974019pt;}
.y3c{bottom:892.194667pt;}
.y47{bottom:893.481118pt;}
.y1b2{bottom:893.552062pt;}
.y15d{bottom:893.556313pt;}
.y1b1{bottom:904.210867pt;}
.y15c{bottom:904.215118pt;}
.y46{bottom:907.389474pt;}
.y1b0{bottom:914.793161pt;}
.y15b{bottom:914.797411pt;}
.y45{bottom:921.374343pt;}
.y1af{bottom:925.451115pt;}
.y15a{bottom:925.455366pt;}
.y3b{bottom:929.310667pt;}
.y44{bottom:935.282699pt;}
.y1ae{bottom:936.109070pt;}
.y159{bottom:936.113320pt;}
.y1ad{bottom:946.692213pt;}
.y158{bottom:946.696464pt;}
.y43{bottom:949.266505pt;}
.y1ac{bottom:957.350168pt;}
.y157{bottom:957.354418pt;}
.y42{bottom:963.174861pt;}
.y3a{bottom:966.500000pt;}
.y1ab{bottom:967.932462pt;}
.y156{bottom:967.936712pt;}
.y41{bottom:977.158667pt;}
.y1aa{bottom:978.590416pt;}
.y155{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y3f{bottom:1003.226667pt;}
.y1ff{bottom:1003.231144pt;}
.yb4{bottom:1003.234153pt;}
.y200{bottom:1003.236245pt;}
.y94{bottom:1003.237333pt;}
.h9{height:20.907656pt;}
.h10{height:23.522344pt;}
.ha{height:29.887031pt;}
.hf{height:29.887500pt;}
.he{height:30.647691pt;}
.h11{height:32.505188pt;}
.hb{height:32.689219pt;}
.h8{height:32.997656pt;}
.h3{height:33.623437pt;}
.h7{height:34.630781pt;}
.hc{height:37.359844pt;}
.h4{height:44.831250pt;}
.h6{height:49.501875pt;}
.h5{height:63.044531pt;}
.hd{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x10{left:55.785733pt;}
.x15{left:56.844000pt;}
.x23{left:58.582667pt;}
.x12{left:66.065235pt;}
.x25{left:74.988264pt;}
.x26{left:83.529420pt;}
.x36{left:114.442563pt;}
.x34{left:119.280596pt;}
.x35{left:133.869506pt;}
.x3{left:142.110667pt;}
.x4{left:147.477333pt;}
.xd{left:151.861333pt;}
.xe{left:157.681333pt;}
.xf{left:161.688000pt;}
.x3b{left:237.579045pt;}
.x1b{left:243.854667pt;}
.x5{left:249.297333pt;}
.x6{left:254.664000pt;}
.x33{left:266.756013pt;}
.x11{left:269.329333pt;}
.x17{left:274.166667pt;}
.x24{left:275.376000pt;}
.x18{left:276.585333pt;}
.x1{left:293.277314pt;}
.x16{left:304.554667pt;}
.x29{left:324.737333pt;}
.x2a{left:332.825333pt;}
.x7{left:363.514667pt;}
.x8{left:368.881333pt;}
.x1a{left:392.557314pt;}
.x27{left:396.094667pt;}
.x28{left:404.182667pt;}
.x13{left:408.790162pt;}
.x1c{left:416.806667pt;}
.x14{left:424.738863pt;}
.x2d{left:435.022936pt;}
.x38{left:480.523788pt;}
.x37{left:493.222881pt;}
.x1d{left:511.520236pt;}
.x2b{left:524.974133pt;}
.x9{left:532.686667pt;}
.xa{left:538.582667pt;}
.x3a{left:540.164807pt;}
.x20{left:548.933212pt;}
.x2c{left:554.303273pt;}
.x19{left:567.823981pt;}
.x30{left:569.723600pt;}
.x1e{left:595.651512pt;}
.x31{left:606.006721pt;}
.x2e{left:612.885042pt;}
.xb{left:636.397333pt;}
.xc{left:641.310667pt;}
.x2f{left:653.552233pt;}
.x21{left:656.195880pt;}
.x1f{left:672.224371pt;}
.x32{left:678.874757pt;}
.x22{left:695.653189pt;}
.x39{left:720.899469pt;}
}




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