
    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_7046fdcf05ac913f2d4c3f14.woff')format("woff");}.ff1{font-family:ff1;line-height:1.051270;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_85373b908532965feb972a0e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.048828;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_39513b34da25e808b942d1e8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_3d7ea2d38d05e19cdd4f707c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.083008;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_1156c6cf8e53d868f3785cb0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.048828;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_d6bddb300e09c29cce40b065.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ec987e9cd293e27232bb97a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b3fa040586f7dd5e0bccc5c5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.048828;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_0c3751fa18661b86c7b1a9be.woff')format("woff");}.ff9{font-family:ff9;line-height:1.136230;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);}
.m1{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);}
.v2{vertical-align:-108.120000px;}
.v1{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-2.226000px;}
.ls6{letter-spacing:-1.632000px;}
.ls7{letter-spacing:-1.602000px;}
.ls1f{letter-spacing:-0.810000px;}
.ls2d{letter-spacing:-0.678000px;}
.ls1d{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.201600px;}
.ls2b{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.118800px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.079800px;}
.ls29{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.217500px;}
.ls2a{letter-spacing:0.405600px;}
.ls12{letter-spacing:0.414000px;}
.ls10{letter-spacing:0.437700px;}
.ls1b{letter-spacing:0.666000px;}
.lse{letter-spacing:0.758400px;}
.ls11{letter-spacing:1.045200px;}
.lsf{letter-spacing:1.047150px;}
.lsd{letter-spacing:1.422000px;}
.ls0{letter-spacing:1.585650px;}
.ls3{letter-spacing:1.794000px;}
.ls1c{letter-spacing:1.866000px;}
.ls4{letter-spacing:1.944000px;}
.ls1e{letter-spacing:2.016000px;}
.ls27{letter-spacing:11.629500px;}
.ls28{letter-spacing:11.700000px;}
.ls2e{letter-spacing:26.108100px;}
.ls2c{letter-spacing:30.169500px;}
.lsa{letter-spacing:51.210000px;}
.ls16{letter-spacing:56.784000px;}
.ls14{letter-spacing:56.824500px;}
.ls15{letter-spacing:56.854500px;}
.ls5{letter-spacing:57.645000px;}
.ls31{letter-spacing:57.675000px;}
.ls30{letter-spacing:57.727500px;}
.ls8{letter-spacing:70.327500px;}
.ls9{letter-spacing:72.300000px;}
.ls24{letter-spacing:75.052500px;}
.ls25{letter-spacing:75.105000px;}
.ls17{letter-spacing:78.172500px;}
.ls19{letter-spacing:78.202500px;}
.ls18{letter-spacing:78.225000px;}
.ls1a{letter-spacing:78.255000px;}
.ls2f{letter-spacing:119.572500px;}
.ls23{letter-spacing:132.142500px;}
.ls22{letter-spacing:132.195000px;}
.ls21{letter-spacing:132.202500px;}
.ls20{letter-spacing:132.255000px;}
.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;}
}
.ws42{word-spacing:-118.965000px;}
.ws0{word-spacing:-90.833400px;}
.ws32{word-spacing:-90.000000px;}
.ws29{word-spacing:-85.650000px;}
.ws1{word-spacing:-80.868150px;}
.ws15{word-spacing:-72.689400px;}
.ws10{word-spacing:-72.651600px;}
.ws22{word-spacing:-67.019400px;}
.ws1d{word-spacing:-64.793400px;}
.ws2b{word-spacing:-60.177600px;}
.ws19{word-spacing:-54.507600px;}
.ws40{word-spacing:-52.297200px;}
.ws1a{word-spacing:-46.569600px;}
.ws4{word-spacing:-44.263800px;}
.ws6{word-spacing:-42.033600px;}
.ws5{word-spacing:-38.500200px;}
.ws1f{word-spacing:-36.529200px;}
.ws20{word-spacing:-36.496350px;}
.ws17{word-spacing:-36.363600px;}
.wsb{word-spacing:-36.325800px;}
.ws8{word-spacing:-34.731600px;}
.ws14{word-spacing:-34.345800px;}
.ws2{word-spacing:-31.568850px;}
.ws37{word-spacing:-30.655800px;}
.wsa{word-spacing:-29.999700px;}
.ws18{word-spacing:-29.657550px;}
.ws13{word-spacing:-28.645200px;}
.ws11{word-spacing:-28.612350px;}
.wsc{word-spacing:-27.253800px;}
.ws36{word-spacing:-26.641350px;}
.wse{word-spacing:-23.851800px;}
.wsd{word-spacing:-23.814000px;}
.ws34{word-spacing:-23.684850px;}
.ws33{word-spacing:-22.680000px;}
.ws1c{word-spacing:-21.583800px;}
.ws25{word-spacing:-21.546000px;}
.ws2c{word-spacing:-20.728350px;}
.ws2d{word-spacing:-20.695500px;}
.ws23{word-spacing:-18.757350px;}
.ws26{word-spacing:-18.181800px;}
.ws27{word-spacing:-17.515800px;}
.ws28{word-spacing:-17.371800px;}
.wsf{word-spacing:-15.800850px;}
.ws35{word-spacing:-5.801550px;}
.ws2a{word-spacing:-5.209050px;}
.ws2f{word-spacing:-4.650900px;}
.ws3c{word-spacing:-3.366300px;}
.ws3f{word-spacing:-1.554150px;}
.ws3b{word-spacing:-1.494150px;}
.ws3a{word-spacing:-1.433250px;}
.ws7{word-spacing:-0.805200px;}
.ws3e{word-spacing:-0.477600px;}
.ws38{word-spacing:-0.451500px;}
.ws30{word-spacing:-0.300000px;}
.ws3{word-spacing:0.000000px;}
.ws39{word-spacing:0.106050px;}
.ws2e{word-spacing:0.134400px;}
.ws3d{word-spacing:0.227250px;}
.ws9{word-spacing:0.819600px;}
.ws31{word-spacing:1.110000px;}
.ws41{word-spacing:1.371900px;}
.ws12{word-spacing:2.176800px;}
.ws1e{word-spacing:2.863350px;}
.ws24{word-spacing:15.449100px;}
.ws21{word-spacing:1243.518150px;}
.ws16{word-spacing:1256.543400px;}
.ws1b{word-spacing:1264.987050px;}
._2{margin-left:-28.848000px;}
._3{margin-left:-23.067900px;}
._1d{margin-left:-17.739900px;}
._6{margin-left:-16.579650px;}
._1c{margin-left:-12.346350px;}
._c{margin-left:-11.170950px;}
._b{margin-left:-8.711850px;}
._d{margin-left:-7.552950px;}
._f{margin-left:-5.914200px;}
._4{margin-left:-4.685850px;}
._9{margin-left:-3.583200px;}
._1{margin-left:-2.524200px;}
._7{margin-left:-1.153350px;}
._0{width:1.442400px;}
._8{width:2.767500px;}
._e{width:4.004850px;}
._5{width:5.046300px;}
._24{width:6.250050px;}
._14{width:7.443000px;}
._19{width:9.004500px;}
._22{width:13.829550px;}
._23{width:15.083550px;}
._1f{width:16.240800px;}
._20{width:17.656050px;}
._21{width:19.290150px;}
._1e{width:20.859450px;}
._12{width:22.552800px;}
._25{width:23.644800px;}
._13{width:25.252350px;}
._a{width:28.736100px;}
._16{width:30.534150px;}
._15{width:32.693700px;}
._11{width:35.451000px;}
._10{width:41.999100px;}
._17{width:62.680350px;}
._18{width:410.560950px;}
._1b{width:1500.064800px;}
._1a{width:1519.484100px;}
.fc4{color:rgb(0,176,240);}
.fc7{color:transparent;}
.fc3{color:rgb(41,152,227);}
.fc2{color:rgb(161,187,227);}
.fc6{color:rgb(118,118,118);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:45.000000px;}
.fsf{font-size:72.150000px;}
.fs16{font-size:85.500000px;}
.fs7{font-size:85.650000px;}
.fs1b{font-size:90.000000px;}
.fs1a{font-size:90.150000px;}
.fse{font-size:94.500000px;}
.fsd{font-size:94.650000px;}
.fs18{font-size:103.650000px;}
.fsc{font-size:108.150000px;}
.fs2{font-size:121.650000px;}
.fs1c{font-size:121.800000px;}
.fs17{font-size:126.150000px;}
.fs11{font-size:130.650000px;}
.fs12{font-size:130.800000px;}
.fs3{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fs9{font-size:166.650000px;}
.fs8{font-size:166.800000px;}
.fs5{font-size:175.650000px;}
.fs6{font-size:175.800000px;}
.fs15{font-size:184.800000px;}
.fs14{font-size:216.300000px;}
.fs4{font-size:238.800000px;}
.fsa{font-size:265.950000px;}
.fs10{font-size:288.300000px;}
.fs13{font-size:288.450000px;}
.fs1{font-size:360.450000px;}
.fs0{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y24{bottom:15.600000px;}
.ya2{bottom:15.750000px;}
.y9f{bottom:20.295000px;}
.y32{bottom:22.725000px;}
.y6f{bottom:26.962500px;}
.y41{bottom:28.387500px;}
.y61{bottom:36.675000px;}
.y81{bottom:39.037500px;}
.y73{bottom:42.712500px;}
.y8e{bottom:45.787500px;}
.y8{bottom:54.975000px;}
.y6e{bottom:55.125000px;}
.ye4{bottom:61.275000px;}
.y80{bottom:67.200000px;}
.y8d{bottom:68.325000px;}
.y72{bottom:69.750000px;}
.ye1{bottom:79.162500px;}
.y60{bottom:83.850000px;}
.y4a{bottom:85.462500px;}
.y8c{bottom:90.862500px;}
.yd1{bottom:94.050000px;}
.y6d{bottom:97.912500px;}
.y7{bottom:98.475000px;}
.y12{bottom:99.675000px;}
.y1a{bottom:100.800000px;}
.y23{bottom:105.300000px;}
.y52{bottom:105.825000px;}
.y7f{bottom:109.987500px;}
.y37{bottom:111.862500px;}
.y5e{bottom:112.012500px;}
.y9b{bottom:114.075000px;}
.y3d{bottom:119.100000px;}
.ye0{bottom:121.987500px;}
.y6c{bottom:126.075000px;}
.y8b{bottom:129.150000px;}
.yd0{bottom:130.087500px;}
.y2d{bottom:131.212500px;}
.yb0{bottom:132.712500px;}
.ybc{bottom:133.762500px;}
.yc8{bottom:133.987500px;}
.y7e{bottom:137.025000px;}
.y5d{bottom:140.175000px;}
.y71{bottom:140.737500px;}
.y49{bottom:144.037500px;}
.y11{bottom:144.750000px;}
.y6{bottom:145.800000px;}
.y19{bottom:148.125000px;}
.y51{bottom:150.900000px;}
.y8a{bottom:151.680000px;}
.y22{bottom:156.000000px;}
.yaf{bottom:157.500000px;}
.y9a{bottom:157.995000px;}
.ybb{bottom:163.050000px;}
.yc7{bottom:163.275000px;}
.ydf{bottom:164.805000px;}
.ycf{bottom:166.170000px;}
.y5c{bottom:167.220000px;}
.y6b{bottom:168.900000px;}
.y36{bottom:170.430000px;}
.y2c{bottom:175.155000px;}
.y7d{bottom:179.850000px;}
.y5f{bottom:183.000000px;}
.y48{bottom:187.950000px;}
.y89{bottom:188.850000px;}
.y10{bottom:190.950000px;}
.yd7{bottom:192.075000px;}
.yba{bottom:192.345000px;}
.yc6{bottom:192.570000px;}
.y18{bottom:195.450000px;}
.y6a{bottom:195.945000px;}
.y99{bottom:200.820000px;}
.y4f{bottom:203.850000px;}
.y21{bottom:205.575000px;}
.yb1{bottom:206.670000px;}
.y7c{bottom:208.005000px;}
.y5b{bottom:210.045000px;}
.y88{bottom:211.380000px;}
.y70{bottom:211.725000px;}
.y2b{bottom:217.980000px;}
.yde{bottom:223.380000px;}
.yb9{bottom:226.155000px;}
.y35{bottom:229.050000px;}
.y98{bottom:230.100000px;}
.yf{bottom:230.370000px;}
.yd6{bottom:235.995000px;}
.y7b{bottom:236.175000px;}
.y5a{bottom:238.200000px;}
.y69{bottom:238.755000px;}
.y5{bottom:240.450000px;}
.y20{bottom:246.150000px;}
.y47{bottom:246.525000px;}
.y87{bottom:249.720000px;}
.y4e{bottom:250.005000px;}
.yc9{bottom:251.550000px;}
.yb8{bottom:255.450000px;}
.ye{bottom:258.525000px;}
.y7a{bottom:263.220000px;}
.y68{bottom:266.925000px;}
.ydd{bottom:267.300000px;}
.y3c{bottom:267.645000px;}
.yad{bottom:269.205000px;}
.y86{bottom:272.205000px;}
.y4{bottom:273.120000px;}
.y97{bottom:274.050000px;}
.y2a{bottom:276.570000px;}
.y59{bottom:281.025000px;}
.yd5{bottom:281.070000px;}
.yce{bottom:282.195000px;}
.y46{bottom:290.475000px;}
.y50{bottom:295.095000px;}
.y1f{bottom:295.695000px;}
.yac{bottom:297.405000px;}
.y4d{bottom:302.955000px;}
.y96{bottom:303.345000px;}
.y31{bottom:304.650000px;}
.y17{bottom:305.850000px;}
.y79{bottom:306.030000px;}
.y58{bottom:309.195000px;}
.y67{bottom:309.705000px;}
.ydc{bottom:310.125000px;}
.y85{bottom:310.530000px;}
.y38{bottom:311.925000px;}
.ybd{bottom:314.400000px;}
.ya1{bottom:315.450000px;}
.ycd{bottom:318.225000px;}
.y29{bottom:320.475000px;}
.ye3{bottom:321.600000px;}
.yab{bottom:322.155000px;}
.yc4{bottom:326.925000px;}
.y34{bottom:331.545000px;}
.y84{bottom:333.075000px;}
.y78{bottom:334.200000px;}
.y1e{bottom:336.255000px;}
.y66{bottom:337.875000px;}
.yaa{bottom:346.950000px;}
.y95{bottom:347.250000px;}
.y4c{bottom:348.030000px;}
.y45{bottom:349.050000px;}
.y57{bottom:351.975000px;}
.y16{bottom:354.300000px;}
.yc3{bottom:356.220000px;}
.y77{bottom:362.370000px;}
.ydb{bottom:368.700000px;}
.ye2{bottom:368.925000px;}
.y83{bottom:370.230000px;}
.y28{bottom:379.050000px;}
.y65{bottom:380.700000px;}
.y1d{bottom:386.970000px;}
.y3{bottom:388.095000px;}
.yb6{bottom:389.505000px;}
.y94{bottom:390.075000px;}
.yd4{bottom:390.345000px;}
.y56{bottom:394.800000px;}
.yae{bottom:396.120000px;}
.ycc{bottom:399.345000px;}
.yd{bottom:400.470000px;}
.y76{bottom:405.150000px;}
.y82{bottom:408.525000px;}
.yda{bottom:411.525000px;}
.yc5{bottom:415.155000px;}
.y3b{bottom:416.145000px;}
.y15{bottom:416.250000px;}
.y93{bottom:419.370000px;}
.y27{bottom:423.000000px;}
.yb5{bottom:423.300000px;}
.y64{bottom:423.480000px;}
.yd3{bottom:429.750000px;}
.ycb{bottom:435.405000px;}
.y4b{bottom:436.155000px;}
.y1c{bottom:437.670000px;}
.y43{bottom:442.095000px;}
.yc{bottom:446.655000px;}
.y33{bottom:447.795000px;}
.y42{bottom:450.825000px;}
.yb4{bottom:452.580000px;}
.yd9{bottom:454.320000px;}
.ya8{bottom:459.870000px;}
.y92{bottom:463.320000px;}
.y14{bottom:463.575000px;}
.y63{bottom:463.800000px;}
.y30{bottom:463.845000px;}
.y53{bottom:467.070000px;}
.y54{bottom:468.075000px;}
.y44{bottom:469.200000px;}
.yd2{bottom:470.325000px;}
.yca{bottom:471.450000px;}
.y1b{bottom:472.575000px;}
.y75{bottom:473.925000px;}
.y39{bottom:480.150000px;}
.ya7{bottom:483.525000px;}
.yc1{bottom:491.175000px;}
.yb{bottom:493.995000px;}
.y2{bottom:496.245000px;}
.yd8{bottom:498.255000px;}
.y2f{bottom:499.875000px;}
.y91{bottom:507.225000px;}
.ya6{bottom:508.320000px;}
.yb7{bottom:511.575000px;}
.y62{bottom:520.125000px;}
.yc0{bottom:520.470000px;}
.y74{bottom:524.625000px;}
.y40{bottom:534.195000px;}
.y26{bottom:534.525000px;}
.ya5{bottom:537.600000px;}
.ya{bottom:541.275000px;}
.y3a{bottom:546.945000px;}
.ybf{bottom:554.250000px;}
.y55{bottom:558.195000px;}
.ya0{bottom:559.905000px;}
.y90{bottom:560.445000px;}
.ya4{bottom:568.005000px;}
.ybe{bottom:583.545000px;}
.yb2{bottom:584.370000px;}
.y9e{bottom:589.200000px;}
.y9d{bottom:593.745000px;}
.y3f{bottom:599.880000px;}
.ya3{bottom:600.675000px;}
.y1{bottom:604.380000px;}
.y25{bottom:621.255000px;}
.y13{bottom:626.925000px;}
.y8f{bottom:632.550000px;}
.y9{bottom:639.300000px;}
.yc2{bottom:642.495000px;}
.yb3{bottom:643.350000px;}
.y9c{bottom:646.695000px;}
.ya9{bottom:649.800000px;}
.y3e{bottom:650.595000px;}
.y2e{bottom:659.850000px;}
.h2a{height:25.912500px;}
.h28{height:30.412500px;}
.h29{height:44.758301px;}
.h15{height:62.391431px;}
.h24{height:62.567578px;}
.h23{height:73.935791px;}
.h9{height:74.065503px;}
.h22{height:74.144531px;}
.h1f{height:74.274609px;}
.h2d{height:77.827148px;}
.h2c{height:77.956860px;}
.h2e{height:78.046875px;}
.h2b{height:78.176953px;}
.h1a{height:81.848218px;}
.h13{height:81.949219px;}
.h14{height:82.079297px;}
.h19{height:87.078735px;}
.h27{height:89.883984px;}
.h12{height:93.522290px;}
.h11{height:93.786328px;}
.h3{height:105.196362px;}
.h25{height:105.493359px;}
.h2f{height:105.623438px;}
.h26{height:109.395703px;}
.h17{height:112.979077px;}
.h18{height:113.108789px;}
.h10{height:124.653149px;}
.h30{height:124.782861px;}
.hf{height:125.005078px;}
.he{height:125.135156px;}
.h4{height:126.553564px;}
.h20{height:144.109937px;}
.ha{height:144.239648px;}
.hc{height:144.516797px;}
.hb{height:144.646875px;}
.h8{height:152.022363px;}
.h6{height:152.321484px;}
.h7{height:152.451563px;}
.h1e{height:160.256250px;}
.h21{height:187.044580px;}
.h1d{height:187.572656px;}
.h32{height:189.896191px;}
.h5{height:207.084375px;}
.h31{height:209.649609px;}
.h1c{height:229.979224px;}
.hd{height:230.628516px;}
.h16{height:250.010156px;}
.h1b{height:250.140234px;}
.h2{height:312.577734px;}
.h1{height:312.707813px;}
.h0{height:810.000000px;}
.w3{width:193.650000px;}
.w2{width:238.695000px;}
.w4{width:245.445000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:26.774979px;}
.xb{left:28.462479px;}
.x8{left:46.199979px;}
.xa{left:55.199979px;}
.x1{left:72.037479px;}
.x17{left:79.612479px;}
.x2d{left:92.962479px;}
.x3{left:99.449979px;}
.x14{left:105.824979px;}
.x18{left:113.399979px;}
.x1f{left:127.649979px;}
.x9{left:163.724979px;}
.x16{left:225.599979px;}
.x11{left:226.769979px;}
.x1e{left:344.144979px;}
.x10{left:515.249979px;}
.x12{left:533.474979px;}
.x1a{left:537.674979px;}
.x22{left:558.779979px;}
.x1b{left:571.469979px;}
.x23{left:585.824979px;}
.xf{left:603.494979px;}
.x19{left:634.529979px;}
.x2{left:637.319979px;}
.xe{left:664.349979px;}
.xc{left:701.699979px;}
.x27{left:710.279979px;}
.x29{left:711.974979px;}
.x28{left:723.779979px;}
.x2a{left:730.529979px;}
.x15{left:738.224979px;}
.x25{left:755.445000px;}
.x26{left:759.975000px;}
.x21{left:779.849979px;}
.x4{left:781.424979px;}
.x5{left:808.469979px;}
.x2b{left:814.124979px;}
.x20{left:821.174979px;}
.x6{left:835.499979px;}
.x2c{left:841.169979px;}
.x1c{left:995.729979px;}
.x24{left:1022.295000px;}
.x1d{left:1029.524979px;}
.x13{left:1033.619979px;}
.xd{left:1137.029979px;}
@media print{
.v2{vertical-align:-96.106667pt;}
.v1{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.978667pt;}
.ls6{letter-spacing:-1.450667pt;}
.ls7{letter-spacing:-1.424000pt;}
.ls1f{letter-spacing:-0.720000pt;}
.ls2d{letter-spacing:-0.602667pt;}
.ls1d{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.179200pt;}
.ls2b{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.105600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.070933pt;}
.ls29{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.193333pt;}
.ls2a{letter-spacing:0.360533pt;}
.ls12{letter-spacing:0.368000pt;}
.ls10{letter-spacing:0.389067pt;}
.ls1b{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.674133pt;}
.ls11{letter-spacing:0.929067pt;}
.lsf{letter-spacing:0.930800pt;}
.lsd{letter-spacing:1.264000pt;}
.ls0{letter-spacing:1.409467pt;}
.ls3{letter-spacing:1.594667pt;}
.ls1c{letter-spacing:1.658667pt;}
.ls4{letter-spacing:1.728000pt;}
.ls1e{letter-spacing:1.792000pt;}
.ls27{letter-spacing:10.337333pt;}
.ls28{letter-spacing:10.400000pt;}
.ls2e{letter-spacing:23.207200pt;}
.ls2c{letter-spacing:26.817333pt;}
.lsa{letter-spacing:45.520000pt;}
.ls16{letter-spacing:50.474667pt;}
.ls14{letter-spacing:50.510667pt;}
.ls15{letter-spacing:50.537333pt;}
.ls5{letter-spacing:51.240000pt;}
.ls31{letter-spacing:51.266667pt;}
.ls30{letter-spacing:51.313333pt;}
.ls8{letter-spacing:62.513333pt;}
.ls9{letter-spacing:64.266667pt;}
.ls24{letter-spacing:66.713333pt;}
.ls25{letter-spacing:66.760000pt;}
.ls17{letter-spacing:69.486667pt;}
.ls19{letter-spacing:69.513333pt;}
.ls18{letter-spacing:69.533333pt;}
.ls1a{letter-spacing:69.560000pt;}
.ls2f{letter-spacing:106.286667pt;}
.ls23{letter-spacing:117.460000pt;}
.ls22{letter-spacing:117.506667pt;}
.ls21{letter-spacing:117.513333pt;}
.ls20{letter-spacing:117.560000pt;}
.ws42{word-spacing:-105.746667pt;}
.ws0{word-spacing:-80.740800pt;}
.ws32{word-spacing:-80.000000pt;}
.ws29{word-spacing:-76.133333pt;}
.ws1{word-spacing:-71.882800pt;}
.ws15{word-spacing:-64.612800pt;}
.ws10{word-spacing:-64.579200pt;}
.ws22{word-spacing:-59.572800pt;}
.ws1d{word-spacing:-57.594133pt;}
.ws2b{word-spacing:-53.491200pt;}
.ws19{word-spacing:-48.451200pt;}
.ws40{word-spacing:-46.486400pt;}
.ws1a{word-spacing:-41.395200pt;}
.ws4{word-spacing:-39.345600pt;}
.ws6{word-spacing:-37.363200pt;}
.ws5{word-spacing:-34.222400pt;}
.ws1f{word-spacing:-32.470400pt;}
.ws20{word-spacing:-32.441200pt;}
.ws17{word-spacing:-32.323200pt;}
.wsb{word-spacing:-32.289600pt;}
.ws8{word-spacing:-30.872533pt;}
.ws14{word-spacing:-30.529600pt;}
.ws2{word-spacing:-28.061200pt;}
.ws37{word-spacing:-27.249600pt;}
.wsa{word-spacing:-26.666400pt;}
.ws18{word-spacing:-26.362267pt;}
.ws13{word-spacing:-25.462400pt;}
.ws11{word-spacing:-25.433200pt;}
.wsc{word-spacing:-24.225600pt;}
.ws36{word-spacing:-23.681200pt;}
.wse{word-spacing:-21.201600pt;}
.wsd{word-spacing:-21.168000pt;}
.ws34{word-spacing:-21.053200pt;}
.ws33{word-spacing:-20.160000pt;}
.ws1c{word-spacing:-19.185600pt;}
.ws25{word-spacing:-19.152000pt;}
.ws2c{word-spacing:-18.425200pt;}
.ws2d{word-spacing:-18.396000pt;}
.ws23{word-spacing:-16.673200pt;}
.ws26{word-spacing:-16.161600pt;}
.ws27{word-spacing:-15.569600pt;}
.ws28{word-spacing:-15.441600pt;}
.wsf{word-spacing:-14.045200pt;}
.ws35{word-spacing:-5.156933pt;}
.ws2a{word-spacing:-4.630267pt;}
.ws2f{word-spacing:-4.134133pt;}
.ws3c{word-spacing:-2.992267pt;}
.ws3f{word-spacing:-1.381467pt;}
.ws3b{word-spacing:-1.328133pt;}
.ws3a{word-spacing:-1.274000pt;}
.ws7{word-spacing:-0.715733pt;}
.ws3e{word-spacing:-0.424533pt;}
.ws38{word-spacing:-0.401333pt;}
.ws30{word-spacing:-0.266667pt;}
.ws3{word-spacing:0.000000pt;}
.ws39{word-spacing:0.094267pt;}
.ws2e{word-spacing:0.119467pt;}
.ws3d{word-spacing:0.202000pt;}
.ws9{word-spacing:0.728533pt;}
.ws31{word-spacing:0.986667pt;}
.ws41{word-spacing:1.219467pt;}
.ws12{word-spacing:1.934933pt;}
.ws1e{word-spacing:2.545200pt;}
.ws24{word-spacing:13.732533pt;}
.ws21{word-spacing:1105.349467pt;}
.ws16{word-spacing:1116.927467pt;}
.ws1b{word-spacing:1124.432933pt;}
._2{margin-left:-25.642667pt;}
._3{margin-left:-20.504800pt;}
._1d{margin-left:-15.768800pt;}
._6{margin-left:-14.737467pt;}
._1c{margin-left:-10.974533pt;}
._c{margin-left:-9.929733pt;}
._b{margin-left:-7.743867pt;}
._d{margin-left:-6.713733pt;}
._f{margin-left:-5.257067pt;}
._4{margin-left:-4.165200pt;}
._9{margin-left:-3.185067pt;}
._1{margin-left:-2.243733pt;}
._7{margin-left:-1.025200pt;}
._0{width:1.282133pt;}
._8{width:2.460000pt;}
._e{width:3.559867pt;}
._5{width:4.485600pt;}
._24{width:5.555600pt;}
._14{width:6.616000pt;}
._19{width:8.004000pt;}
._22{width:12.292933pt;}
._23{width:13.407600pt;}
._1f{width:14.436267pt;}
._20{width:15.694267pt;}
._21{width:17.146800pt;}
._1e{width:18.541733pt;}
._12{width:20.046933pt;}
._25{width:21.017600pt;}
._13{width:22.446533pt;}
._a{width:25.543200pt;}
._16{width:27.141467pt;}
._15{width:29.061067pt;}
._11{width:31.512000pt;}
._10{width:37.332533pt;}
._17{width:55.715867pt;}
._18{width:364.943067pt;}
._1b{width:1333.390933pt;}
._1a{width:1350.652533pt;}
.fs19{font-size:40.000000pt;}
.fsf{font-size:64.133333pt;}
.fs16{font-size:76.000000pt;}
.fs7{font-size:76.133333pt;}
.fs1b{font-size:80.000000pt;}
.fs1a{font-size:80.133333pt;}
.fse{font-size:84.000000pt;}
.fsd{font-size:84.133333pt;}
.fs18{font-size:92.133333pt;}
.fsc{font-size:96.133333pt;}
.fs2{font-size:108.133333pt;}
.fs1c{font-size:108.266667pt;}
.fs17{font-size:112.133333pt;}
.fs11{font-size:116.133333pt;}
.fs12{font-size:116.266667pt;}
.fs3{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fs9{font-size:148.133333pt;}
.fs8{font-size:148.266667pt;}
.fs5{font-size:156.133333pt;}
.fs6{font-size:156.266667pt;}
.fs15{font-size:164.266667pt;}
.fs14{font-size:192.266667pt;}
.fs4{font-size:212.266667pt;}
.fsa{font-size:236.400000pt;}
.fs10{font-size:256.266667pt;}
.fs13{font-size:256.400000pt;}
.fs1{font-size:320.400000pt;}
.fs0{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:13.866667pt;}
.ya2{bottom:14.000000pt;}
.y9f{bottom:18.040000pt;}
.y32{bottom:20.200000pt;}
.y6f{bottom:23.966667pt;}
.y41{bottom:25.233333pt;}
.y61{bottom:32.600000pt;}
.y81{bottom:34.700000pt;}
.y73{bottom:37.966667pt;}
.y8e{bottom:40.700000pt;}
.y8{bottom:48.866667pt;}
.y6e{bottom:49.000000pt;}
.ye4{bottom:54.466667pt;}
.y80{bottom:59.733333pt;}
.y8d{bottom:60.733333pt;}
.y72{bottom:62.000000pt;}
.ye1{bottom:70.366667pt;}
.y60{bottom:74.533333pt;}
.y4a{bottom:75.966667pt;}
.y8c{bottom:80.766667pt;}
.yd1{bottom:83.600000pt;}
.y6d{bottom:87.033333pt;}
.y7{bottom:87.533333pt;}
.y12{bottom:88.600000pt;}
.y1a{bottom:89.600000pt;}
.y23{bottom:93.600000pt;}
.y52{bottom:94.066667pt;}
.y7f{bottom:97.766667pt;}
.y37{bottom:99.433333pt;}
.y5e{bottom:99.566667pt;}
.y9b{bottom:101.400000pt;}
.y3d{bottom:105.866667pt;}
.ye0{bottom:108.433333pt;}
.y6c{bottom:112.066667pt;}
.y8b{bottom:114.800000pt;}
.yd0{bottom:115.633333pt;}
.y2d{bottom:116.633333pt;}
.yb0{bottom:117.966667pt;}
.ybc{bottom:118.900000pt;}
.yc8{bottom:119.100000pt;}
.y7e{bottom:121.800000pt;}
.y5d{bottom:124.600000pt;}
.y71{bottom:125.100000pt;}
.y49{bottom:128.033333pt;}
.y11{bottom:128.666667pt;}
.y6{bottom:129.600000pt;}
.y19{bottom:131.666667pt;}
.y51{bottom:134.133333pt;}
.y8a{bottom:134.826667pt;}
.y22{bottom:138.666667pt;}
.yaf{bottom:140.000000pt;}
.y9a{bottom:140.440000pt;}
.ybb{bottom:144.933333pt;}
.yc7{bottom:145.133333pt;}
.ydf{bottom:146.493333pt;}
.ycf{bottom:147.706667pt;}
.y5c{bottom:148.640000pt;}
.y6b{bottom:150.133333pt;}
.y36{bottom:151.493333pt;}
.y2c{bottom:155.693333pt;}
.y7d{bottom:159.866667pt;}
.y5f{bottom:162.666667pt;}
.y48{bottom:167.066667pt;}
.y89{bottom:167.866667pt;}
.y10{bottom:169.733333pt;}
.yd7{bottom:170.733333pt;}
.yba{bottom:170.973333pt;}
.yc6{bottom:171.173333pt;}
.y18{bottom:173.733333pt;}
.y6a{bottom:174.173333pt;}
.y99{bottom:178.506667pt;}
.y4f{bottom:181.200000pt;}
.y21{bottom:182.733333pt;}
.yb1{bottom:183.706667pt;}
.y7c{bottom:184.893333pt;}
.y5b{bottom:186.706667pt;}
.y88{bottom:187.893333pt;}
.y70{bottom:188.200000pt;}
.y2b{bottom:193.760000pt;}
.yde{bottom:198.560000pt;}
.yb9{bottom:201.026667pt;}
.y35{bottom:203.600000pt;}
.y98{bottom:204.533333pt;}
.yf{bottom:204.773333pt;}
.yd6{bottom:209.773333pt;}
.y7b{bottom:209.933333pt;}
.y5a{bottom:211.733333pt;}
.y69{bottom:212.226667pt;}
.y5{bottom:213.733333pt;}
.y20{bottom:218.800000pt;}
.y47{bottom:219.133333pt;}
.y87{bottom:221.973333pt;}
.y4e{bottom:222.226667pt;}
.yc9{bottom:223.600000pt;}
.yb8{bottom:227.066667pt;}
.ye{bottom:229.800000pt;}
.y7a{bottom:233.973333pt;}
.y68{bottom:237.266667pt;}
.ydd{bottom:237.600000pt;}
.y3c{bottom:237.906667pt;}
.yad{bottom:239.293333pt;}
.y86{bottom:241.960000pt;}
.y4{bottom:242.773333pt;}
.y97{bottom:243.600000pt;}
.y2a{bottom:245.840000pt;}
.y59{bottom:249.800000pt;}
.yd5{bottom:249.840000pt;}
.yce{bottom:250.840000pt;}
.y46{bottom:258.200000pt;}
.y50{bottom:262.306667pt;}
.y1f{bottom:262.840000pt;}
.yac{bottom:264.360000pt;}
.y4d{bottom:269.293333pt;}
.y96{bottom:269.640000pt;}
.y31{bottom:270.800000pt;}
.y17{bottom:271.866667pt;}
.y79{bottom:272.026667pt;}
.y58{bottom:274.840000pt;}
.y67{bottom:275.293333pt;}
.ydc{bottom:275.666667pt;}
.y85{bottom:276.026667pt;}
.y38{bottom:277.266667pt;}
.ybd{bottom:279.466667pt;}
.ya1{bottom:280.400000pt;}
.ycd{bottom:282.866667pt;}
.y29{bottom:284.866667pt;}
.ye3{bottom:285.866667pt;}
.yab{bottom:286.360000pt;}
.yc4{bottom:290.600000pt;}
.y34{bottom:294.706667pt;}
.y84{bottom:296.066667pt;}
.y78{bottom:297.066667pt;}
.y1e{bottom:298.893333pt;}
.y66{bottom:300.333333pt;}
.yaa{bottom:308.400000pt;}
.y95{bottom:308.666667pt;}
.y4c{bottom:309.360000pt;}
.y45{bottom:310.266667pt;}
.y57{bottom:312.866667pt;}
.y16{bottom:314.933333pt;}
.yc3{bottom:316.640000pt;}
.y77{bottom:322.106667pt;}
.ydb{bottom:327.733333pt;}
.ye2{bottom:327.933333pt;}
.y83{bottom:329.093333pt;}
.y28{bottom:336.933333pt;}
.y65{bottom:338.400000pt;}
.y1d{bottom:343.973333pt;}
.y3{bottom:344.973333pt;}
.yb6{bottom:346.226667pt;}
.y94{bottom:346.733333pt;}
.yd4{bottom:346.973333pt;}
.y56{bottom:350.933333pt;}
.yae{bottom:352.106667pt;}
.ycc{bottom:354.973333pt;}
.yd{bottom:355.973333pt;}
.y76{bottom:360.133333pt;}
.y82{bottom:363.133333pt;}
.yda{bottom:365.800000pt;}
.yc5{bottom:369.026667pt;}
.y3b{bottom:369.906667pt;}
.y15{bottom:370.000000pt;}
.y93{bottom:372.773333pt;}
.y27{bottom:376.000000pt;}
.yb5{bottom:376.266667pt;}
.y64{bottom:376.426667pt;}
.yd3{bottom:382.000000pt;}
.ycb{bottom:387.026667pt;}
.y4b{bottom:387.693333pt;}
.y1c{bottom:389.040000pt;}
.y43{bottom:392.973333pt;}
.yc{bottom:397.026667pt;}
.y33{bottom:398.040000pt;}
.y42{bottom:400.733333pt;}
.yb4{bottom:402.293333pt;}
.yd9{bottom:403.840000pt;}
.ya8{bottom:408.773333pt;}
.y92{bottom:411.840000pt;}
.y14{bottom:412.066667pt;}
.y63{bottom:412.266667pt;}
.y30{bottom:412.306667pt;}
.y53{bottom:415.173333pt;}
.y54{bottom:416.066667pt;}
.y44{bottom:417.066667pt;}
.yd2{bottom:418.066667pt;}
.yca{bottom:419.066667pt;}
.y1b{bottom:420.066667pt;}
.y75{bottom:421.266667pt;}
.y39{bottom:426.800000pt;}
.ya7{bottom:429.800000pt;}
.yc1{bottom:436.600000pt;}
.yb{bottom:439.106667pt;}
.y2{bottom:441.106667pt;}
.yd8{bottom:442.893333pt;}
.y2f{bottom:444.333333pt;}
.y91{bottom:450.866667pt;}
.ya6{bottom:451.840000pt;}
.yb7{bottom:454.733333pt;}
.y62{bottom:462.333333pt;}
.yc0{bottom:462.640000pt;}
.y74{bottom:466.333333pt;}
.y40{bottom:474.840000pt;}
.y26{bottom:475.133333pt;}
.ya5{bottom:477.866667pt;}
.ya{bottom:481.133333pt;}
.y3a{bottom:486.173333pt;}
.ybf{bottom:492.666667pt;}
.y55{bottom:496.173333pt;}
.ya0{bottom:497.693333pt;}
.y90{bottom:498.173333pt;}
.ya4{bottom:504.893333pt;}
.ybe{bottom:518.706667pt;}
.yb2{bottom:519.440000pt;}
.y9e{bottom:523.733333pt;}
.y9d{bottom:527.773333pt;}
.y3f{bottom:533.226667pt;}
.ya3{bottom:533.933333pt;}
.y1{bottom:537.226667pt;}
.y25{bottom:552.226667pt;}
.y13{bottom:557.266667pt;}
.y8f{bottom:562.266667pt;}
.y9{bottom:568.266667pt;}
.yc2{bottom:571.106667pt;}
.yb3{bottom:571.866667pt;}
.y9c{bottom:574.840000pt;}
.ya9{bottom:577.600000pt;}
.y3e{bottom:578.306667pt;}
.y2e{bottom:586.533333pt;}
.h2a{height:23.033333pt;}
.h28{height:27.033333pt;}
.h29{height:39.785156pt;}
.h15{height:55.459049pt;}
.h24{height:55.615625pt;}
.h23{height:65.720703pt;}
.h9{height:65.836003pt;}
.h22{height:65.906250pt;}
.h1f{height:66.021875pt;}
.h2d{height:69.179688pt;}
.h2c{height:69.294987pt;}
.h2e{height:69.375000pt;}
.h2b{height:69.490625pt;}
.h1a{height:72.753971pt;}
.h13{height:72.843750pt;}
.h14{height:72.959375pt;}
.h19{height:77.403320pt;}
.h27{height:79.896875pt;}
.h12{height:83.130924pt;}
.h11{height:83.365625pt;}
.h3{height:93.507878pt;}
.h25{height:93.771875pt;}
.h2f{height:93.887500pt;}
.h26{height:97.240625pt;}
.h17{height:100.425846pt;}
.h18{height:100.541146pt;}
.h10{height:110.802799pt;}
.h30{height:110.918099pt;}
.hf{height:111.115625pt;}
.he{height:111.231250pt;}
.h4{height:112.492057pt;}
.h20{height:128.097721pt;}
.ha{height:128.213021pt;}
.hc{height:128.459375pt;}
.hb{height:128.575000pt;}
.h8{height:135.130990pt;}
.h6{height:135.396875pt;}
.h7{height:135.512500pt;}
.h1e{height:142.450000pt;}
.h21{height:166.261849pt;}
.h1d{height:166.731250pt;}
.h32{height:168.796615pt;}
.h5{height:184.075000pt;}
.h31{height:186.355208pt;}
.h1c{height:204.425977pt;}
.hd{height:205.003125pt;}
.h16{height:222.231250pt;}
.h1b{height:222.346875pt;}
.h2{height:277.846875pt;}
.h1{height:277.962500pt;}
.h0{height:720.000000pt;}
.w3{width:172.133333pt;}
.w2{width:212.173333pt;}
.w4{width:218.173333pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:23.799981pt;}
.xb{left:25.299981pt;}
.x8{left:41.066648pt;}
.xa{left:49.066648pt;}
.x1{left:64.033314pt;}
.x17{left:70.766648pt;}
.x2d{left:82.633314pt;}
.x3{left:88.399981pt;}
.x14{left:94.066648pt;}
.x18{left:100.799981pt;}
.x1f{left:113.466648pt;}
.x9{left:145.533314pt;}
.x16{left:200.533314pt;}
.x11{left:201.573314pt;}
.x1e{left:305.906648pt;}
.x10{left:457.999981pt;}
.x12{left:474.199981pt;}
.x1a{left:477.933314pt;}
.x22{left:496.693314pt;}
.x1b{left:507.973314pt;}
.x23{left:520.733314pt;}
.xf{left:536.439981pt;}
.x19{left:564.026648pt;}
.x2{left:566.506648pt;}
.xe{left:590.533314pt;}
.xc{left:623.733314pt;}
.x27{left:631.359981pt;}
.x29{left:632.866648pt;}
.x28{left:643.359981pt;}
.x2a{left:649.359981pt;}
.x15{left:656.199981pt;}
.x25{left:671.506667pt;}
.x26{left:675.533333pt;}
.x21{left:693.199981pt;}
.x4{left:694.599981pt;}
.x5{left:718.639981pt;}
.x2b{left:723.666648pt;}
.x20{left:729.933314pt;}
.x6{left:742.666648pt;}
.x2c{left:747.706648pt;}
.x1c{left:885.093314pt;}
.x24{left:908.706667pt;}
.x1d{left:915.133314pt;}
.x13{left:918.773314pt;}
.xd{left:1010.693314pt;}
}




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