
    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_43f4d74475108daa3bafa07f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_ee670b8f9c16850efa07ea81.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_895e869612b2cfc5c9150d1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_10de2989fc6768349c3cfcbb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5c80689db081d2c49708e99a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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_811f5e99b411ff8b6e91b2f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_4466ba890116d6e625b156de.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_987940d89752afc0b7047a6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.095801px;}
.ls5{letter-spacing:0.250560px;}
.ls3{letter-spacing:0.397461px;}
.ls4{letter-spacing:30.353778px;}
.ls6{letter-spacing:33.232051px;}
.ls0{letter-spacing:251.096942px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws0{word-spacing:-60.120000px;}
.ws2{word-spacing:-20.880000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-12.872101px;}
.ws5{word-spacing:-11.026585px;}
.ws9{word-spacing:-10.921291px;}
.wsb{word-spacing:-10.835118px;}
.wse{word-spacing:-10.833626px;}
.wsc{word-spacing:-10.827796px;}
.ws8{word-spacing:-10.825490px;}
.wsd{word-spacing:-10.823050px;}
.wsf{word-spacing:-10.822914px;}
.wsa{word-spacing:-10.819660px;}
.ws6{word-spacing:-10.718909px;}
.ws10{word-spacing:-10.718366px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-6.716315px;}
._a{margin-left:-5.638865px;}
._7{margin-left:-3.858429px;}
._6{margin-left:-2.822400px;}
._3{margin-left:-1.033573px;}
._4{width:1.058400px;}
._5{width:2.495173px;}
._f{width:3.535239px;}
._15{width:4.840829px;}
._10{width:6.290235px;}
._19{width:7.677749px;}
._11{width:8.896116px;}
._17{width:9.948916px;}
._16{width:11.425640px;}
._c{width:12.712928px;}
._9{width:14.108890px;}
._8{width:15.124116px;}
._14{width:16.485293px;}
._13{width:20.028472px;}
._18{width:21.244106px;}
._1c{width:23.114068px;}
._d{width:25.673044px;}
._e{width:27.112051px;}
._1a{width:28.894249px;}
._1b{width:29.937652px;}
._1f{width:31.079850px;}
._1d{width:33.211659px;}
._1e{width:34.255061px;}
._20{width:35.281246px;}
._12{width:84.877119px;}
._2{width:107.870478px;}
._0{width:137.260955px;}
._1{width:161.870478px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs12{font-size:47.426400px;}
.fsa{font-size:47.428800px;}
.fsc{font-size:47.874600px;}
.fs11{font-size:47.889000px;}
.fsf{font-size:47.889600px;}
.fsb{font-size:47.900400px;}
.fse{font-size:47.910600px;}
.fs10{font-size:47.936400px;}
.fsd{font-size:47.943000px;}
.fs9{font-size:48.790200px;}
.fs3{font-size:50.400000px;}
.fs8{font-size:56.956200px;}
.fs6{font-size:66.239400px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:96.479400px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y2{bottom:35.640000px;}
.y3b{bottom:50.040000px;}
.yc4{bottom:91.800000px;}
.y102{bottom:92.520000px;}
.ye3{bottom:96.120000px;}
.y8c{bottom:97.200000px;}
.ya2{bottom:97.560000px;}
.y67{bottom:99.720000px;}
.y53{bottom:100.439850px;}
.y118{bottom:105.840000px;}
.y3a{bottom:106.920000px;}
.y136{bottom:112.320000px;}
.ybe{bottom:115.200000px;}
.yff{bottom:115.920000px;}
.yde{bottom:119.520000px;}
.y9e{bottom:120.960000px;}
.y87{bottom:123.840000px;}
.y1c{bottom:127.080000px;}
.yb7{bottom:127.800000px;}
.yf8{bottom:128.520000px;}
.y117{bottom:129.600000px;}
.y39{bottom:130.320000px;}
.yd9{bottom:132.120000px;}
.y97{bottom:133.560000px;}
.y135{bottom:135.360000px;}
.y7f{bottom:137.160000px;}
.y52{bottom:139.320000px;}
.yf9{bottom:147.240000px;}
.y1b{bottom:150.479850px;}
.yb8{bottom:152.640000px;}
.y116{bottom:153.360000px;}
.y38{bottom:154.080000px;}
.y80{bottom:154.800000px;}
.y98{bottom:155.880000px;}
.yc3{bottom:156.600000px;}
.y134{bottom:158.040000px;}
.ye2{bottom:158.760000px;}
.y51{bottom:162.720000px;}
.y8b{bottom:163.080000px;}
.yfa{bottom:165.240000px;}
.ya1{bottom:169.200000px;}
.y81{bottom:172.440000px;}
.y1a{bottom:174.240000px;}
.yc2{bottom:175.320000px;}
.yb9{bottom:176.400000px;}
.ye1{bottom:177.120000px;}
.y115{bottom:177.480000px;}
.y37{bottom:177.840000px;}
.y99{bottom:178.560000px;}
.yda{bottom:180.000000px;}
.y133{bottom:180.720000px;}
.y8a{bottom:182.520000px;}
.yfb{bottom:183.960000px;}
.ya0{bottom:187.560000px;}
.y101{bottom:187.920000px;}
.y82{bottom:189.720000px;}
.yc1{bottom:194.040000px;}
.ye0{bottom:195.840000px;}
.y19{bottom:198.000000px;}
.y9a{bottom:200.879850px;}
.yba{bottom:201.240000px;}
.y89{bottom:201.600000px;}
.yfc{bottom:201.959850px;}
.y50{bottom:202.680000px;}
.ydb{bottom:203.040000px;}
.y132{bottom:203.400000px;}
.y9f{bottom:206.280000px;}
.y100{bottom:206.640000px;}
.y83{bottom:207.360000px;}
.yc0{bottom:212.760000px;}
.ydf{bottom:214.560000px;}
.y36{bottom:217.800000px;}
.yfd{bottom:220.680000px;}
.y88{bottom:221.040000px;}
.y18{bottom:221.760000px;}
.y9b{bottom:222.480000px;}
.y84{bottom:225.000000px;}
.ybb{bottom:225.360000px;}
.y131{bottom:226.440000px;}
.ydc{bottom:227.160000px;}
.ybf{bottom:231.480000px;}
.yfe{bottom:238.320000px;}
.y85{bottom:242.640000px;}
.y4f{bottom:244.800000px;}
.y9c{bottom:245.160000px;}
.y17{bottom:245.520000px;}
.y114{bottom:248.760000px;}
.y130{bottom:249.120000px;}
.ybc{bottom:249.840000px;}
.ydd{bottom:250.920000px;}
.y35{bottom:259.920000px;}
.y86{bottom:260.280000px;}
.y9d{bottom:267.480000px;}
.y4e{bottom:268.200000px;}
.y12f{bottom:271.800000px;}
.ybd{bottom:273.959850px;}
.y34{bottom:283.320000px;}
.y16{bottom:285.480000px;}
.y113{bottom:288.720000px;}
.y4d{bottom:291.959850px;}
.y12e{bottom:294.480000px;}
.yf7{bottom:296.280000px;}
.yd8{bottom:308.879850px;}
.y4c{bottom:315.720000px;}
.y7e{bottom:316.800000px;}
.y12d{bottom:317.160000px;}
.y33{bottom:322.920000px;}
.y15{bottom:327.600000px;}
.yb6{bottom:327.960000px;}
.y96{bottom:328.320000px;}
.y112{bottom:330.840000px;}
.yd7{bottom:332.280000px;}
.yf6{bottom:335.520000px;}
.y4b{bottom:339.480000px;}
.y12c{bottom:340.200000px;}
.y14{bottom:351.720000px;}
.y111{bottom:354.240000px;}
.y66{bottom:354.960000px;}
.y7d{bottom:355.680000px;}
.yf5{bottom:358.920000px;}
.y12b{bottom:362.880000px;}
.y4a{bottom:363.240000px;}
.y32{bottom:365.040000px;}
.yb5{bottom:367.200000px;}
.y95{bottom:367.560000px;}
.yd6{bottom:371.880000px;}
.y110{bottom:378.000000px;}
.y7c{bottom:379.440000px;}
.yf4{bottom:382.680000px;}
.y12a{bottom:385.560000px;}
.y31{bottom:388.440000px;}
.yb4{bottom:390.600000px;}
.y94{bottom:390.960000px;}
.y13{bottom:394.200000px;}
.yd5{bottom:395.280000px;}
.y10f{bottom:401.759850px;}
.y49{bottom:403.200000px;}
.yf3{bottom:406.440000px;}
.y129{bottom:408.240000px;}
.y30{bottom:412.200000px;}
.yb3{bottom:414.360000px;}
.y93{bottom:414.720000px;}
.y12{bottom:417.600000px;}
.yd4{bottom:419.040000px;}
.y7b{bottom:426.960000px;}
.yf2{bottom:430.200000px;}
.y128{bottom:431.280000px;}
.y2f{bottom:436.320000px;}
.yb2{bottom:438.120000px;}
.y10e{bottom:440.640000px;}
.y11{bottom:441.360000px;}
.yd3{bottom:442.800000px;}
.y48{bottom:445.320000px;}
.y7a{bottom:450.720000px;}
.y92{bottom:453.600000px;}
.y2e{bottom:460.080000px;}
.y10{bottom:465.120000px;}
.y47{bottom:468.720000px;}
.yf1{bottom:469.080000px;}
.y127{bottom:469.800000px;}
.y91{bottom:473.040000px;}
.y79{bottom:474.480000px;}
.y10d{bottom:475.200000px;}
.yb1{bottom:477.000000px;}
.yd2{bottom:481.680000px;}
.y2d{bottom:483.840000px;}
.yf0{bottom:488.520000px;}
.yf{bottom:488.880000px;}
.y65{bottom:489.240000px;}
.y46{bottom:492.480000px;}
.yd1{bottom:501.480000px;}
.y108{bottom:501.840000px;}
.y2c{bottom:507.600000px;}
.y126{bottom:510.840000px;}
.yb0{bottom:511.560000px;}
.yea{bottom:511.919850px;}
.ye{bottom:512.640000px;}
.y64{bottom:513.000000px;}
.y78{bottom:513.360000px;}
.y103{bottom:514.800000px;}
.y45{bottom:516.240000px;}
.y10c{bottom:523.080000px;}
.ye5{bottom:524.520000px;}
.ycd{bottom:524.880000px;}
.yef{bottom:529.919850px;}
.y2b{bottom:531.360000px;}
.y77{bottom:532.800000px;}
.y125{bottom:533.160000px;}
.yaa{bottom:534.960000px;}
.yd{bottom:536.759850px;}
.yc8{bottom:537.480000px;}
.y44{bottom:540.360000px;}
.y104{bottom:542.160000px;}
.y10b{bottom:542.520000px;}
.ye6{bottom:543.960000px;}
.ya5{bottom:547.560000px;}
.yee{bottom:548.640000px;}
.yc9{bottom:556.200000px;}
.y72{bottom:559.440000px;}
.yc{bottom:560.520000px;}
.y10a{bottom:561.600000px;}
.yd0{bottom:563.400000px;}
.y43{bottom:564.120000px;}
.yaf{bottom:565.919850px;}
.yed{bottom:567.360000px;}
.ya6{bottom:567.720000px;}
.y105{bottom:568.800000px;}
.y2a{bottom:571.320000px;}
.y6c{bottom:572.400000px;}
.yca{bottom:574.919850px;}
.y63{bottom:575.640000px;}
.y124{bottom:578.880000px;}
.y109{bottom:581.040000px;}
.ycf{bottom:582.120000px;}
.ye7{bottom:582.840000px;}
.yb{bottom:584.280000px;}
.yae{bottom:584.640000px;}
.yec{bottom:586.080000px;}
.y76{bottom:587.520000px;}
.y42{bottom:587.880000px;}
.ycb{bottom:594.360000px;}
.y62{bottom:595.080000px;}
.y106{bottom:596.160000px;}
.y6d{bottom:596.880000px;}
.yce{bottom:600.480000px;}
.y123{bottom:601.560000px;}
.ye8{bottom:602.280000px;}
.yad{bottom:603.360000px;}
.yeb{bottom:604.800000px;}
.y75{bottom:606.600000px;}
.ya{bottom:608.040000px;}
.ycc{bottom:613.080000px;}
.y29{bottom:613.440000px;}
.y5d{bottom:619.200000px;}
.y6e{bottom:621.000000px;}
.yac{bottom:621.720000px;}
.ye9{bottom:622.080000px;}
.y107{bottom:623.160000px;}
.y122{bottom:624.240000px;}
.y74{bottom:626.400000px;}
.y41{bottom:627.840000px;}
.ya7{bottom:628.200000px;}
.y9{bottom:631.800000px;}
.y28{bottom:636.840000px;}
.yab{bottom:640.440000px;}
.y54{bottom:640.800000px;}
.y6f{bottom:645.480000px;}
.y121{bottom:647.280000px;}
.ya8{bottom:648.360000px;}
.y27{bottom:660.600000px;}
.y55{bottom:663.480000px;}
.y73{bottom:664.560000px;}
.ya9{bottom:668.880000px;}
.y40{bottom:669.600000px;}
.y70{bottom:669.960000px;}
.y8{bottom:671.760000px;}
.yc7{bottom:677.880000px;}
.ye4{bottom:678.240000px;}
.y26{bottom:684.360000px;}
.y56{bottom:685.080000px;}
.y61{bottom:686.160000px;}
.y120{bottom:692.640000px;}
.y3f{bottom:693.000000px;}
.y71{bottom:694.440000px;}
.yc6{bottom:701.640000px;}
.y90{bottom:702.000000px;}
.y57{bottom:707.760000px;}
.y25{bottom:708.120000px;}
.y7{bottom:712.800000px;}
.y11f{bottom:715.320000px;}
.y3e{bottom:717.120000px;}
.yc5{bottom:725.400000px;}
.ya4{bottom:725.760000px;}
.y58{bottom:729.360000px;}
.y60{bottom:729.720000px;}
.y24{bottom:731.880000px;}
.y6{bottom:734.760000px;}
.y11e{bottom:738.360000px;}
.y3d{bottom:740.880000px;}
.y8f{bottom:741.240000px;}
.y6b{bottom:749.520000px;}
.y5f{bottom:751.320000px;}
.y59{bottom:751.680000px;}
.y23{bottom:755.640000px;}
.y5{bottom:757.800000px;}
.y11d{bottom:761.040000px;}
.y8e{bottom:764.640000px;}
.ya3{bottom:765.000000px;}
.y5e{bottom:772.920000px;}
.y5a{bottom:774.360000px;}
.y22{bottom:779.760000px;}
.y3c{bottom:780.120000px;}
.y11c{bottom:783.720000px;}
.y8d{bottom:788.400000px;}
.y6a{bottom:788.760000px;}
.y5b{bottom:795.960000px;}
.y4{bottom:802.080000px;}
.y21{bottom:803.519850px;}
.y11b{bottom:806.400000px;}
.y69{bottom:812.160000px;}
.y5c{bottom:818.640000px;}
.y20{bottom:827.280000px;}
.y11a{bottom:829.440000px;}
.y3{bottom:833.400000px;}
.y68{bottom:835.920000px;}
.y1f{bottom:851.040000px;}
.y119{bottom:852.120000px;}
.y1e{bottom:874.800000px;}
.y1{bottom:877.680000px;}
.y1d{bottom:923.040000px;}
.h2{height:34.157813px;}
.h16{height:34.435086px;}
.he{height:34.436829px;}
.h10{height:34.760513px;}
.h15{height:34.770968px;}
.h13{height:34.771404px;}
.hf{height:34.779246px;}
.h12{height:34.786651px;}
.h14{height:34.805384px;}
.h11{height:34.810176px;}
.hd{height:35.425306px;}
.hc{height:41.354428px;}
.h5{height:45.992396px;}
.ha{height:47.988281px;}
.hb{height:48.796875px;}
.h7{height:49.992188px;}
.h9{height:51.679688px;}
.h17{height:52.031250px;}
.h4{height:56.604375px;}
.h8{height:57.990937px;}
.h6{height:59.235469px;}
.h3{height:65.387406px;}
.h1{height:162.981562px;}
.h0{height:972.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x2{left:81.000000px;}
.x1{left:83.160000px;}
.x37{left:108.000000px;}
.x9{left:113.400000px;}
.x23{left:124.560000px;}
.x22{left:130.320000px;}
.x31{left:132.120000px;}
.x1b{left:133.560000px;}
.x30{left:137.880000px;}
.x1a{left:139.320000px;}
.x2f{left:145.439850px;}
.x2e{left:151.560000px;}
.x4{left:158.040000px;}
.x24{left:161.280000px;}
.x26{left:165.960000px;}
.x16{left:171.360000px;}
.x2b{left:173.520000px;}
.x7{left:174.960000px;}
.x15{left:177.480000px;}
.x2a{left:179.640000px;}
.xb{left:187.560000px;}
.x3{left:189.720000px;}
.x11{left:190.800000px;}
.xa{left:195.120000px;}
.x10{left:196.920000px;}
.x34{left:232.200000px;}
.x32{left:234.720000px;}
.xc{left:254.160000px;}
.x1f{left:260.280000px;}
.x12{left:261.360000px;}
.x1c{left:268.560000px;}
.x27{left:276.840000px;}
.x2c{left:279.360000px;}
.x5{left:309.959850px;}
.x6{left:311.760000px;}
.x8{left:338.760000px;}
.xd{left:470.880000px;}
.x13{left:494.640000px;}
.x35{left:509.400000px;}
.x17{left:522.720000px;}
.x33{left:523.800000px;}
.x25{left:534.600000px;}
.xf{left:572.400000px;}
.x20{left:576.000000px;}
.xe{left:586.440000px;}
.x1d{left:596.520000px;}
.x28{left:600.840000px;}
.x14{left:603.360000px;}
.x19{left:626.040000px;}
.x18{left:628.919850px;}
.x2d{left:631.800000px;}
.x29{left:660.240000px;}
.x36{left:663.120000px;}
.x21{left:672.120000px;}
.x1e{left:675.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.085156pt;}
.ls5{letter-spacing:0.222720pt;}
.ls3{letter-spacing:0.353298pt;}
.ls4{letter-spacing:26.981136pt;}
.ls6{letter-spacing:29.539601pt;}
.ls0{letter-spacing:223.197282pt;}
.ws7{word-spacing:-64.000000pt;}
.ws0{word-spacing:-53.440000pt;}
.ws2{word-spacing:-18.560000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-11.441868pt;}
.ws5{word-spacing:-9.801409pt;}
.ws9{word-spacing:-9.707814pt;}
.wsb{word-spacing:-9.631216pt;}
.wse{word-spacing:-9.629890pt;}
.wsc{word-spacing:-9.624707pt;}
.ws8{word-spacing:-9.622658pt;}
.wsd{word-spacing:-9.620489pt;}
.wsf{word-spacing:-9.620368pt;}
.wsa{word-spacing:-9.617475pt;}
.ws6{word-spacing:-9.527919pt;}
.ws10{word-spacing:-9.527437pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-5.970058pt;}
._a{margin-left:-5.012324pt;}
._7{margin-left:-3.429714pt;}
._6{margin-left:-2.508800pt;}
._3{margin-left:-0.918732pt;}
._4{width:0.940800pt;}
._5{width:2.217932pt;}
._f{width:3.142435pt;}
._15{width:4.302959pt;}
._10{width:5.591320pt;}
._19{width:6.824666pt;}
._11{width:7.907659pt;}
._17{width:8.843481pt;}
._16{width:10.156125pt;}
._c{width:11.300380pt;}
._9{width:12.541236pt;}
._8{width:13.443659pt;}
._14{width:14.653594pt;}
._13{width:17.803086pt;}
._18{width:18.883650pt;}
._1c{width:20.545838pt;}
._d{width:22.820484pt;}
._e{width:24.099601pt;}
._1a{width:25.683777pt;}
._1b{width:26.611246pt;}
._1f{width:27.626533pt;}
._1d{width:29.521474pt;}
._1e{width:30.448943pt;}
._20{width:31.361108pt;}
._12{width:75.446328pt;}
._2{width:95.884869pt;}
._0{width:122.009738pt;}
._1{width:143.884869pt;}
.fs7{font-size:37.120000pt;}
.fs12{font-size:42.156800pt;}
.fsa{font-size:42.158933pt;}
.fsc{font-size:42.555200pt;}
.fs11{font-size:42.568000pt;}
.fsf{font-size:42.568533pt;}
.fsb{font-size:42.578133pt;}
.fse{font-size:42.587200pt;}
.fs10{font-size:42.610133pt;}
.fsd{font-size:42.616000pt;}
.fs9{font-size:43.369067pt;}
.fs3{font-size:44.800000pt;}
.fs8{font-size:50.627733pt;}
.fs6{font-size:58.879467pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:85.759467pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:31.680000pt;}
.y3b{bottom:44.480000pt;}
.yc4{bottom:81.600000pt;}
.y102{bottom:82.240000pt;}
.ye3{bottom:85.440000pt;}
.y8c{bottom:86.400000pt;}
.ya2{bottom:86.720000pt;}
.y67{bottom:88.640000pt;}
.y53{bottom:89.279867pt;}
.y118{bottom:94.080000pt;}
.y3a{bottom:95.040000pt;}
.y136{bottom:99.840000pt;}
.ybe{bottom:102.400000pt;}
.yff{bottom:103.040000pt;}
.yde{bottom:106.240000pt;}
.y9e{bottom:107.520000pt;}
.y87{bottom:110.080000pt;}
.y1c{bottom:112.960000pt;}
.yb7{bottom:113.600000pt;}
.yf8{bottom:114.240000pt;}
.y117{bottom:115.200000pt;}
.y39{bottom:115.840000pt;}
.yd9{bottom:117.440000pt;}
.y97{bottom:118.720000pt;}
.y135{bottom:120.320000pt;}
.y7f{bottom:121.920000pt;}
.y52{bottom:123.840000pt;}
.yf9{bottom:130.880000pt;}
.y1b{bottom:133.759867pt;}
.yb8{bottom:135.680000pt;}
.y116{bottom:136.320000pt;}
.y38{bottom:136.960000pt;}
.y80{bottom:137.600000pt;}
.y98{bottom:138.560000pt;}
.yc3{bottom:139.200000pt;}
.y134{bottom:140.480000pt;}
.ye2{bottom:141.120000pt;}
.y51{bottom:144.640000pt;}
.y8b{bottom:144.960000pt;}
.yfa{bottom:146.880000pt;}
.ya1{bottom:150.400000pt;}
.y81{bottom:153.280000pt;}
.y1a{bottom:154.880000pt;}
.yc2{bottom:155.840000pt;}
.yb9{bottom:156.800000pt;}
.ye1{bottom:157.440000pt;}
.y115{bottom:157.760000pt;}
.y37{bottom:158.080000pt;}
.y99{bottom:158.720000pt;}
.yda{bottom:160.000000pt;}
.y133{bottom:160.640000pt;}
.y8a{bottom:162.240000pt;}
.yfb{bottom:163.520000pt;}
.ya0{bottom:166.720000pt;}
.y101{bottom:167.040000pt;}
.y82{bottom:168.640000pt;}
.yc1{bottom:172.480000pt;}
.ye0{bottom:174.080000pt;}
.y19{bottom:176.000000pt;}
.y9a{bottom:178.559867pt;}
.yba{bottom:178.880000pt;}
.y89{bottom:179.200000pt;}
.yfc{bottom:179.519867pt;}
.y50{bottom:180.160000pt;}
.ydb{bottom:180.480000pt;}
.y132{bottom:180.800000pt;}
.y9f{bottom:183.360000pt;}
.y100{bottom:183.680000pt;}
.y83{bottom:184.320000pt;}
.yc0{bottom:189.120000pt;}
.ydf{bottom:190.720000pt;}
.y36{bottom:193.600000pt;}
.yfd{bottom:196.160000pt;}
.y88{bottom:196.480000pt;}
.y18{bottom:197.120000pt;}
.y9b{bottom:197.760000pt;}
.y84{bottom:200.000000pt;}
.ybb{bottom:200.320000pt;}
.y131{bottom:201.280000pt;}
.ydc{bottom:201.920000pt;}
.ybf{bottom:205.760000pt;}
.yfe{bottom:211.840000pt;}
.y85{bottom:215.680000pt;}
.y4f{bottom:217.600000pt;}
.y9c{bottom:217.920000pt;}
.y17{bottom:218.240000pt;}
.y114{bottom:221.120000pt;}
.y130{bottom:221.440000pt;}
.ybc{bottom:222.080000pt;}
.ydd{bottom:223.040000pt;}
.y35{bottom:231.040000pt;}
.y86{bottom:231.360000pt;}
.y9d{bottom:237.760000pt;}
.y4e{bottom:238.400000pt;}
.y12f{bottom:241.600000pt;}
.ybd{bottom:243.519867pt;}
.y34{bottom:251.840000pt;}
.y16{bottom:253.760000pt;}
.y113{bottom:256.640000pt;}
.y4d{bottom:259.519867pt;}
.y12e{bottom:261.760000pt;}
.yf7{bottom:263.360000pt;}
.yd8{bottom:274.559867pt;}
.y4c{bottom:280.640000pt;}
.y7e{bottom:281.600000pt;}
.y12d{bottom:281.920000pt;}
.y33{bottom:287.040000pt;}
.y15{bottom:291.200000pt;}
.yb6{bottom:291.520000pt;}
.y96{bottom:291.840000pt;}
.y112{bottom:294.080000pt;}
.yd7{bottom:295.360000pt;}
.yf6{bottom:298.240000pt;}
.y4b{bottom:301.760000pt;}
.y12c{bottom:302.400000pt;}
.y14{bottom:312.640000pt;}
.y111{bottom:314.880000pt;}
.y66{bottom:315.520000pt;}
.y7d{bottom:316.160000pt;}
.yf5{bottom:319.040000pt;}
.y12b{bottom:322.560000pt;}
.y4a{bottom:322.880000pt;}
.y32{bottom:324.480000pt;}
.yb5{bottom:326.400000pt;}
.y95{bottom:326.720000pt;}
.yd6{bottom:330.560000pt;}
.y110{bottom:336.000000pt;}
.y7c{bottom:337.280000pt;}
.yf4{bottom:340.160000pt;}
.y12a{bottom:342.720000pt;}
.y31{bottom:345.280000pt;}
.yb4{bottom:347.200000pt;}
.y94{bottom:347.520000pt;}
.y13{bottom:350.400000pt;}
.yd5{bottom:351.360000pt;}
.y10f{bottom:357.119867pt;}
.y49{bottom:358.400000pt;}
.yf3{bottom:361.280000pt;}
.y129{bottom:362.880000pt;}
.y30{bottom:366.400000pt;}
.yb3{bottom:368.320000pt;}
.y93{bottom:368.640000pt;}
.y12{bottom:371.200000pt;}
.yd4{bottom:372.480000pt;}
.y7b{bottom:379.520000pt;}
.yf2{bottom:382.400000pt;}
.y128{bottom:383.360000pt;}
.y2f{bottom:387.840000pt;}
.yb2{bottom:389.440000pt;}
.y10e{bottom:391.680000pt;}
.y11{bottom:392.320000pt;}
.yd3{bottom:393.600000pt;}
.y48{bottom:395.840000pt;}
.y7a{bottom:400.640000pt;}
.y92{bottom:403.200000pt;}
.y2e{bottom:408.960000pt;}
.y10{bottom:413.440000pt;}
.y47{bottom:416.640000pt;}
.yf1{bottom:416.960000pt;}
.y127{bottom:417.600000pt;}
.y91{bottom:420.480000pt;}
.y79{bottom:421.760000pt;}
.y10d{bottom:422.400000pt;}
.yb1{bottom:424.000000pt;}
.yd2{bottom:428.160000pt;}
.y2d{bottom:430.080000pt;}
.yf0{bottom:434.240000pt;}
.yf{bottom:434.560000pt;}
.y65{bottom:434.880000pt;}
.y46{bottom:437.760000pt;}
.yd1{bottom:445.760000pt;}
.y108{bottom:446.080000pt;}
.y2c{bottom:451.200000pt;}
.y126{bottom:454.080000pt;}
.yb0{bottom:454.720000pt;}
.yea{bottom:455.039867pt;}
.ye{bottom:455.680000pt;}
.y64{bottom:456.000000pt;}
.y78{bottom:456.320000pt;}
.y103{bottom:457.600000pt;}
.y45{bottom:458.880000pt;}
.y10c{bottom:464.960000pt;}
.ye5{bottom:466.240000pt;}
.ycd{bottom:466.560000pt;}
.yef{bottom:471.039867pt;}
.y2b{bottom:472.320000pt;}
.y77{bottom:473.600000pt;}
.y125{bottom:473.920000pt;}
.yaa{bottom:475.520000pt;}
.yd{bottom:477.119867pt;}
.yc8{bottom:477.760000pt;}
.y44{bottom:480.320000pt;}
.y104{bottom:481.920000pt;}
.y10b{bottom:482.240000pt;}
.ye6{bottom:483.520000pt;}
.ya5{bottom:486.720000pt;}
.yee{bottom:487.680000pt;}
.yc9{bottom:494.400000pt;}
.y72{bottom:497.280000pt;}
.yc{bottom:498.240000pt;}
.y10a{bottom:499.200000pt;}
.yd0{bottom:500.800000pt;}
.y43{bottom:501.440000pt;}
.yaf{bottom:503.039867pt;}
.yed{bottom:504.320000pt;}
.ya6{bottom:504.640000pt;}
.y105{bottom:505.600000pt;}
.y2a{bottom:507.840000pt;}
.y6c{bottom:508.800000pt;}
.yca{bottom:511.039867pt;}
.y63{bottom:511.680000pt;}
.y124{bottom:514.560000pt;}
.y109{bottom:516.480000pt;}
.ycf{bottom:517.440000pt;}
.ye7{bottom:518.080000pt;}
.yb{bottom:519.360000pt;}
.yae{bottom:519.680000pt;}
.yec{bottom:520.960000pt;}
.y76{bottom:522.240000pt;}
.y42{bottom:522.560000pt;}
.ycb{bottom:528.320000pt;}
.y62{bottom:528.960000pt;}
.y106{bottom:529.920000pt;}
.y6d{bottom:530.560000pt;}
.yce{bottom:533.760000pt;}
.y123{bottom:534.720000pt;}
.ye8{bottom:535.360000pt;}
.yad{bottom:536.320000pt;}
.yeb{bottom:537.600000pt;}
.y75{bottom:539.200000pt;}
.ya{bottom:540.480000pt;}
.ycc{bottom:544.960000pt;}
.y29{bottom:545.280000pt;}
.y5d{bottom:550.400000pt;}
.y6e{bottom:552.000000pt;}
.yac{bottom:552.640000pt;}
.ye9{bottom:552.960000pt;}
.y107{bottom:553.920000pt;}
.y122{bottom:554.880000pt;}
.y74{bottom:556.800000pt;}
.y41{bottom:558.080000pt;}
.ya7{bottom:558.400000pt;}
.y9{bottom:561.600000pt;}
.y28{bottom:566.080000pt;}
.yab{bottom:569.280000pt;}
.y54{bottom:569.600000pt;}
.y6f{bottom:573.760000pt;}
.y121{bottom:575.360000pt;}
.ya8{bottom:576.320000pt;}
.y27{bottom:587.200000pt;}
.y55{bottom:589.760000pt;}
.y73{bottom:590.720000pt;}
.ya9{bottom:594.560000pt;}
.y40{bottom:595.200000pt;}
.y70{bottom:595.520000pt;}
.y8{bottom:597.120000pt;}
.yc7{bottom:602.560000pt;}
.ye4{bottom:602.880000pt;}
.y26{bottom:608.320000pt;}
.y56{bottom:608.960000pt;}
.y61{bottom:609.920000pt;}
.y120{bottom:615.680000pt;}
.y3f{bottom:616.000000pt;}
.y71{bottom:617.280000pt;}
.yc6{bottom:623.680000pt;}
.y90{bottom:624.000000pt;}
.y57{bottom:629.120000pt;}
.y25{bottom:629.440000pt;}
.y7{bottom:633.600000pt;}
.y11f{bottom:635.840000pt;}
.y3e{bottom:637.440000pt;}
.yc5{bottom:644.800000pt;}
.ya4{bottom:645.120000pt;}
.y58{bottom:648.320000pt;}
.y60{bottom:648.640000pt;}
.y24{bottom:650.560000pt;}
.y6{bottom:653.120000pt;}
.y11e{bottom:656.320000pt;}
.y3d{bottom:658.560000pt;}
.y8f{bottom:658.880000pt;}
.y6b{bottom:666.240000pt;}
.y5f{bottom:667.840000pt;}
.y59{bottom:668.160000pt;}
.y23{bottom:671.680000pt;}
.y5{bottom:673.600000pt;}
.y11d{bottom:676.480000pt;}
.y8e{bottom:679.680000pt;}
.ya3{bottom:680.000000pt;}
.y5e{bottom:687.040000pt;}
.y5a{bottom:688.320000pt;}
.y22{bottom:693.120000pt;}
.y3c{bottom:693.440000pt;}
.y11c{bottom:696.640000pt;}
.y8d{bottom:700.800000pt;}
.y6a{bottom:701.120000pt;}
.y5b{bottom:707.520000pt;}
.y4{bottom:712.960000pt;}
.y21{bottom:714.239867pt;}
.y11b{bottom:716.800000pt;}
.y69{bottom:721.920000pt;}
.y5c{bottom:727.680000pt;}
.y20{bottom:735.360000pt;}
.y11a{bottom:737.280000pt;}
.y3{bottom:740.800000pt;}
.y68{bottom:743.040000pt;}
.y1f{bottom:756.480000pt;}
.y119{bottom:757.440000pt;}
.y1e{bottom:777.600000pt;}
.y1{bottom:780.160000pt;}
.y1d{bottom:820.480000pt;}
.h2{height:30.362500pt;}
.h16{height:30.608966pt;}
.he{height:30.610515pt;}
.h10{height:30.898234pt;}
.h15{height:30.907527pt;}
.h13{height:30.907915pt;}
.hf{height:30.914885pt;}
.h12{height:30.921468pt;}
.h14{height:30.938119pt;}
.h11{height:30.942379pt;}
.hd{height:31.489161pt;}
.hc{height:36.759492pt;}
.h5{height:40.882130pt;}
.ha{height:42.656250pt;}
.hb{height:43.375000pt;}
.h7{height:44.437500pt;}
.h9{height:45.937500pt;}
.h17{height:46.250000pt;}
.h4{height:50.315000pt;}
.h8{height:51.547500pt;}
.h6{height:52.653750pt;}
.h3{height:58.122139pt;}
.h1{height:144.872500pt;}
.h0{height:864.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x2{left:72.000000pt;}
.x1{left:73.920000pt;}
.x37{left:96.000000pt;}
.x9{left:100.800000pt;}
.x23{left:110.720000pt;}
.x22{left:115.840000pt;}
.x31{left:117.440000pt;}
.x1b{left:118.720000pt;}
.x30{left:122.560000pt;}
.x1a{left:123.840000pt;}
.x2f{left:129.279867pt;}
.x2e{left:134.720000pt;}
.x4{left:140.480000pt;}
.x24{left:143.360000pt;}
.x26{left:147.520000pt;}
.x16{left:152.320000pt;}
.x2b{left:154.240000pt;}
.x7{left:155.520000pt;}
.x15{left:157.760000pt;}
.x2a{left:159.680000pt;}
.xb{left:166.720000pt;}
.x3{left:168.640000pt;}
.x11{left:169.600000pt;}
.xa{left:173.440000pt;}
.x10{left:175.040000pt;}
.x34{left:206.400000pt;}
.x32{left:208.640000pt;}
.xc{left:225.920000pt;}
.x1f{left:231.360000pt;}
.x12{left:232.320000pt;}
.x1c{left:238.720000pt;}
.x27{left:246.080000pt;}
.x2c{left:248.320000pt;}
.x5{left:275.519867pt;}
.x6{left:277.120000pt;}
.x8{left:301.120000pt;}
.xd{left:418.560000pt;}
.x13{left:439.680000pt;}
.x35{left:452.800000pt;}
.x17{left:464.640000pt;}
.x33{left:465.600000pt;}
.x25{left:475.200000pt;}
.xf{left:508.800000pt;}
.x20{left:512.000000pt;}
.xe{left:521.280000pt;}
.x1d{left:530.240000pt;}
.x28{left:534.080000pt;}
.x14{left:536.320000pt;}
.x19{left:556.480000pt;}
.x18{left:559.039867pt;}
.x2d{left:561.600000pt;}
.x29{left:586.880000pt;}
.x36{left:589.440000pt;}
.x21{left:597.440000pt;}
.x1e{left:600.640000pt;}
}




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