
    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_7393d28fd4ba7fbcf5724895.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c7766d85b3f9194140fd7efc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a5f896128e17c849f30c3a5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080078;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_b965fbd12eef7901fdfdfe88.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_215bd37e17e9dd847780e475.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_a4089ab68ef7a860f09489e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.230469;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_e262e0b0c79ccbc67b7ca25c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080078;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.224490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224490,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m3{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-37.440000px;}
.v8{vertical-align:-23.760000px;}
.v5{vertical-align:-13.680000px;}
.v3{vertical-align:-2.880000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v6{vertical-align:13.680000px;}
.v4{vertical-align:41.760000px;}
.v2{vertical-align:50.400000px;}
.ls26{letter-spacing:-10.200000px;}
.ls28{letter-spacing:-0.792000px;}
.ls2e{letter-spacing:-0.297778px;}
.ls25{letter-spacing:-0.241800px;}
.ls19{letter-spacing:-0.184200px;}
.ls1f{letter-spacing:-0.028800px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.023040px;}
.ls20{letter-spacing:0.040320px;}
.ls4{letter-spacing:0.126600px;}
.ls12{letter-spacing:0.138240px;}
.ls1{letter-spacing:0.148800px;}
.ls2d{letter-spacing:0.201361px;}
.ls6{letter-spacing:0.239040px;}
.ls1a{letter-spacing:0.285000px;}
.ls27{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.348000px;}
.ls8{letter-spacing:1.405440px;}
.ls7{letter-spacing:1.578240px;}
.ls29{letter-spacing:1.728000px;}
.lsa{letter-spacing:2.125440px;}
.ls2a{letter-spacing:2.200320px;}
.ls10{letter-spacing:3.281040px;}
.ls17{letter-spacing:3.304080px;}
.ls21{letter-spacing:3.890160px;}
.lsf{letter-spacing:4.001040px;}
.lsd{letter-spacing:4.024080px;}
.lsb{letter-spacing:4.610160px;}
.ls2{letter-spacing:7.012800px;}
.ls3{letter-spacing:7.732800px;}
.ls18{letter-spacing:10.180800px;}
.ls9{letter-spacing:10.319040px;}
.ls15{letter-spacing:10.370160px;}
.ls24{letter-spacing:10.900800px;}
.ls23{letter-spacing:13.878720px;}
.ls1c{letter-spacing:14.598720px;}
.ls13{letter-spacing:17.429040px;}
.ls11{letter-spacing:17.519040px;}
.ls1e{letter-spacing:17.570160px;}
.lse{letter-spacing:17.704080px;}
.ls2b{letter-spacing:17.870400px;}
.ls1b{letter-spacing:18.198720px;}
.lsc{letter-spacing:18.290160px;}
.ls1d{letter-spacing:18.318720px;}
.ls22{letter-spacing:18.424080px;}
.ls14{letter-spacing:19.589040px;}
.ls2c{letter-spacing:28.240822px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws14{word-spacing:-29.686092px;}
.ws7{word-spacing:-14.857800px;}
.ws9{word-spacing:-14.613120px;}
.ws5{word-spacing:-14.572800px;}
.ws8{word-spacing:-14.544000px;}
.ws6{word-spacing:-14.388600px;}
.ws3{word-spacing:-13.495200px;}
.ws1{word-spacing:-13.296000px;}
.ws2{word-spacing:-13.273800px;}
.ws18{word-spacing:-1.667620px;}
.wsc{word-spacing:-0.095760px;}
.wsa{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.707760px;}
.ws10{word-spacing:11.143045px;}
.ws11{word-spacing:14.989393px;}
.ws17{word-spacing:17.236991px;}
.ws19{word-spacing:18.712760px;}
.ws13{word-spacing:22.949203px;}
.ws15{word-spacing:23.415547px;}
.ws12{word-spacing:26.795551px;}
.ws16{word-spacing:27.664288px;}
.wse{word-spacing:196.902446px;}
.wsd{word-spacing:246.943502px;}
.wsf{word-spacing:732.023768px;}
._24{margin-left:-27.522635px;}
._c{margin-left:-12.389760px;}
._10{margin-left:-10.769520px;}
._f{margin-left:-9.132480px;}
._9{margin-left:-8.107200px;}
._7{margin-left:-5.757600px;}
._e{margin-left:-4.287360px;}
._b{margin-left:-3.149280px;}
._a{margin-left:-1.585440px;}
._0{width:1.211040px;}
._8{width:2.430960px;}
._5{width:3.698880px;}
._6{width:7.012800px;}
._18{width:8.049840px;}
._d{width:9.100080px;}
._13{width:10.464480px;}
._15{width:11.497440px;}
._21{width:13.998895px;}
._17{width:15.258240px;}
._11{width:16.698240px;}
._19{width:17.699040px;}
._14{width:18.750240px;}
._12{width:19.992960px;}
._26{width:23.360577px;}
._22{width:24.584263px;}
._23{width:26.203532px;}
._27{width:27.917628px;}
._25{width:29.385035px;}
._2f{width:36.448860px;}
._2a{width:40.552513px;}
._38{width:43.954162px;}
._29{width:49.687527px;}
._3c{width:51.908561px;}
._16{width:53.677440px;}
._3d{width:55.206906px;}
._2e{width:56.756464px;}
._2c{width:59.855581px;}
._36{width:67.913284px;}
._28{width:69.662071px;}
._37{width:71.477268px;}
._2b{width:73.757332px;}
._3a{width:80.272855px;}
._32{width:85.091243px;}
._3e{width:86.279238px;}
._30{width:94.875597px;}
._33{width:98.454338px;}
._34{width:101.885503px;}
._2d{width:105.538033px;}
._35{width:107.345851px;}
._3b{width:110.717985px;}
._39{width:114.296727px;}
._31{width:116.820293px;}
._1b{width:250.331869px;}
._1e{width:295.469763px;}
._1a{width:360.276240px;}
._1d{width:403.150913px;}
._1c{width:518.916551px;}
._1f{width:641.809964px;}
._20{width:857.648995px;}
._4{width:2435.520000px;}
._2{width:2470.800000px;}
._3{width:2542.776000px;}
._1{width:2578.776000px;}
.fc5{color:transparent;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(36,63,96);}
.fc1{color:rgb(54,95,145);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:6.395002px;}
.fsd{font-size:7.378849px;}
.fsb{font-size:10.330388px;}
.fse{font-size:17.217314px;}
.fs9{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs2{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:1.352789px;}
.yb3{bottom:1.650000px;}
.ye0{bottom:1.844712px;}
.yf2{bottom:1.967693px;}
.y107{bottom:2.459616px;}
.y105{bottom:2.582545px;}
.yd1{bottom:2.582597px;}
.yf6{bottom:2.585877px;}
.y102{bottom:2.586696px;}
.ycf{bottom:2.587516px;}
.yd3{bottom:3.812405px;}
.ydf{bottom:4.304328px;}
.yf1{bottom:4.427309px;}
.yb9{bottom:13.170000px;}
.yb0{bottom:14.070000px;}
.yb7{bottom:14.115000px;}
.yb5{bottom:14.616000px;}
.yae{bottom:14.835000px;}
.yb2{bottom:23.790000px;}
.y61{bottom:27.000000px;}
.y60{bottom:47.160000px;}
.yfc{bottom:48.352395px;}
.y2a{bottom:48.420000px;}
.y4{bottom:48.780000px;}
.yc9{bottom:48.810000px;}
.y83{bottom:55.620000px;}
.y3{bottom:63.540000px;}
.yc8{bottom:63.570000px;}
.y5f{bottom:67.500000px;}
.yf8{bottom:67.914543px;}
.y29{bottom:78.300000px;}
.y5e{bottom:87.660000px;}
.yf3{bottom:88.091595px;}
.y5d{bottom:107.820000px;}
.y28{bottom:108.360000px;}
.yb4{bottom:120.960000px;}
.y5c{bottom:128.196000px;}
.y27{bottom:138.456000px;}
.y5b{bottom:148.356000px;}
.yb1{bottom:151.920000px;}
.y26{bottom:168.330000px;}
.y5a{bottom:168.510000px;}
.ye1{bottom:187.132142px;}
.y59{bottom:188.850000px;}
.y25{bottom:198.390000px;}
.y8a{bottom:207.930000px;}
.y58{bottom:209.010000px;}
.y87{bottom:222.690000px;}
.y24{bottom:228.450000px;}
.y57{bottom:229.170000px;}
.yaf{bottom:235.260000px;}
.yd5{bottom:246.310508px;}
.y56{bottom:249.510000px;}
.y94{bottom:254.730000px;}
.y23{bottom:258.510000px;}
.ycd{bottom:259.354673px;}
.y9d{bottom:261.570000px;}
.ycc{bottom:268.335552px;}
.y55{bottom:269.670000px;}
.y7b{bottom:272.730000px;}
.ycb{bottom:272.885842px;}
.y9c{bottom:287.310000px;}
.y22{bottom:288.390000px;}
.y54{bottom:289.830000px;}
.y53{bottom:310.170000px;}
.yb8{bottom:310.500000px;}
.yba{bottom:311.040000px;}
.yab{bottom:315.750000px;}
.y21{bottom:318.450000px;}
.y52{bottom:330.330000px;}
.y74{bottom:331.770000px;}
.y20{bottom:348.510000px;}
.y51{bottom:350.670000px;}
.y50{bottom:370.830000px;}
.y1f{bottom:378.390000px;}
.y86{bottom:380.415000px;}
.y78{bottom:386.355000px;}
.y4f{bottom:391.035000px;}
.yb6{bottom:394.020000px;}
.yca{bottom:395.310380px;}
.y104{bottom:395.433361px;}
.y103{bottom:401.955391px;}
.y101{bottom:408.473374px;}
.y1e{bottom:408.495000px;}
.y4e{bottom:411.375000px;}
.y100{bottom:414.995129px;}
.y10b{bottom:420.555000px;}
.yff{bottom:421.518031px;}
.yfe{bottom:428.036014px;}
.y4d{bottom:431.535000px;}
.yfd{bottom:434.557276px;}
.y1d{bottom:438.555000px;}
.yfb{bottom:441.080179px;}
.yfa{bottom:447.598162px;}
.y4c{bottom:451.695000px;}
.yf9{bottom:454.119424px;}
.yf7{bottom:460.642326px;}
.y7d{bottom:461.595000px;}
.ya8{bottom:463.215000px;}
.yf5{bottom:467.160309px;}
.y1c{bottom:468.435000px;}
.y9b{bottom:468.615000px;}
.y4b{bottom:472.035000px;}
.yad{bottom:472.500000px;}
.yf4{bottom:473.681572px;}
.y7a{bottom:479.955000px;}
.yf0{bottom:480.204474px;}
.yef{bottom:488.078526px;}
.y4a{bottom:492.195000px;}
.yee{bottom:494.596509px;}
.y1b{bottom:498.495000px;}
.ybe{bottom:499.755000px;}
.yed{bottom:501.119411px;}
.yec{bottom:507.640673px;}
.y82{bottom:509.835000px;}
.y49{bottom:512.355000px;}
.yeb{bottom:514.158656px;}
.y85{bottom:515.415000px;}
.yaa{bottom:519.195000px;}
.yea{bottom:520.681559px;}
.yc0{bottom:521.715000px;}
.ye9{bottom:527.202821px;}
.y1a{bottom:528.555000px;}
.y48{bottom:532.695000px;}
.ye8{bottom:533.720804px;}
.ye7{bottom:540.243706px;}
.ye6{bottom:546.764969px;}
.y5{bottom:549.435000px;}
.y47{bottom:552.855000px;}
.ye5{bottom:553.282952px;}
.y89{bottom:554.475000px;}
.y19{bottom:558.435000px;}
.ye4{bottom:559.805854px;}
.ye3{bottom:566.327117px;}
.ye2{bottom:572.845100px;}
.y46{bottom:573.015000px;}
.ya0{bottom:576.975000px;}
.yde{bottom:579.368002px;}
.ydd{bottom:586.873111px;}
.y18{bottom:588.495000px;}
.y77{bottom:589.575000px;}
.ybd{bottom:591.555000px;}
.y45{bottom:593.355000px;}
.ydc{bottom:593.391094px;}
.ydb{bottom:599.913996px;}
.y9f{bottom:602.535000px;}
.y73{bottom:602.715000px;}
.ybc{bottom:604.515000px;}
.yda{bottom:606.435259px;}
.yc5{bottom:607.215000px;}
.yd9{bottom:612.953242px;}
.y44{bottom:613.515000px;}
.y17{bottom:618.555000px;}
.yd8{bottom:619.476144px;}
.yd7{bottom:625.997406px;}
.yd6{bottom:632.515389px;}
.y43{bottom:633.705000px;}
.yd2{bottom:639.038292px;}
.y81{bottom:641.985000px;}
.yc3{bottom:642.165000px;}
.yd0{bottom:645.559554px;}
.y16{bottom:648.645000px;}
.yce{bottom:652.077537px;}
.y42{bottom:654.045000px;}
.ybf{bottom:656.745000px;}
.y41{bottom:674.205000px;}
.y15{bottom:678.525000px;}
.y106{bottom:679.761338px;}
.y40{bottom:694.545000px;}
.y14{bottom:708.585000px;}
.yac{bottom:712.005000px;}
.y3f{bottom:714.705000px;}
.ya7{bottom:733.245000px;}
.y3e{bottom:734.865000px;}
.y13{bottom:738.645000px;}
.y99{bottom:748.005000px;}
.y10c{bottom:752.145000px;}
.y3d{bottom:755.205000px;}
.y91{bottom:755.565000px;}
.y9e{bottom:761.325000px;}
.y12{bottom:768.525000px;}
.y9a{bottom:775.005000px;}
.y3c{bottom:775.365000px;}
.y108{bottom:784.230000px;}
.yc7{bottom:786.210000px;}
.yc2{bottom:794.805000px;}
.y98{bottom:794.985000px;}
.y3b{bottom:795.525000px;}
.y11{bottom:798.585000px;}
.y80{bottom:809.925000px;}
.y76{bottom:815.505000px;}
.y3a{bottom:815.865000px;}
.y88{bottom:826.305000px;}
.y72{bottom:828.465000px;}
.y10{bottom:828.645000px;}
.y39{bottom:836.025000px;}
.y93{bottom:840.525000px;}
.y92{bottom:851.685000px;}
.y8d{bottom:855.825000px;}
.y38{bottom:856.185000px;}
.yf{bottom:858.525000px;}
.y8f{bottom:860.865000px;}
.y8e{bottom:861.765000px;}
.y90{bottom:866.265000px;}
.y37{bottom:876.525000px;}
.ya9{bottom:877.425000px;}
.y71{bottom:878.685000px;}
.y97{bottom:884.850000px;}
.ye{bottom:888.630000px;}
.y7e{bottom:889.710000px;}
.y36{bottom:896.730000px;}
.y70{bottom:899.070000px;}
.ya3{bottom:901.950000px;}
.y35{bottom:916.890000px;}
.yd{bottom:918.690000px;}
.y6f{bottom:919.230000px;}
.ya2{bottom:927.690000px;}
.y10a{bottom:931.650000px;}
.y8c{bottom:934.170000px;}
.y79{bottom:934.710000px;}
.y34{bottom:937.230000px;}
.y6e{bottom:939.390000px;}
.y8b{bottom:944.610000px;}
.yc{bottom:948.570000px;}
.yc6{bottom:957.210000px;}
.y33{bottom:957.390000px;}
.y6d{bottom:959.730000px;}
.yc4{bottom:967.470000px;}
.ybb{bottom:974.850000px;}
.y32{bottom:977.550000px;}
.yb{bottom:978.630000px;}
.y6c{bottom:979.890000px;}
.ya6{bottom:980.790000px;}
.y7c{bottom:989.970000px;}
.y31{bottom:997.890000px;}
.y6b{bottom:1000.050000px;}
.ya{bottom:1008.690000px;}
.y30{bottom:1018.050000px;}
.y96{bottom:1019.850000px;}
.y6a{bottom:1020.390000px;}
.y2f{bottom:1038.390000px;}
.y9{bottom:1038.750000px;}
.y69{bottom:1040.550000px;}
.yc1{bottom:1042.350000px;}
.y2e{bottom:1058.550000px;}
.y68{bottom:1060.890000px;}
.y84{bottom:1064.850000px;}
.y8{bottom:1068.630000px;}
.y65{bottom:1073.310000px;}
.y2d{bottom:1078.710000px;}
.y67{bottom:1081.050000px;}
.y64{bottom:1093.470000px;}
.y10d{bottom:1098.330000px;}
.y7{bottom:1098.690000px;}
.y66{bottom:1101.210000px;}
.y2c{bottom:1102.290000px;}
.ya1{bottom:1108.950000px;}
.y95{bottom:1109.850000px;}
.y63{bottom:1113.810000px;}
.y109{bottom:1122.270000px;}
.y6{bottom:1125.330000px;}
.ya4{bottom:1127.850000px;}
.y7f{bottom:1128.030000px;}
.ya5{bottom:1130.910000px;}
.y75{bottom:1131.450000px;}
.y2b{bottom:1132.350000px;}
.y1{bottom:1132.530000px;}
.y62{bottom:1133.970000px;}
.y2{bottom:1156.860000px;}
.h23{height:6.360654px;}
.h26{height:6.395002px;}
.h25{height:6.399102px;}
.h27{height:7.339216px;}
.h28{height:7.382948px;}
.h24{height:7.555393px;}
.h29{height:7.751890px;}
.h2a{height:7.997852px;}
.h22{height:10.577551px;}
.h2b{height:17.629251px;}
.h17{height:39.600000px;}
.h1a{height:39.780000px;}
.h18{height:39.960000px;}
.hd{height:40.948242px;}
.h4{height:41.535703px;}
.h15{height:45.992812px;}
.ha{height:48.224531px;}
.h8{height:51.998203px;}
.he{height:52.417969px;}
.h14{height:55.681172px;}
.h1b{height:57.636562px;}
.hb{height:61.329023px;}
.h7{height:62.648438px;}
.h1c{height:62.773734px;}
.hc{height:65.884219px;}
.h2{height:67.824844px;}
.h13{height:69.085898px;}
.h9{height:69.715898px;}
.h12{height:71.104219px;}
.h19{height:73.298672px;}
.h3{height:73.620000px;}
.h20{height:73.656000px;}
.h5{height:77.342344px;}
.h1d{height:83.322422px;}
.h16{height:94.864219px;}
.h6{height:95.245664px;}
.h11{height:97.744219px;}
.h10{height:136.624219px;}
.hf{height:145.264219px;}
.h21{height:292.448370px;}
.h1e{height:892.440000px;}
.h1f{height:892.500000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:44.339654px;}
.wc{width:66.635922px;}
.w5{width:129.060000px;}
.w7{width:129.420000px;}
.w3{width:189.030000px;}
.w6{width:212.760000px;}
.w4{width:212.940000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.wa{width:1210.871843px;}
.w9{width:1263.000000px;}
.w8{width:1263.060000px;}
.x0{left:0.000000px;}
.x3a{left:1.354722px;}
.x37{left:2.463132px;}
.x34{left:5.418890px;}
.x39{left:6.527299px;}
.x27{left:12.855000px;}
.x20{left:15.735000px;}
.x24{left:16.815000px;}
.x31{left:21.423157px;}
.x36{left:25.487324px;}
.x22{left:29.775000px;}
.x25{left:45.075000px;}
.x2a{left:48.345000px;}
.x38{left:49.758544px;}
.x35{left:51.852206px;}
.x32{left:71.192716px;}
.x33{left:72.424282px;}
.x4{left:81.900000px;}
.x6{left:106.415987px;}
.xd{left:111.455987px;}
.x2e{left:113.975987px;}
.xc{left:118.835987px;}
.x10{left:123.875987px;}
.x2f{left:131.795987px;}
.xe{left:133.595987px;}
.x8{left:136.835987px;}
.x3{left:140.430000px;}
.x11{left:142.415987px;}
.xa{left:145.835987px;}
.x9{left:163.829987px;}
.xb{left:172.649987px;}
.x5{left:222.149987px;}
.x23{left:241.740000px;}
.x21{left:244.620000px;}
.x14{left:250.769987px;}
.x12{left:274.394987px;}
.x1a{left:279.254987px;}
.x28{left:286.920000px;}
.x1d{left:315.794987px;}
.x1e{left:319.214987px;}
.x2d{left:334.334987px;}
.x2b{left:340.994987px;}
.x1f{left:355.320000px;}
.x1c{left:370.334987px;}
.x19{left:395.894987px;}
.x2c{left:398.594987px;}
.x26{left:420.300000px;}
.x1b{left:436.034987px;}
.x1{left:446.324987px;}
.x29{left:508.500000px;}
.x18{left:532.904987px;}
.x13{left:552.344987px;}
.x15{left:555.764987px;}
.x30{left:573.375000px;}
.x16{left:593.024987px;}
.xf{left:617.009987px;}
.x17{left:634.469987px;}
.x2{left:658.410000px;}
.x7{left:785.489987px;}
.x3b{left:1043.610000px;}
@media print{
.v9{vertical-align:-33.280000pt;}
.v8{vertical-align:-21.120000pt;}
.v5{vertical-align:-12.160000pt;}
.v3{vertical-align:-2.560000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v6{vertical-align:12.160000pt;}
.v4{vertical-align:37.120000pt;}
.v2{vertical-align:44.800000pt;}
.ls26{letter-spacing:-9.066667pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls2e{letter-spacing:-0.264691pt;}
.ls25{letter-spacing:-0.214933pt;}
.ls19{letter-spacing:-0.163733pt;}
.ls1f{letter-spacing:-0.025600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.020480pt;}
.ls20{letter-spacing:0.035840pt;}
.ls4{letter-spacing:0.112533pt;}
.ls12{letter-spacing:0.122880pt;}
.ls1{letter-spacing:0.132267pt;}
.ls2d{letter-spacing:0.178987pt;}
.ls6{letter-spacing:0.212480pt;}
.ls1a{letter-spacing:0.253333pt;}
.ls27{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.309333pt;}
.ls8{letter-spacing:1.249280pt;}
.ls7{letter-spacing:1.402880pt;}
.ls29{letter-spacing:1.536000pt;}
.lsa{letter-spacing:1.889280pt;}
.ls2a{letter-spacing:1.955840pt;}
.ls10{letter-spacing:2.916480pt;}
.ls17{letter-spacing:2.936960pt;}
.ls21{letter-spacing:3.457920pt;}
.lsf{letter-spacing:3.556480pt;}
.lsd{letter-spacing:3.576960pt;}
.lsb{letter-spacing:4.097920pt;}
.ls2{letter-spacing:6.233600pt;}
.ls3{letter-spacing:6.873600pt;}
.ls18{letter-spacing:9.049600pt;}
.ls9{letter-spacing:9.172480pt;}
.ls15{letter-spacing:9.217920pt;}
.ls24{letter-spacing:9.689600pt;}
.ls23{letter-spacing:12.336640pt;}
.ls1c{letter-spacing:12.976640pt;}
.ls13{letter-spacing:15.492480pt;}
.ls11{letter-spacing:15.572480pt;}
.ls1e{letter-spacing:15.617920pt;}
.lse{letter-spacing:15.736960pt;}
.ls2b{letter-spacing:15.884800pt;}
.ls1b{letter-spacing:16.176640pt;}
.lsc{letter-spacing:16.257920pt;}
.ls1d{letter-spacing:16.283307pt;}
.ls22{letter-spacing:16.376960pt;}
.ls14{letter-spacing:17.412480pt;}
.ls2c{letter-spacing:25.102953pt;}
.ws4{word-spacing:-58.880000pt;}
.ws14{word-spacing:-26.387637pt;}
.ws7{word-spacing:-13.206933pt;}
.ws9{word-spacing:-12.989440pt;}
.ws5{word-spacing:-12.953600pt;}
.ws8{word-spacing:-12.928000pt;}
.ws6{word-spacing:-12.789867pt;}
.ws3{word-spacing:-11.995733pt;}
.ws1{word-spacing:-11.818667pt;}
.ws2{word-spacing:-11.798933pt;}
.ws18{word-spacing:-1.482329pt;}
.wsc{word-spacing:-0.085120pt;}
.wsa{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.629120pt;}
.ws10{word-spacing:9.904929pt;}
.ws11{word-spacing:13.323905pt;}
.ws17{word-spacing:15.321769pt;}
.ws19{word-spacing:16.633565pt;}
.ws13{word-spacing:20.399292pt;}
.ws15{word-spacing:20.813819pt;}
.ws12{word-spacing:23.818268pt;}
.ws16{word-spacing:24.590478pt;}
.wse{word-spacing:175.024396pt;}
.wsd{word-spacing:219.505335pt;}
.wsf{word-spacing:650.687794pt;}
._24{margin-left:-24.464564pt;}
._c{margin-left:-11.013120pt;}
._10{margin-left:-9.572907pt;}
._f{margin-left:-8.117760pt;}
._9{margin-left:-7.206400pt;}
._7{margin-left:-5.117867pt;}
._e{margin-left:-3.810987pt;}
._b{margin-left:-2.799360pt;}
._a{margin-left:-1.409280pt;}
._0{width:1.076480pt;}
._8{width:2.160853pt;}
._5{width:3.287893pt;}
._6{width:6.233600pt;}
._18{width:7.155413pt;}
._d{width:8.088960pt;}
._13{width:9.301760pt;}
._15{width:10.219947pt;}
._21{width:12.443462pt;}
._17{width:13.562880pt;}
._11{width:14.842880pt;}
._19{width:15.732480pt;}
._14{width:16.666880pt;}
._12{width:17.771520pt;}
._26{width:20.764957pt;}
._22{width:21.852678pt;}
._23{width:23.292028pt;}
._27{width:24.815669pt;}
._25{width:26.120031pt;}
._2f{width:32.398987pt;}
._2a{width:36.046678pt;}
._38{width:39.070366pt;}
._29{width:44.166691pt;}
._3c{width:46.140943pt;}
._16{width:47.713280pt;}
._3d{width:49.072806pt;}
._2e{width:50.450191pt;}
._2c{width:53.204961pt;}
._36{width:60.367363pt;}
._28{width:61.921841pt;}
._37{width:63.535349pt;}
._2b{width:65.562073pt;}
._3a{width:71.353649pt;}
._32{width:75.636661pt;}
._3e{width:76.692656pt;}
._30{width:84.333864pt;}
._33{width:87.514967pt;}
._34{width:90.564892pt;}
._2d{width:93.811585pt;}
._35{width:95.418534pt;}
._3b{width:98.415987pt;}
._39{width:101.597090pt;}
._31{width:103.840260pt;}
._1b{width:222.517217pt;}
._1e{width:262.639789pt;}
._1a{width:320.245547pt;}
._1d{width:358.356367pt;}
._1c{width:461.259156pt;}
._1f{width:570.497746pt;}
._20{width:762.354662pt;}
._4{width:2164.906667pt;}
._2{width:2196.266667pt;}
._3{width:2260.245333pt;}
._1{width:2292.245333pt;}
.fsc{font-size:5.684446pt;}
.fsd{font-size:6.558977pt;}
.fsb{font-size:9.182567pt;}
.fse{font-size:15.304279pt;}
.fs9{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs2{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:1.202479pt;}
.yb3{bottom:1.466667pt;}
.ye0{bottom:1.639744pt;}
.yf2{bottom:1.749060pt;}
.y107{bottom:2.186326pt;}
.y105{bottom:2.295595pt;}
.yd1{bottom:2.295642pt;}
.yf6{bottom:2.298557pt;}
.y102{bottom:2.299286pt;}
.ycf{bottom:2.300014pt;}
.yd3{bottom:3.388805pt;}
.ydf{bottom:3.826070pt;}
.yf1{bottom:3.935386pt;}
.yb9{bottom:11.706667pt;}
.yb0{bottom:12.506667pt;}
.yb7{bottom:12.546667pt;}
.yb5{bottom:12.992000pt;}
.yae{bottom:13.186667pt;}
.yb2{bottom:21.146667pt;}
.y61{bottom:24.000000pt;}
.y60{bottom:41.920000pt;}
.yfc{bottom:42.979907pt;}
.y2a{bottom:43.040000pt;}
.y4{bottom:43.360000pt;}
.yc9{bottom:43.386667pt;}
.y83{bottom:49.440000pt;}
.y3{bottom:56.480000pt;}
.yc8{bottom:56.506667pt;}
.y5f{bottom:60.000000pt;}
.yf8{bottom:60.368483pt;}
.y29{bottom:69.600000pt;}
.y5e{bottom:77.920000pt;}
.yf3{bottom:78.303640pt;}
.y5d{bottom:95.840000pt;}
.y28{bottom:96.320000pt;}
.yb4{bottom:107.520000pt;}
.y5c{bottom:113.952000pt;}
.y27{bottom:123.072000pt;}
.y5b{bottom:131.872000pt;}
.yb1{bottom:135.040000pt;}
.y26{bottom:149.626667pt;}
.y5a{bottom:149.786667pt;}
.ye1{bottom:166.339682pt;}
.y59{bottom:167.866667pt;}
.y25{bottom:176.346667pt;}
.y8a{bottom:184.826667pt;}
.y58{bottom:185.786667pt;}
.y87{bottom:197.946667pt;}
.y24{bottom:203.066667pt;}
.y57{bottom:203.706667pt;}
.yaf{bottom:209.120000pt;}
.yd5{bottom:218.942674pt;}
.y56{bottom:221.786667pt;}
.y94{bottom:226.426667pt;}
.y23{bottom:229.786667pt;}
.ycd{bottom:230.537487pt;}
.y9d{bottom:232.506667pt;}
.ycc{bottom:238.520491pt;}
.y55{bottom:239.706667pt;}
.y7b{bottom:242.426667pt;}
.ycb{bottom:242.565193pt;}
.y9c{bottom:255.386667pt;}
.y22{bottom:256.346667pt;}
.y54{bottom:257.626667pt;}
.y53{bottom:275.706667pt;}
.yb8{bottom:276.000000pt;}
.yba{bottom:276.480000pt;}
.yab{bottom:280.666667pt;}
.y21{bottom:283.066667pt;}
.y52{bottom:293.626667pt;}
.y74{bottom:294.906667pt;}
.y20{bottom:309.786667pt;}
.y51{bottom:311.706667pt;}
.y50{bottom:329.626667pt;}
.y1f{bottom:336.346667pt;}
.y86{bottom:338.146667pt;}
.y78{bottom:343.426667pt;}
.y4f{bottom:347.586667pt;}
.yb6{bottom:350.240000pt;}
.yca{bottom:351.387005pt;}
.y104{bottom:351.496321pt;}
.y103{bottom:357.293681pt;}
.y101{bottom:363.087444pt;}
.y1e{bottom:363.106667pt;}
.y4e{bottom:365.666667pt;}
.y100{bottom:368.884559pt;}
.y10b{bottom:373.826667pt;}
.yff{bottom:374.682694pt;}
.yfe{bottom:380.476457pt;}
.y4d{bottom:383.586667pt;}
.yfd{bottom:386.273135pt;}
.y1d{bottom:389.826667pt;}
.yfb{bottom:392.071270pt;}
.yfa{bottom:397.865033pt;}
.y4c{bottom:401.506667pt;}
.yf9{bottom:403.661710pt;}
.yf7{bottom:409.459846pt;}
.y7d{bottom:410.306667pt;}
.ya8{bottom:411.746667pt;}
.yf5{bottom:415.253608pt;}
.y1c{bottom:416.386667pt;}
.y9b{bottom:416.546667pt;}
.y4b{bottom:419.586667pt;}
.yad{bottom:420.000000pt;}
.yf4{bottom:421.050286pt;}
.y7a{bottom:426.626667pt;}
.yf0{bottom:426.848421pt;}
.yef{bottom:433.847578pt;}
.y4a{bottom:437.506667pt;}
.yee{bottom:439.641341pt;}
.y1b{bottom:443.106667pt;}
.ybe{bottom:444.226667pt;}
.yed{bottom:445.439476pt;}
.yec{bottom:451.236154pt;}
.y82{bottom:453.186667pt;}
.y49{bottom:455.426667pt;}
.yeb{bottom:457.029917pt;}
.y85{bottom:458.146667pt;}
.yaa{bottom:461.506667pt;}
.yea{bottom:462.828052pt;}
.yc0{bottom:463.746667pt;}
.ye9{bottom:468.624730pt;}
.y1a{bottom:469.826667pt;}
.y48{bottom:473.506667pt;}
.ye8{bottom:474.418493pt;}
.ye7{bottom:480.216628pt;}
.ye6{bottom:486.013306pt;}
.y5{bottom:488.386667pt;}
.y47{bottom:491.426667pt;}
.ye5{bottom:491.807068pt;}
.y89{bottom:492.866667pt;}
.y19{bottom:496.386667pt;}
.ye4{bottom:497.605204pt;}
.ye3{bottom:503.401881pt;}
.ye2{bottom:509.195644pt;}
.y46{bottom:509.346667pt;}
.ya0{bottom:512.866667pt;}
.yde{bottom:514.993779pt;}
.ydd{bottom:521.664987pt;}
.y18{bottom:523.106667pt;}
.y77{bottom:524.066667pt;}
.ybd{bottom:525.826667pt;}
.y45{bottom:527.426667pt;}
.ydc{bottom:527.458750pt;}
.ydb{bottom:533.256885pt;}
.y9f{bottom:535.586667pt;}
.y73{bottom:535.746667pt;}
.ybc{bottom:537.346667pt;}
.yda{bottom:539.053563pt;}
.yc5{bottom:539.746667pt;}
.yd9{bottom:544.847326pt;}
.y44{bottom:545.346667pt;}
.y17{bottom:549.826667pt;}
.yd8{bottom:550.645461pt;}
.yd7{bottom:556.442139pt;}
.yd6{bottom:562.235902pt;}
.y43{bottom:563.293333pt;}
.yd2{bottom:568.034037pt;}
.y81{bottom:570.653333pt;}
.yc3{bottom:570.813333pt;}
.yd0{bottom:573.830715pt;}
.y16{bottom:576.573333pt;}
.yce{bottom:579.624478pt;}
.y42{bottom:581.373333pt;}
.ybf{bottom:583.773333pt;}
.y41{bottom:599.293333pt;}
.y15{bottom:603.133333pt;}
.y106{bottom:604.232300pt;}
.y40{bottom:617.373333pt;}
.y14{bottom:629.853333pt;}
.yac{bottom:632.893333pt;}
.y3f{bottom:635.293333pt;}
.ya7{bottom:651.773333pt;}
.y3e{bottom:653.213333pt;}
.y13{bottom:656.573333pt;}
.y99{bottom:664.893333pt;}
.y10c{bottom:668.573333pt;}
.y3d{bottom:671.293333pt;}
.y91{bottom:671.613333pt;}
.y9e{bottom:676.733333pt;}
.y12{bottom:683.133333pt;}
.y9a{bottom:688.893333pt;}
.y3c{bottom:689.213333pt;}
.y108{bottom:697.093333pt;}
.yc7{bottom:698.853333pt;}
.yc2{bottom:706.493333pt;}
.y98{bottom:706.653333pt;}
.y3b{bottom:707.133333pt;}
.y11{bottom:709.853333pt;}
.y80{bottom:719.933333pt;}
.y76{bottom:724.893333pt;}
.y3a{bottom:725.213333pt;}
.y88{bottom:734.493333pt;}
.y72{bottom:736.413333pt;}
.y10{bottom:736.573333pt;}
.y39{bottom:743.133333pt;}
.y93{bottom:747.133333pt;}
.y92{bottom:757.053333pt;}
.y8d{bottom:760.733333pt;}
.y38{bottom:761.053333pt;}
.yf{bottom:763.133333pt;}
.y8f{bottom:765.213333pt;}
.y8e{bottom:766.013333pt;}
.y90{bottom:770.013333pt;}
.y37{bottom:779.133333pt;}
.ya9{bottom:779.933333pt;}
.y71{bottom:781.053333pt;}
.y97{bottom:786.533333pt;}
.ye{bottom:789.893333pt;}
.y7e{bottom:790.853333pt;}
.y36{bottom:797.093333pt;}
.y70{bottom:799.173333pt;}
.ya3{bottom:801.733333pt;}
.y35{bottom:815.013333pt;}
.yd{bottom:816.613333pt;}
.y6f{bottom:817.093333pt;}
.ya2{bottom:824.613333pt;}
.y10a{bottom:828.133333pt;}
.y8c{bottom:830.373333pt;}
.y79{bottom:830.853333pt;}
.y34{bottom:833.093333pt;}
.y6e{bottom:835.013333pt;}
.y8b{bottom:839.653333pt;}
.yc{bottom:843.173333pt;}
.yc6{bottom:850.853333pt;}
.y33{bottom:851.013333pt;}
.y6d{bottom:853.093333pt;}
.yc4{bottom:859.973333pt;}
.ybb{bottom:866.533333pt;}
.y32{bottom:868.933333pt;}
.yb{bottom:869.893333pt;}
.y6c{bottom:871.013333pt;}
.ya6{bottom:871.813333pt;}
.y7c{bottom:879.973333pt;}
.y31{bottom:887.013333pt;}
.y6b{bottom:888.933333pt;}
.ya{bottom:896.613333pt;}
.y30{bottom:904.933333pt;}
.y96{bottom:906.533333pt;}
.y6a{bottom:907.013333pt;}
.y2f{bottom:923.013333pt;}
.y9{bottom:923.333333pt;}
.y69{bottom:924.933333pt;}
.yc1{bottom:926.533333pt;}
.y2e{bottom:940.933333pt;}
.y68{bottom:943.013333pt;}
.y84{bottom:946.533333pt;}
.y8{bottom:949.893333pt;}
.y65{bottom:954.053333pt;}
.y2d{bottom:958.853333pt;}
.y67{bottom:960.933333pt;}
.y64{bottom:971.973333pt;}
.y10d{bottom:976.293333pt;}
.y7{bottom:976.613333pt;}
.y66{bottom:978.853333pt;}
.y2c{bottom:979.813333pt;}
.ya1{bottom:985.733333pt;}
.y95{bottom:986.533333pt;}
.y63{bottom:990.053333pt;}
.y109{bottom:997.573333pt;}
.y6{bottom:1000.293333pt;}
.ya4{bottom:1002.533333pt;}
.y7f{bottom:1002.693333pt;}
.ya5{bottom:1005.253333pt;}
.y75{bottom:1005.733333pt;}
.y2b{bottom:1006.533333pt;}
.y1{bottom:1006.693333pt;}
.y62{bottom:1007.973333pt;}
.y2{bottom:1028.320000pt;}
.h23{height:5.653915pt;}
.h26{height:5.684446pt;}
.h25{height:5.688090pt;}
.h27{height:6.523748pt;}
.h28{height:6.562620pt;}
.h24{height:6.715905pt;}
.h29{height:6.890569pt;}
.h2a{height:7.109202pt;}
.h22{height:9.402267pt;}
.h2b{height:15.670446pt;}
.h17{height:35.200000pt;}
.h1a{height:35.360000pt;}
.h18{height:35.520000pt;}
.hd{height:36.398438pt;}
.h4{height:36.920625pt;}
.h15{height:40.882500pt;}
.ha{height:42.866250pt;}
.h8{height:46.220625pt;}
.he{height:46.593750pt;}
.h14{height:49.494375pt;}
.h1b{height:51.232500pt;}
.hb{height:54.514687pt;}
.h7{height:55.687500pt;}
.h1c{height:55.798875pt;}
.hc{height:58.563750pt;}
.h2{height:60.288750pt;}
.h13{height:61.409687pt;}
.h9{height:61.969687pt;}
.h12{height:63.203750pt;}
.h19{height:65.154375pt;}
.h3{height:65.440000pt;}
.h20{height:65.472000pt;}
.h5{height:68.748750pt;}
.h1d{height:74.064375pt;}
.h16{height:84.323750pt;}
.h6{height:84.662813pt;}
.h11{height:86.883750pt;}
.h10{height:121.443750pt;}
.hf{height:129.123750pt;}
.h21{height:259.954107pt;}
.h1e{height:793.280000pt;}
.h1f{height:793.333333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:39.413026pt;}
.wc{width:59.231931pt;}
.w5{width:114.720000pt;}
.w7{width:115.040000pt;}
.w3{width:168.026667pt;}
.w6{width:189.120000pt;}
.w4{width:189.280000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.wa{width:1076.330527pt;}
.w9{width:1122.666667pt;}
.w8{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.204198pt;}
.x37{left:2.189450pt;}
.x34{left:4.816791pt;}
.x39{left:5.802044pt;}
.x27{left:11.426667pt;}
.x20{left:13.986667pt;}
.x24{left:14.946667pt;}
.x31{left:19.042806pt;}
.x36{left:22.655399pt;}
.x22{left:26.466667pt;}
.x25{left:40.066667pt;}
.x2a{left:42.973333pt;}
.x38{left:44.229817pt;}
.x35{left:46.090850pt;}
.x32{left:63.282414pt;}
.x33{left:64.377139pt;}
.x4{left:72.800000pt;}
.x6{left:94.591988pt;}
.xd{left:99.071988pt;}
.x2e{left:101.311988pt;}
.xc{left:105.631988pt;}
.x10{left:110.111988pt;}
.x2f{left:117.151988pt;}
.xe{left:118.751988pt;}
.x8{left:121.631988pt;}
.x3{left:124.826667pt;}
.x11{left:126.591988pt;}
.xa{left:129.631988pt;}
.x9{left:145.626655pt;}
.xb{left:153.466655pt;}
.x5{left:197.466655pt;}
.x23{left:214.880000pt;}
.x21{left:217.440000pt;}
.x14{left:222.906655pt;}
.x12{left:243.906655pt;}
.x1a{left:248.226655pt;}
.x28{left:255.040000pt;}
.x1d{left:280.706655pt;}
.x1e{left:283.746655pt;}
.x2d{left:297.186655pt;}
.x2b{left:303.106655pt;}
.x1f{left:315.840000pt;}
.x1c{left:329.186655pt;}
.x19{left:351.906655pt;}
.x2c{left:354.306655pt;}
.x26{left:373.600000pt;}
.x1b{left:387.586655pt;}
.x1{left:396.733322pt;}
.x29{left:452.000000pt;}
.x18{left:473.693322pt;}
.x13{left:490.973322pt;}
.x15{left:494.013322pt;}
.x30{left:509.666667pt;}
.x16{left:527.133322pt;}
.xf{left:548.453322pt;}
.x17{left:563.973322pt;}
.x2{left:585.253333pt;}
.x7{left:698.213322pt;}
.x3b{left:927.653333pt;}
}




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