
    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_7e4185ee8b1949d4f1814559.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_c285a5b93659920c28f76374.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_456951db359c688612aaa02b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_1138a034446836d09d8be553.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_861114482c901b5a465dffeb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.975586;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_7b91acb0555c50167701e17a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_69cd50f7fab881e010d2e29e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.964844;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_45a3a8aef35c42a86513e9fe.woff')format("woff");}.ff8{font-family:ff8;line-height:1.031738;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_be15e4db0bde17b3ef1750e8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;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;}
.m2{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,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;}
.v2{vertical-align:39.600000px;}
.v1{vertical-align:104.580000px;}
.ls18{letter-spacing:-0.738000px;}
.ls1b{letter-spacing:-0.341400px;}
.ls1d{letter-spacing:-0.295800px;}
.ls1e{letter-spacing:-0.223800px;}
.ls15{letter-spacing:-0.162600px;}
.ls17{letter-spacing:-0.037440px;}
.ls22{letter-spacing:-0.034560px;}
.ls21{letter-spacing:-0.025920px;}
.ls16{letter-spacing:-0.018720px;}
.ls23{letter-spacing:-0.017280px;}
.ls13{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.017280px;}
.lse{letter-spacing:0.090720px;}
.ls10{letter-spacing:0.100800px;}
.ls19{letter-spacing:0.151800px;}
.ls14{letter-spacing:0.162600px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.197400px;}
.ls20{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.240048px;}
.ls1f{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.325200px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.378600px;}
.lsd{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.044000px;}
.ls7{letter-spacing:9.341280px;}
.ls4{letter-spacing:10.242720px;}
.ls6{letter-spacing:21.581280px;}
.ls12{letter-spacing:32.400000px;}
.lsf{letter-spacing:36.720000px;}
.lsb{letter-spacing:39.444000px;}
.ls3{letter-spacing:40.482720px;}
.ls0{letter-spacing:41.760000px;}
.ls8{letter-spacing:59.021280px;}
.lsa{letter-spacing:72.162720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(6,31,50),0 0.015em rgb(6,31,50),0.015em 0 rgb(6,31,50),0 -0.015em  rgb(6,31,50);}
.sc1{text-shadow:-0.015em 0 rgb(0,52,138),0 0.015em rgb(0,52,138),0.015em 0 rgb(0,52,138),0 -0.015em  rgb(0,52,138);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(6,31,50);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,52,138);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-73.837320px;}
.wse{word-spacing:-73.610520px;}
.wsa{word-spacing:-73.458720px;}
.wsb{word-spacing:-73.440000px;}
.wsc{word-spacing:-73.421280px;}
.ws10{word-spacing:-73.117320px;}
.wsd{word-spacing:-72.720720px;}
.ws11{word-spacing:-47.681280px;}
.ws5{word-spacing:-46.997280px;}
.ws3{word-spacing:-46.962480px;}
.ws8{word-spacing:-46.834680px;}
.ws4{word-spacing:-46.799880px;}
.ws9{word-spacing:-46.677312px;}
.ws6{word-spacing:-46.637280px;}
.ws7{word-spacing:-46.474680px;}
.ws12{word-spacing:-46.341480px;}
.ws13{word-spacing:-40.072032px;}
.ws14{word-spacing:-39.848232px;}
.ws1{word-spacing:-33.426720px;}
.ws18{word-spacing:-32.808240px;}
.ws16{word-spacing:-30.024000px;}
.ws2{word-spacing:-22.927838px;}
.ws21{word-spacing:-21.634560px;}
.ws20{word-spacing:-21.617280px;}
.ws1f{word-spacing:-21.582720px;}
.ws1e{word-spacing:-20.232013px;}
.ws1b{word-spacing:-20.056045px;}
.ws1a{word-spacing:-20.016013px;}
.ws0{word-spacing:-16.613280px;}
.ws1d{word-spacing:-13.450761px;}
.ws1c{word-spacing:-13.410729px;}
.ws15{word-spacing:-0.131760px;}
.ws22{word-spacing:0.000000px;}
.ws17{word-spacing:1.569669px;}
.ws19{word-spacing:709.615423px;}
._24{margin-left:-1554.361013px;}
._23{margin-left:-1101.420718px;}
._25{margin-left:-648.780423px;}
._18{margin-left:-15.550560px;}
._21{margin-left:-13.769520px;}
._7{margin-left:-11.657520px;}
._2{margin-left:-8.897760px;}
._19{margin-left:-7.777440px;}
._11{margin-left:-6.604320px;}
._20{margin-left:-4.743360px;}
._3{margin-left:-3.006000px;}
._0{margin-left:-1.239840px;}
._1{width:1.088640px;}
._c{width:2.200080px;}
._10{width:3.435600px;}
._8{width:4.952400px;}
._6{width:6.786960px;}
._f{width:8.072280px;}
._b{width:9.133800px;}
._a{width:11.168880px;}
._1b{width:16.040160px;}
._1a{width:17.568000px;}
._14{width:20.714640px;}
._15{width:22.119600px;}
._16{width:23.128080px;}
._d{width:26.605680px;}
._e{width:27.709920px;}
._13{width:33.940800px;}
._12{width:35.759760px;}
._9{width:41.225760px;}
._1c{width:45.141600px;}
._17{width:59.064000px;}
._1e{width:63.777600px;}
._1d{width:64.802160px;}
._1f{width:72.575280px;}
._5{width:80.063040px;}
._4{width:81.206160px;}
._26{width:257.040168px;}
._28{width:480.692640px;}
._27{width:829.206480px;}
._22{width:4785.255120px;}
.fc9{color:transparent;}
.fc7{color:rgb(0,83,121);}
.fc4{color:rgb(32,56,100);}
.fc3{color:rgb(6,31,50);}
.fc1{color:rgb(0,52,138);}
.fc8{color:rgb(13,13,13);}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(191,191,191);}
.fs0{font-size:30.240000px;}
.fs16{font-size:48.240031px;}
.fs17{font-size:48.384032px;}
.fs1{font-size:59.760000px;}
.fs14{font-size:72.000047px;}
.fs15{font-size:72.144047px;}
.fs18{font-size:77.760000px;}
.fs4{font-size:82.474236px;}
.fs5{font-size:82.639185px;}
.fs13{font-size:84.240055px;}
.fs12{font-size:95.760000px;}
.fs3{font-size:96.494856px;}
.fs6{font-size:96.659805px;}
.fs11{font-size:104.487446px;}
.fs10{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fsf{font-size:131.760000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs8{font-size:234.000000px;}
.fsa{font-size:234.144000px;}
.fsb{font-size:264.240000px;}
.fsc{font-size:588.240000px;}
.y0{bottom:0.000000px;}
.y97{bottom:14.671582px;}
.y1e{bottom:20.352422px;}
.y13{bottom:21.300789px;}
.y77{bottom:22.175613px;}
.y96{bottom:36.270846px;}
.y1d{bottom:48.806053px;}
.y12{bottom:49.795638px;}
.y65{bottom:55.440000px;}
.y2{bottom:67.104000px;}
.y62{bottom:76.752000px;}
.y1c{bottom:77.259661px;}
.y11{bottom:78.249249px;}
.y1{bottom:86.364000px;}
.y64{bottom:101.160000px;}
.y61{bottom:119.412000px;}
.y1b{bottom:127.568942px;}
.y10{bottom:128.558533px;}
.y63{bottom:128.880000px;}
.y60{bottom:162.615000px;}
.y23{bottom:163.651581px;}
.y22{bottom:192.096595px;}
.y21{bottom:220.567390px;}
.y7c{bottom:225.297678px;}
.y8f{bottom:232.547474px;}
.y20{bottom:249.055371px;}
.y8e{bottom:254.147488px;}
.y75{bottom:261.511505px;}
.y1a{bottom:274.587757px;}
.y8d{bottom:275.747502px;}
.yb6{bottom:278.130000px;}
.y8c{bottom:288.707510px;}
.y88{bottom:297.377516px;}
.y1f{bottom:299.364652px;}
.y19{bottom:303.041366px;}
.y8b{bottom:303.137520px;}
.y8a{bottom:310.337524px;}
.yb5{bottom:314.490000px;}
.y87{bottom:318.977530px;}
.y83{bottom:322.907533px;}
.y89{bottom:324.737534px;}
.y94{bottom:338.672543px;}
.y86{bottom:340.577544px;}
.y95{bottom:342.092545px;}
.y82{bottom:344.537547px;}
.y18{bottom:353.385023px;}
.y93{bottom:360.272557px;}
.y7f{bottom:361.382558px;}
.y85{bottom:362.177558px;}
.y91{bottom:363.692559px;}
.y81{bottom:366.137561px;}
.y92{bottom:381.872571px;}
.y7e{bottom:382.982572px;}
.y84{bottom:383.777572px;}
.y90{bottom:385.292573px;}
.y80{bottom:387.737575px;}
.ya9{bottom:387.795000px;}
.ya8{bottom:411.195000px;}
.y78{bottom:427.637334px;}
.ya7{bottom:434.595000px;}
.ya6{bottom:457.995000px;}
.y7d{bottom:468.557627px;}
.ya5{bottom:481.395000px;}
.ya4{bottom:504.795000px;}
.yb2{bottom:510.450000px;}
.y28{bottom:515.893871px;}
.ya3{bottom:528.195000px;}
.yb1{bottom:533.850000px;}
.y27{bottom:544.347495px;}
.ya2{bottom:551.595000px;}
.yb0{bottom:557.250000px;}
.yb4{bottom:566.130000px;}
.y26{bottom:572.801103px;}
.ya1{bottom:574.995000px;}
.yaf{bottom:580.650000px;}
.y17{bottom:581.873026px;}
.y76{bottom:582.093513px;}
.ya0{bottom:598.395000px;}
.y25{bottom:601.254723px;}
.yb3{bottom:602.130000px;}
.yae{bottom:604.050000px;}
.y16{bottom:610.326642px;}
.y9f{bottom:621.795000px;}
.yad{bottom:627.450000px;}
.y15{bottom:638.780247px;}
.y9e{bottom:645.195000px;}
.yac{bottom:650.850000px;}
.y24{bottom:651.615546px;}
.y9d{bottom:668.595000px;}
.yab{bottom:674.250000px;}
.y14{bottom:689.089533px;}
.y9c{bottom:691.995000px;}
.yaa{bottom:697.650000px;}
.y99{bottom:749.985000px;}
.y9a{bottom:750.030000px;}
.y98{bottom:785.985000px;}
.y9b{bottom:786.030000px;}
.y5f{bottom:875.730000px;}
.y5e{bottom:926.130000px;}
.y55{bottom:927.645000px;}
.y5d{bottom:976.530000px;}
.y54{bottom:977.865000px;}
.y5c{bottom:1026.930000px;}
.y53{bottom:1028.265000px;}
.y5b{bottom:1077.330000px;}
.y52{bottom:1078.665000px;}
.y5a{bottom:1127.730000px;}
.y51{bottom:1129.065000px;}
.y59{bottom:1178.130000px;}
.y50{bottom:1179.465000px;}
.y58{bottom:1228.530000px;}
.y4f{bottom:1229.865000px;}
.y57{bottom:1321.890000px;}
.y4e{bottom:1354.575000px;}
.y56{bottom:1406.130000px;}
.y74{bottom:1511.993550px;}
.ye{bottom:1545.990000px;}
.y6c{bottom:1576.365000px;}
.y73{bottom:1579.965000px;}
.yd{bottom:1581.990000px;}
.y6b{bottom:1613.625000px;}
.y72{bottom:1617.225000px;}
.yc{bottom:1617.990000px;}
.y6a{bottom:1650.885000px;}
.yb{bottom:1653.990000px;}
.y71{bottom:1654.530000px;}
.y69{bottom:1688.145000px;}
.ya{bottom:1689.990000px;}
.y70{bottom:1691.790000px;}
.y68{bottom:1725.405000px;}
.y9{bottom:1725.990000px;}
.y6f{bottom:1729.050000px;}
.y8{bottom:1761.990000px;}
.y67{bottom:1762.665000px;}
.y6e{bottom:1766.310000px;}
.y66{bottom:1818.825000px;}
.y6d{bottom:1822.470000px;}
.y7{bottom:1833.990000px;}
.y6{bottom:1869.990000px;}
.y5{bottom:1906.020000px;}
.y4{bottom:2158.020000px;}
.y3{bottom:2194.020000px;}
.y47{bottom:2372.295000px;}
.y46{bottom:2422.515000px;}
.y40{bottom:2432.235000px;}
.y45{bottom:2472.915000px;}
.y3f{bottom:2482.485000px;}
.y44{bottom:2523.315000px;}
.y3e{bottom:2532.885000px;}
.y43{bottom:2573.715000px;}
.y3d{bottom:2583.285000px;}
.y42{bottom:2624.115000px;}
.y3c{bottom:2633.685000px;}
.y41{bottom:2674.545000px;}
.y3b{bottom:2684.085000px;}
.y31{bottom:2791.980000px;}
.y3a{bottom:2792.670000px;}
.ybd{bottom:2920.680000px;}
.y7a{bottom:2936.985000px;}
.yba{bottom:2944.110000px;}
.ybc{bottom:2953.080000px;}
.y79{bottom:2976.765000px;}
.ybb{bottom:2985.480000px;}
.yf{bottom:2992.778365px;}
.yb9{bottom:3021.915000px;}
.yb8{bottom:3054.315000px;}
.yb7{bottom:3086.715000px;}
.y7b{bottom:3368.625000px;}
.y39{bottom:3764.190000px;}
.y2f{bottom:3765.270000px;}
.y38{bottom:3814.590000px;}
.y2e{bottom:3815.670000px;}
.y37{bottom:3864.990000px;}
.y2d{bottom:3866.070000px;}
.y36{bottom:3915.435000px;}
.y2c{bottom:3916.470000px;}
.y35{bottom:3965.835000px;}
.y2b{bottom:3966.870000px;}
.y34{bottom:4016.235000px;}
.y2a{bottom:4017.270000px;}
.y33{bottom:4066.635000px;}
.y29{bottom:4067.670000px;}
.y30{bottom:4168.470000px;}
.y32{bottom:4178.955000px;}
.y4c{bottom:4340.130000px;}
.y4b{bottom:4419.330000px;}
.y4a{bottom:4498.530000px;}
.y49{bottom:4577.730000px;}
.y48{bottom:4656.930000px;}
.y4d{bottom:4840.920000px;}
.h2{height:22.739063px;}
.h24{height:35.261390px;}
.h25{height:35.366648px;}
.h3{height:44.936719px;}
.h22{height:52.628941px;}
.h23{height:52.734198px;}
.h27{height:56.839219px;}
.h9{height:60.285123px;}
.ha{height:60.405693px;}
.h21{height:63.221174px;}
.h8{height:72.559609px;}
.hb{height:72.683642px;}
.h1f{height:76.823086px;}
.h1a{height:78.943359px;}
.h1d{height:79.590047px;}
.h1c{height:83.824645px;}
.h28{height:86.642578px;}
.h4{height:87.890273px;}
.h6{height:90.414844px;}
.h19{height:91.589062px;}
.h5{height:92.939414px;}
.h17{height:99.077344px;}
.h18{height:101.843789px;}
.h1e{height:105.703945px;}
.h14{height:108.281250px;}
.h15{height:108.389531px;}
.h16{height:111.415992px;}
.hc{height:122.625352px;}
.he{height:122.730609px;}
.h10{height:126.147656px;}
.hd{height:178.242188px;}
.hf{height:178.351875px;}
.h12{height:193.148086px;}
.h11{height:198.696094px;}
.h26{height:234.594844px;}
.h13{height:448.073438px;}
.h20{height:622.080406px;}
.h7{height:740.825153px;}
.h1b{height:873.805889px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w4{width:1116.499052px;}
.w5{width:1402.911929px;}
.w3{width:1657.552376px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x3d{left:11.284349px;}
.x35{left:17.575633px;}
.x1b{left:20.266552px;}
.x1f{left:26.740878px;}
.x1a{left:34.699772px;}
.x1c{left:43.978273px;}
.x21{left:48.184521px;}
.x1d{left:54.287717px;}
.x3c{left:62.764051px;}
.x1e{left:65.710574px;}
.x20{left:67.978653px;}
.x36{left:82.699765px;}
.x27{left:87.983947px;}
.x26{left:100.115947px;}
.x2e{left:108.287947px;}
.x22{left:112.927829px;}
.xe{left:115.632643px;}
.x2d{left:145.763947px;}
.x3e{left:158.886499px;}
.x40{left:168.246445px;}
.x41{left:173.286417px;}
.x3f{left:176.886395px;}
.x1{left:192.239947px;}
.x32{left:198.389947px;}
.x2b{left:220.424947px;}
.x42{left:278.180812px;}
.x45{left:283.580782px;}
.x44{left:286.640764px;}
.x24{left:290.669947px;}
.x43{left:291.680734px;}
.x46{left:295.640712px;}
.x38{left:323.010550px;}
.x23{left:326.849947px;}
.x2c{left:371.804947px;}
.x4a{left:384.740199px;}
.x47{left:392.660152px;}
.x49{left:399.680112px;}
.x48{left:407.780065px;}
.x37{left:461.075484px;}
.x4b{left:489.289596px;}
.x4f{left:492.349579px;}
.x4e{left:494.149569px;}
.x50{left:497.029553px;}
.x4c{left:510.169476px;}
.x4d{left:515.029448px;}
.x76{left:533.189947px;}
.x55{left:611.403894px;}
.x51{left:618.963849px;}
.x54{left:624.723817px;}
.x53{left:628.323795px;}
.x52{left:633.363766px;}
.x56{left:643.803707px;}
.x57{left:718.713274px;}
.x59{left:721.413260px;}
.x5b{left:729.693213px;}
.x58{left:742.113140px;}
.x5c{left:746.613116px;}
.x5a{left:757.593052px;}
.x18{left:801.602114px;}
.x17{left:822.633379px;}
.x28{left:829.544947px;}
.x16{left:837.478977px;}
.x5d{left:842.192563px;}
.x60{left:847.052536px;}
.x5e{left:863.072443px;}
.x5f{left:868.472412px;}
.x33{left:877.064947px;}
.x69{left:890.897288px;}
.x68{left:898.457244px;}
.x19{left:901.397530px;}
.x61{left:956.491904px;}
.x62{left:975.391796px;}
.x63{left:1074.541224px;}
.x64{left:1182.900600px;}
.x12{left:1284.702640px;}
.x67{left:1298.924933px;}
.x66{left:1300.004926px;}
.x10{left:1307.589604px;}
.x11{left:1315.424782px;}
.x65{left:1324.484785px;}
.x13{left:1328.036672px;}
.xf{left:1343.586753px;}
.x15{left:1355.872172px;}
.x14{left:1373.604415px;}
.xb{left:1774.949947px;}
.x8{left:1786.829947px;}
.xa{left:1794.029947px;}
.x2a{left:1809.899947px;}
.x75{left:1812.599947px;}
.x3a{left:1832.429947px;}
.x9{left:1834.169947px;}
.xc{left:1837.409947px;}
.x39{left:1840.709947px;}
.x73{left:1842.479947px;}
.x7{left:1847.489947px;}
.x74{left:1854.359947px;}
.x29{left:1874.519947px;}
.x4{left:1888.709947px;}
.x3{left:1900.769947px;}
.xd{left:1902.749947px;}
.x2{left:1912.649947px;}
.x5{left:1921.109947px;}
.x6{left:1969.349947px;}
.x6a{left:2064.269947px;}
.x6f{left:2065.889947px;}
.x2f{left:2169.824947px;}
.x6b{left:2173.574947px;}
.x25{left:2195.969947px;}
.x34{left:2232.379041px;}
.x30{left:2307.749947px;}
.x31{left:2350.049947px;}
.x3b{left:2351.699947px;}
.x70{left:2421.104947px;}
.x71{left:2768.684947px;}
.x6c{left:2872.829947px;}
.x72{left:3123.869947px;}
.x6d{left:3148.559947px;}
.x6e{left:3227.939947px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:35.200000pt;}
.v1{vertical-align:92.960000pt;}
.ls18{letter-spacing:-0.656000pt;}
.ls1b{letter-spacing:-0.303467pt;}
.ls1d{letter-spacing:-0.262933pt;}
.ls1e{letter-spacing:-0.198933pt;}
.ls15{letter-spacing:-0.144533pt;}
.ls17{letter-spacing:-0.033280pt;}
.ls22{letter-spacing:-0.030720pt;}
.ls21{letter-spacing:-0.023040pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls23{letter-spacing:-0.015360pt;}
.ls13{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.080640pt;}
.ls10{letter-spacing:0.089600pt;}
.ls19{letter-spacing:0.134933pt;}
.ls14{letter-spacing:0.144533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.175467pt;}
.ls20{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.213376pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.289067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.336533pt;}
.lsd{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.928000pt;}
.ls7{letter-spacing:8.303360pt;}
.ls4{letter-spacing:9.104640pt;}
.ls6{letter-spacing:19.183360pt;}
.ls12{letter-spacing:28.800000pt;}
.lsf{letter-spacing:32.640000pt;}
.lsb{letter-spacing:35.061333pt;}
.ls3{letter-spacing:35.984640pt;}
.ls0{letter-spacing:37.120000pt;}
.ls8{letter-spacing:52.463360pt;}
.lsa{letter-spacing:64.144640pt;}
.wsf{word-spacing:-65.633173pt;}
.wse{word-spacing:-65.431573pt;}
.wsa{word-spacing:-65.296640pt;}
.wsb{word-spacing:-65.280000pt;}
.wsc{word-spacing:-65.263360pt;}
.ws10{word-spacing:-64.993173pt;}
.wsd{word-spacing:-64.640640pt;}
.ws11{word-spacing:-42.383360pt;}
.ws5{word-spacing:-41.775360pt;}
.ws3{word-spacing:-41.744427pt;}
.ws8{word-spacing:-41.630827pt;}
.ws4{word-spacing:-41.599893pt;}
.ws9{word-spacing:-41.490944pt;}
.ws6{word-spacing:-41.455360pt;}
.ws7{word-spacing:-41.310827pt;}
.ws12{word-spacing:-41.192427pt;}
.ws13{word-spacing:-35.619584pt;}
.ws14{word-spacing:-35.420651pt;}
.ws1{word-spacing:-29.712640pt;}
.ws18{word-spacing:-29.162880pt;}
.ws16{word-spacing:-26.688000pt;}
.ws2{word-spacing:-20.380300pt;}
.ws21{word-spacing:-19.230720pt;}
.ws20{word-spacing:-19.215360pt;}
.ws1f{word-spacing:-19.184640pt;}
.ws1e{word-spacing:-17.984012pt;}
.ws1b{word-spacing:-17.827596pt;}
.ws1a{word-spacing:-17.792012pt;}
.ws0{word-spacing:-14.767360pt;}
.ws1d{word-spacing:-11.956232pt;}
.ws1c{word-spacing:-11.920648pt;}
.ws15{word-spacing:-0.117120pt;}
.ws22{word-spacing:0.000000pt;}
.ws17{word-spacing:1.395261pt;}
.ws19{word-spacing:630.769265pt;}
._24{margin-left:-1381.654234pt;}
._23{margin-left:-979.040638pt;}
._25{margin-left:-576.693709pt;}
._18{margin-left:-13.822720pt;}
._21{margin-left:-12.239573pt;}
._7{margin-left:-10.362240pt;}
._2{margin-left:-7.909120pt;}
._19{margin-left:-6.913280pt;}
._11{margin-left:-5.870507pt;}
._20{margin-left:-4.216320pt;}
._3{margin-left:-2.672000pt;}
._0{margin-left:-1.102080pt;}
._1{width:0.967680pt;}
._c{width:1.955627pt;}
._10{width:3.053867pt;}
._8{width:4.402133pt;}
._6{width:6.032853pt;}
._f{width:7.175360pt;}
._b{width:8.118933pt;}
._a{width:9.927893pt;}
._1b{width:14.257920pt;}
._1a{width:15.616000pt;}
._14{width:18.413013pt;}
._15{width:19.661867pt;}
._16{width:20.558293pt;}
._d{width:23.649493pt;}
._e{width:24.631040pt;}
._13{width:30.169600pt;}
._12{width:31.786453pt;}
._9{width:36.645120pt;}
._1c{width:40.125867pt;}
._17{width:52.501333pt;}
._1e{width:56.691200pt;}
._1d{width:57.601920pt;}
._1f{width:64.511360pt;}
._5{width:71.167147pt;}
._4{width:72.183253pt;}
._26{width:228.480149pt;}
._28{width:427.282347pt;}
._27{width:737.072427pt;}
._22{width:4253.560107pt;}
.fs0{font-size:26.880000pt;}
.fs16{font-size:42.880028pt;}
.fs17{font-size:43.008028pt;}
.fs1{font-size:53.120000pt;}
.fs14{font-size:64.000042pt;}
.fs15{font-size:64.128042pt;}
.fs18{font-size:69.120000pt;}
.fs4{font-size:73.310432pt;}
.fs5{font-size:73.457053pt;}
.fs13{font-size:74.880049pt;}
.fs12{font-size:85.120000pt;}
.fs3{font-size:85.773206pt;}
.fs6{font-size:85.919827pt;}
.fs11{font-size:92.877730pt;}
.fs10{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fsf{font-size:117.120000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs8{font-size:208.000000pt;}
.fsa{font-size:208.128000pt;}
.fsb{font-size:234.880000pt;}
.fsc{font-size:522.880000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:13.041406pt;}
.y1e{bottom:18.091042pt;}
.y13{bottom:18.934035pt;}
.y77{bottom:19.711656pt;}
.y96{bottom:32.240752pt;}
.y1d{bottom:43.383159pt;}
.y12{bottom:44.262789pt;}
.y65{bottom:49.280000pt;}
.y2{bottom:59.648000pt;}
.y62{bottom:68.224000pt;}
.y1c{bottom:68.675254pt;}
.y11{bottom:69.554888pt;}
.y1{bottom:76.768000pt;}
.y64{bottom:89.920000pt;}
.y61{bottom:106.144000pt;}
.y1b{bottom:113.394615pt;}
.y10{bottom:114.274252pt;}
.y63{bottom:114.560000pt;}
.y60{bottom:144.546667pt;}
.y23{bottom:145.468072pt;}
.y22{bottom:170.752529pt;}
.y21{bottom:196.059902pt;}
.y7c{bottom:200.264603pt;}
.y8f{bottom:206.708865pt;}
.y20{bottom:221.382552pt;}
.y8e{bottom:225.908878pt;}
.y75{bottom:232.454671pt;}
.y1a{bottom:244.078007pt;}
.y8d{bottom:245.108890pt;}
.yb6{bottom:247.226667pt;}
.y8c{bottom:256.628898pt;}
.y88{bottom:264.335570pt;}
.y1f{bottom:266.101913pt;}
.y19{bottom:269.370103pt;}
.y8b{bottom:269.455573pt;}
.y8a{bottom:275.855577pt;}
.yb5{bottom:279.546667pt;}
.y87{bottom:283.535582pt;}
.y83{bottom:287.028918pt;}
.y89{bottom:288.655586pt;}
.y94{bottom:301.042260pt;}
.y86{bottom:302.735595pt;}
.y95{bottom:304.082262pt;}
.y82{bottom:306.255597pt;}
.y18{bottom:314.120020pt;}
.y93{bottom:320.242273pt;}
.y7f{bottom:321.228940pt;}
.y85{bottom:321.935607pt;}
.y91{bottom:323.282275pt;}
.y81{bottom:325.455610pt;}
.y92{bottom:339.442285pt;}
.y7e{bottom:340.428953pt;}
.y84{bottom:341.135620pt;}
.y90{bottom:342.482287pt;}
.y80{bottom:344.655622pt;}
.ya9{bottom:344.706667pt;}
.ya8{bottom:365.506667pt;}
.y78{bottom:380.122074pt;}
.ya7{bottom:386.306667pt;}
.ya6{bottom:407.106667pt;}
.y7d{bottom:416.495669pt;}
.ya5{bottom:427.906667pt;}
.ya4{bottom:448.706667pt;}
.yb2{bottom:453.733333pt;}
.y28{bottom:458.572330pt;}
.ya3{bottom:469.506667pt;}
.yb1{bottom:474.533333pt;}
.y27{bottom:483.864440pt;}
.ya2{bottom:490.306667pt;}
.yb0{bottom:495.333333pt;}
.yb4{bottom:503.226667pt;}
.y26{bottom:509.156536pt;}
.ya1{bottom:511.106667pt;}
.yaf{bottom:516.133333pt;}
.y17{bottom:517.220467pt;}
.y76{bottom:517.416456pt;}
.ya0{bottom:531.906667pt;}
.y25{bottom:534.448642pt;}
.yb3{bottom:535.226667pt;}
.yae{bottom:536.933333pt;}
.y16{bottom:542.512570pt;}
.y9f{bottom:552.706667pt;}
.yad{bottom:557.733333pt;}
.y15{bottom:567.804664pt;}
.y9e{bottom:573.506667pt;}
.yac{bottom:578.533333pt;}
.y24{bottom:579.213818pt;}
.y9d{bottom:594.306667pt;}
.yab{bottom:599.333333pt;}
.y14{bottom:612.524029pt;}
.y9c{bottom:615.106667pt;}
.yaa{bottom:620.133333pt;}
.y99{bottom:666.653333pt;}
.y9a{bottom:666.693333pt;}
.y98{bottom:698.653333pt;}
.y9b{bottom:698.693333pt;}
.y5f{bottom:778.426667pt;}
.y5e{bottom:823.226667pt;}
.y55{bottom:824.573333pt;}
.y5d{bottom:868.026667pt;}
.y54{bottom:869.213333pt;}
.y5c{bottom:912.826667pt;}
.y53{bottom:914.013333pt;}
.y5b{bottom:957.626667pt;}
.y52{bottom:958.813333pt;}
.y5a{bottom:1002.426667pt;}
.y51{bottom:1003.613333pt;}
.y59{bottom:1047.226667pt;}
.y50{bottom:1048.413333pt;}
.y58{bottom:1092.026667pt;}
.y4f{bottom:1093.213333pt;}
.y57{bottom:1175.013333pt;}
.y4e{bottom:1204.066667pt;}
.y56{bottom:1249.893333pt;}
.y74{bottom:1343.994267pt;}
.ye{bottom:1374.213333pt;}
.y6c{bottom:1401.213333pt;}
.y73{bottom:1404.413333pt;}
.yd{bottom:1406.213333pt;}
.y6b{bottom:1434.333333pt;}
.y72{bottom:1437.533333pt;}
.yc{bottom:1438.213333pt;}
.y6a{bottom:1467.453333pt;}
.yb{bottom:1470.213333pt;}
.y71{bottom:1470.693333pt;}
.y69{bottom:1500.573333pt;}
.ya{bottom:1502.213333pt;}
.y70{bottom:1503.813333pt;}
.y68{bottom:1533.693333pt;}
.y9{bottom:1534.213333pt;}
.y6f{bottom:1536.933333pt;}
.y8{bottom:1566.213333pt;}
.y67{bottom:1566.813333pt;}
.y6e{bottom:1570.053333pt;}
.y66{bottom:1616.733333pt;}
.y6d{bottom:1619.973333pt;}
.y7{bottom:1630.213333pt;}
.y6{bottom:1662.213333pt;}
.y5{bottom:1694.240000pt;}
.y4{bottom:1918.240000pt;}
.y3{bottom:1950.240000pt;}
.y47{bottom:2108.706667pt;}
.y46{bottom:2153.346667pt;}
.y40{bottom:2161.986667pt;}
.y45{bottom:2198.146667pt;}
.y3f{bottom:2206.653333pt;}
.y44{bottom:2242.946667pt;}
.y3e{bottom:2251.453333pt;}
.y43{bottom:2287.746667pt;}
.y3d{bottom:2296.253333pt;}
.y42{bottom:2332.546667pt;}
.y3c{bottom:2341.053333pt;}
.y41{bottom:2377.373333pt;}
.y3b{bottom:2385.853333pt;}
.y31{bottom:2481.760000pt;}
.y3a{bottom:2482.373333pt;}
.ybd{bottom:2596.160000pt;}
.y7a{bottom:2610.653333pt;}
.yba{bottom:2616.986667pt;}
.ybc{bottom:2624.960000pt;}
.y79{bottom:2646.013333pt;}
.ybb{bottom:2653.760000pt;}
.yf{bottom:2660.247436pt;}
.yb9{bottom:2686.146667pt;}
.yb8{bottom:2714.946667pt;}
.yb7{bottom:2743.746667pt;}
.y7b{bottom:2994.333333pt;}
.y39{bottom:3345.946667pt;}
.y2f{bottom:3346.906667pt;}
.y38{bottom:3390.746667pt;}
.y2e{bottom:3391.706667pt;}
.y37{bottom:3435.546667pt;}
.y2d{bottom:3436.506667pt;}
.y36{bottom:3480.386667pt;}
.y2c{bottom:3481.306667pt;}
.y35{bottom:3525.186667pt;}
.y2b{bottom:3526.106667pt;}
.y34{bottom:3569.986667pt;}
.y2a{bottom:3570.906667pt;}
.y33{bottom:3614.786667pt;}
.y29{bottom:3615.706667pt;}
.y30{bottom:3705.306667pt;}
.y32{bottom:3714.626667pt;}
.y4c{bottom:3857.893333pt;}
.y4b{bottom:3928.293333pt;}
.y4a{bottom:3998.693333pt;}
.y49{bottom:4069.093333pt;}
.y48{bottom:4139.493333pt;}
.y4d{bottom:4303.040000pt;}
.h2{height:20.212500pt;}
.h24{height:31.343458pt;}
.h25{height:31.437020pt;}
.h3{height:39.943750pt;}
.h22{height:46.781281pt;}
.h23{height:46.874843pt;}
.h27{height:50.523750pt;}
.h9{height:53.586776pt;}
.ha{height:53.693949pt;}
.h21{height:56.196599pt;}
.h8{height:64.497430pt;}
.hb{height:64.607682pt;}
.h1f{height:68.287188pt;}
.h1a{height:70.171875pt;}
.h1d{height:70.746708pt;}
.h1c{height:74.510796pt;}
.h28{height:77.015625pt;}
.h4{height:78.124687pt;}
.h6{height:80.368750pt;}
.h19{height:81.412500pt;}
.h5{height:82.612812pt;}
.h17{height:88.068750pt;}
.h18{height:90.527812pt;}
.h1e{height:93.959062pt;}
.h14{height:96.250000pt;}
.h15{height:96.346250pt;}
.h16{height:99.036438pt;}
.hc{height:109.000312pt;}
.he{height:109.093875pt;}
.h10{height:112.131250pt;}
.hd{height:158.437500pt;}
.hf{height:158.535000pt;}
.h12{height:171.687187pt;}
.h11{height:176.618750pt;}
.h26{height:208.528750pt;}
.h13{height:398.287500pt;}
.h20{height:552.960361pt;}
.h7{height:658.511247pt;}
.h1b{height:776.716346pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w4{width:992.443602pt;}
.w5{width:1247.032826pt;}
.w3{width:1473.379890pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x3d{left:10.030532pt;}
.x35{left:15.622785pt;}
.x1b{left:18.014713pt;}
.x1f{left:23.769669pt;}
.x1a{left:30.844242pt;}
.x1c{left:39.091798pt;}
.x21{left:42.830686pt;}
.x1d{left:48.255748pt;}
.x3c{left:55.790268pt;}
.x1e{left:58.409399pt;}
.x20{left:60.425469pt;}
.x36{left:73.510903pt;}
.x27{left:78.207953pt;}
.x26{left:88.991953pt;}
.x2e{left:96.255953pt;}
.x22{left:100.380292pt;}
.xe{left:102.784572pt;}
.x2d{left:129.567953pt;}
.x3e{left:141.232443pt;}
.x40{left:149.552396pt;}
.x41{left:154.032370pt;}
.x3f{left:157.232351pt;}
.x1{left:170.879953pt;}
.x32{left:176.346619pt;}
.x2b{left:195.933286pt;}
.x42{left:247.271832pt;}
.x45{left:252.071806pt;}
.x44{left:254.791790pt;}
.x24{left:258.373286pt;}
.x43{left:259.271764pt;}
.x46{left:262.791744pt;}
.x38{left:287.120489pt;}
.x23{left:290.533286pt;}
.x2c{left:330.493286pt;}
.x4a{left:341.991288pt;}
.x47{left:349.031246pt;}
.x49{left:355.271211pt;}
.x48{left:362.471169pt;}
.x37{left:409.844875pt;}
.x4b{left:434.924085pt;}
.x4f{left:437.644070pt;}
.x4e{left:439.244061pt;}
.x50{left:441.804047pt;}
.x4c{left:453.483978pt;}
.x4d{left:457.803954pt;}
.x76{left:473.946619pt;}
.x55{left:543.470128pt;}
.x51{left:550.190088pt;}
.x54{left:555.310059pt;}
.x53{left:558.510040pt;}
.x52{left:562.990014pt;}
.x56{left:572.269962pt;}
.x57{left:638.856244pt;}
.x59{left:641.256231pt;}
.x5b{left:648.616189pt;}
.x58{left:659.656125pt;}
.x5c{left:663.656103pt;}
.x5a{left:673.416046pt;}
.x18{left:712.535212pt;}
.x17{left:731.229670pt;}
.x28{left:737.373286pt;}
.x16{left:744.425757pt;}
.x5d{left:748.615611pt;}
.x60{left:752.935587pt;}
.x5e{left:767.175505pt;}
.x5f{left:771.975477pt;}
.x33{left:779.613286pt;}
.x69{left:791.908701pt;}
.x68{left:798.628662pt;}
.x19{left:801.242249pt;}
.x61{left:850.215026pt;}
.x62{left:867.014930pt;}
.x63{left:955.147755pt;}
.x64{left:1051.467200pt;}
.x12{left:1141.957903pt;}
.x67{left:1154.599940pt;}
.x66{left:1155.559934pt;}
.x10{left:1162.301871pt;}
.x11{left:1169.266473pt;}
.x65{left:1177.319809pt;}
.x13{left:1180.477042pt;}
.xf{left:1194.299336pt;}
.x15{left:1205.219708pt;}
.x14{left:1220.981702pt;}
.xb{left:1577.733286pt;}
.x8{left:1588.293286pt;}
.xa{left:1594.693286pt;}
.x2a{left:1608.799953pt;}
.x75{left:1611.199953pt;}
.x3a{left:1628.826619pt;}
.x9{left:1630.373286pt;}
.xc{left:1633.253286pt;}
.x39{left:1636.186619pt;}
.x73{left:1637.759953pt;}
.x7{left:1642.213286pt;}
.x74{left:1648.319953pt;}
.x29{left:1666.239953pt;}
.x4{left:1678.853286pt;}
.x3{left:1689.573286pt;}
.xd{left:1691.333286pt;}
.x2{left:1700.133286pt;}
.x5{left:1707.653286pt;}
.x6{left:1750.533286pt;}
.x6a{left:1834.906619pt;}
.x6f{left:1836.346619pt;}
.x2f{left:1928.733286pt;}
.x6b{left:1932.066619pt;}
.x25{left:1951.973286pt;}
.x34{left:1984.336926pt;}
.x30{left:2051.333286pt;}
.x31{left:2088.933286pt;}
.x3b{left:2090.399953pt;}
.x70{left:2152.093286pt;}
.x71{left:2461.053286pt;}
.x6c{left:2553.626619pt;}
.x72{left:2776.773286pt;}
.x6d{left:2798.719953pt;}
.x6e{left:2869.279953pt;}
}




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