
    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_7da6f5616be164e04d018ae5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_223e9b9a62329c2da45a9f18.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_7b7ceecb4cfc409033919a6f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.836426;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_d3e5feaa595ff198167dc86d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.038574;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_46740c8fda39b3df14ed1f70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.303000;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_e33dc9dedb11714770d5a15d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a8469d3e9c89270f4b6a2d9c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_1360abfceafcb04dd8ea726a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000540px;}
.ls1{letter-spacing:0.065280px;}
.ls0{letter-spacing:0.084540px;}
.ls2{letter-spacing:19.072200px;}
.ls8{letter-spacing:33.437820px;}
.ls6{letter-spacing:40.149660px;}
.ls4{letter-spacing:43.320000px;}
.ls9{letter-spacing:47.940000px;}
.ls5{letter-spacing:52.560000px;}
.ls12{letter-spacing:54.000000px;}
.ls7{letter-spacing:61.800000px;}
.lsf{letter-spacing:66.420000px;}
.lse{letter-spacing:68.730000px;}
.ls10{letter-spacing:75.660000px;}
.ls14{letter-spacing:83.999160px;}
.ls13{letter-spacing:98.638560px;}
.ls15{letter-spacing:98.638740px;}
.ls11{letter-spacing:98.639100px;}
.lsc{letter-spacing:104.025780px;}
.lsd{letter-spacing:122.304780px;}
.lsb{letter-spacing:125.040000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws84{word-spacing:-136.500000px;}
.wse{word-spacing:-93.408000px;}
.ws51{word-spacing:-86.736000px;}
.ws94{word-spacing:-82.327407px;}
.ws98{word-spacing:-80.069613px;}
.ws20{word-spacing:-80.064000px;}
.ws8a{word-spacing:-73.392000px;}
.ws41{word-spacing:-66.720000px;}
.ws1b{word-spacing:-58.800000px;}
.ws6f{word-spacing:-56.712000px;}
.wsf{word-spacing:-55.891920px;}
.ws4f{word-spacing:-54.600000px;}
.ws63{word-spacing:-53.376000px;}
.ws36{word-spacing:-50.400000px;}
.ws18{word-spacing:-46.731760px;}
.ws11{word-spacing:-46.707684px;}
.ws12{word-spacing:-46.707515px;}
.ws10{word-spacing:-46.592712px;}
.ws14{word-spacing:-46.447954px;}
.ws9a{word-spacing:-45.576000px;}
.ws97{word-spacing:-45.040082px;}
.ws4e{word-spacing:-43.272110px;}
.ws50{word-spacing:-43.264818px;}
.ws4c{word-spacing:-43.251310px;}
.ws4a{word-spacing:-42.000000px;}
.ws81{word-spacing:-41.703345px;}
.ws2{word-spacing:-41.703176px;}
.ws1{word-spacing:-41.600446px;}
.ws0{word-spacing:-41.600277px;}
.ws7{word-spacing:-40.915332px;}
.ws4{word-spacing:-40.874683px;}
.ws6{word-spacing:-40.860737px;}
.ws5{word-spacing:-40.854784px;}
.ws3d{word-spacing:-40.034722px;}
.ws2b{word-spacing:-40.033871px;}
.ws1f{word-spacing:-40.033814px;}
.ws22{word-spacing:-39.968906px;}
.ws2a{word-spacing:-39.935906px;}
.ws35{word-spacing:-39.903964px;}
.ws21{word-spacing:-39.902095px;}
.ws96{word-spacing:-39.900000px;}
.ws38{word-spacing:-39.894387px;}
.ws39{word-spacing:-39.868986px;}
.ws2f{word-spacing:-39.868839px;}
.ws3f{word-spacing:-39.868291px;}
.ws3c{word-spacing:-39.846412px;}
.ws3b{word-spacing:-39.844819px;}
.ws32{word-spacing:-39.830299px;}
.ws28{word-spacing:-39.825875px;}
.ws31{word-spacing:-39.781528px;}
.ws2c{word-spacing:-39.776910px;}
.ws3a{word-spacing:-39.757716px;}
.ws33{word-spacing:-39.738867px;}
.ws54{word-spacing:-37.800000px;}
.ws88{word-spacing:-36.718432px;}
.ws8d{word-spacing:-36.699004px;}
.ws86{word-spacing:-36.698834px;}
.ws93{word-spacing:-36.698570px;}
.ws90{word-spacing:-36.698400px;}
.ws87{word-spacing:-36.608183px;}
.ws92{word-spacing:-36.527530px;}
.ws70{word-spacing:-35.700000px;}
.ws1d{word-spacing:-33.600000px;}
.ws27{word-spacing:-33.363118px;}
.ws46{word-spacing:-33.362948px;}
.ws44{word-spacing:-33.361285px;}
.ws26{word-spacing:-33.281480px;}
.ws42{word-spacing:-33.243535px;}
.ws48{word-spacing:-33.133465px;}
.ws9{word-spacing:-31.828479px;}
.wsb{word-spacing:-31.818539px;}
.ws8{word-spacing:-31.796202px;}
.wsa{word-spacing:-31.791005px;}
.ws95{word-spacing:-31.694494px;}
.ws5a{word-spacing:-31.112333px;}
.ws9c{word-spacing:-30.384000px;}
.ws7c{word-spacing:-30.025701px;}
.ws7d{word-spacing:-29.400000px;}
.ws73{word-spacing:-28.373565px;}
.ws6c{word-spacing:-28.358777px;}
.ws74{word-spacing:-28.357673px;}
.ws78{word-spacing:-28.298075px;}
.ws7a{word-spacing:-28.282510px;}
.ws76{word-spacing:-28.266806px;}
.ws75{word-spacing:-28.106112px;}
.ws85{word-spacing:-28.087199px;}
.ws6b{word-spacing:-26.703912px;}
.ws61{word-spacing:-26.690324px;}
.ws5d{word-spacing:-26.690154px;}
.ws5c{word-spacing:-26.644726px;}
.ws5f{word-spacing:-26.624674px;}
.ws65{word-spacing:-26.595132px;}
.ws67{word-spacing:-26.550178px;}
.ws69{word-spacing:-26.505661px;}
.ws99{word-spacing:-21.057449px;}
.ws9e{word-spacing:-14.103553px;}
.ws9b{word-spacing:-14.099018px;}
.ws9d{word-spacing:-14.062224px;}
.ws15{word-spacing:-12.123760px;}
.ws16{word-spacing:-12.099684px;}
.ws13{word-spacing:-12.099515px;}
.ws1a{word-spacing:-11.985732px;}
.ws17{word-spacing:-11.855505px;}
.ws19{word-spacing:-11.733014px;}
.ws4d{word-spacing:-11.258665px;}
.ws4b{word-spacing:-11.235799px;}
.ws7b{word-spacing:-10.803345px;}
.ws40{word-spacing:-10.393455px;}
.ws3e{word-spacing:-10.393285px;}
.ws1e{word-spacing:-10.391528px;}
.ws2d{word-spacing:-10.391357px;}
.ws24{word-spacing:-10.370892px;}
.ws23{word-spacing:-10.370722px;}
.ws37{word-spacing:-10.369077px;}
.ws29{word-spacing:-10.272925px;}
.ws2e{word-spacing:-10.238077px;}
.ws30{word-spacing:-10.236157px;}
.ws8f{word-spacing:-9.526262px;}
.ws8e{word-spacing:-9.507004px;}
.ws8c{word-spacing:-9.506834px;}
.ws8b{word-spacing:-9.417544px;}
.ws91{word-spacing:-9.377820px;}
.ws89{word-spacing:-8.661298px;}
.ws47{word-spacing:-8.661127px;}
.ws25{word-spacing:-8.643118px;}
.ws34{word-spacing:-8.642948px;}
.ws43{word-spacing:-8.606880px;}
.ws49{word-spacing:-8.606160px;}
.ws45{word-spacing:-8.562161px;}
.ws83{word-spacing:-8.210494px;}
.ws82{word-spacing:-8.132343px;}
.ws55{word-spacing:-7.794538px;}
.ws59{word-spacing:-7.794369px;}
.ws56{word-spacing:-7.794198px;}
.ws58{word-spacing:-7.778211px;}
.ws57{word-spacing:-7.778041px;}
.ws80{word-spacing:-7.704737px;}
.ws72{word-spacing:-7.361565px;}
.ws6d{word-spacing:-7.346777px;}
.ws6e{word-spacing:-7.346608px;}
.ws71{word-spacing:-7.277131px;}
.ws79{word-spacing:-7.230436px;}
.ws77{word-spacing:-7.215116px;}
.ws60{word-spacing:-6.928800px;}
.ws5b{word-spacing:-6.914324px;}
.ws64{word-spacing:-6.914154px;}
.ws66{word-spacing:-6.899040px;}
.ws5e{word-spacing:-6.885420px;}
.ws1c{word-spacing:-6.868446px;}
.ws6a{word-spacing:-6.849354px;}
.ws62{word-spacing:-6.849184px;}
.ws68{word-spacing:-6.833700px;}
.ws7f{word-spacing:-6.050438px;}
.ws7e{word-spacing:-6.050268px;}
.ws53{word-spacing:-5.630702px;}
.ws3{word-spacing:-5.630532px;}
.ws52{word-spacing:-5.630353px;}
.wsd{word-spacing:-5.566195px;}
.wsc{word-spacing:0.000000px;}
._d{margin-left:-5146.367760px;}
._b{margin-left:-3207.289140px;}
._1{margin-left:-3195.466703px;}
._0{width:1.123968px;}
._3{width:20.379582px;}
._2{width:25.647883px;}
._a{width:27.709825px;}
._c{width:31.099041px;}
._e{width:37.834929px;}
._7{width:41.237930px;}
._8{width:44.389658px;}
._6{width:47.677218px;}
._4{width:1232.454471px;}
._9{width:1863.980746px;}
._5{width:1907.359546px;}
.fc6{color:rgb(10,83,129);}
.fc3{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc2{color:rgb(0,104,145);}
.fc1{color:rgb(0,79,110);}
.fc7{color:rgb(0,0,0);}
.fc5{color:rgb(166,32,85);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs15{font-size:90.000000px;}
.fs12{font-size:92.400000px;}
.fs6{font-size:96.000000px;}
.fs10{font-size:102.000000px;}
.fse{font-size:105.600000px;}
.fs2{font-size:108.000000px;}
.fsf{font-size:112.200000px;}
.fs13{font-size:114.000000px;}
.fs11{font-size:118.800000px;}
.fsa{font-size:120.000000px;}
.fs9{font-size:132.000000px;}
.fs8{font-size:144.000000px;}
.fs0{font-size:150.000000px;}
.fsc{font-size:156.000000px;}
.fs7{font-size:158.400000px;}
.fs16{font-size:162.000000px;}
.fs4{font-size:168.000000px;}
.fsb{font-size:171.600000px;}
.fs5{font-size:184.800000px;}
.fs17{font-size:288.000000px;}
.fs14{font-size:390.000000px;}
.fsd{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:15.841815px;}
.y5{bottom:15.841950px;}
.y7{bottom:64.107825px;}
.y6{bottom:96.910485px;}
.yb0{bottom:108.348330px;}
.y38{bottom:108.769560px;}
.y7c{bottom:112.599315px;}
.y56{bottom:120.946110px;}
.y7e{bottom:126.305310px;}
.yaf{bottom:129.948285px;}
.y29{bottom:140.996340px;}
.y7b{bottom:143.199285px;}
.y37{bottom:147.949575px;}
.y20{bottom:158.624310px;}
.y42{bottom:159.049470px;}
.y3{bottom:159.475515px;}
.y55{bottom:165.106125px;}
.y7a{bottom:173.799300px;}
.y65{bottom:182.648880px;}
.y36{bottom:187.129545px;}
.yab{bottom:191.016375px;}
.y28{bottom:193.549410px;}
.y2b{bottom:195.896310px;}
.y1f{bottom:196.208310px;}
.y2{bottom:199.075545px;}
.y41{bottom:201.169470px;}
.y54{bottom:209.266095px;}
.y64{bottom:211.448910px;}
.yd{bottom:213.063630px;}
.yae{bottom:218.724330px;}
.y79{bottom:219.384315px;}
.y15{bottom:220.743180px;}
.y35{bottom:226.309560px;}
.y9e{bottom:230.974605px;}
.y27{bottom:234.776280px;}
.y2a{bottom:234.776310px;}
.y8f{bottom:235.568490px;}
.y1{bottom:238.675530px;}
.y4d{bottom:244.546020px;}
.y1e{bottom:248.792325px;}
.y78{bottom:249.984285px;}
.y87{bottom:250.051185px;}
.y53{bottom:253.426110px;}
.y63{bottom:255.233895px;}
.y40{bottom:257.626050px;}
.y34{bottom:265.489530px;}
.y77{bottom:280.584300px;}
.y14{bottom:281.103195px;}
.y9d{bottom:281.944605px;}
.y16{bottom:287.275200px;}
.y26{bottom:288.656295px;}
.y4c{bottom:288.705960px;}
.ya6{bottom:296.284245px;}
.y33{bottom:297.169545px;}
.y62{bottom:299.018880px;}
.y1d{bottom:300.049425px;}
.yc{bottom:303.603645px;}
.y3f{bottom:304.006050px;}
.y6f{bottom:310.584300px;}
.y45{bottom:315.896475px;}
.ya1{bottom:325.129605px;}
.y93{bottom:325.696185px;}
.y76{bottom:326.169315px;}
.y61{bottom:327.818910px;}
.y32{bottom:328.849560px;}
.y9c{bottom:333.578040px;}
.y86{bottom:335.994315px;}
.y1c{bottom:338.869425px;}
.y6e{bottom:341.184270px;}
.y13{bottom:341.463210px;}
.y52{bottom:341.746125px;}
.y25{bottom:342.536310px;}
.y95{bottom:343.842240px;}
.y44{bottom:344.696505px;}
.y4b{bottom:346.489410px;}
.y8e{bottom:348.470925px;}
.y3e{bottom:350.386005px;}
.ya5{bottom:350.854260px;}
.y75{bottom:356.769285px;}
.y85{bottom:368.679330px;}
.y60{bottom:371.603895px;}
.ya0{bottom:372.499590px;}
.y43{bottom:373.496490px;}
.y31{bottom:375.529545px;}
.y1b{bottom:379.016295px;}
.yb{bottom:379.203645px;}
.y6d{bottom:379.269285px;}
.y58{bottom:379.579005px;}
.y51{bottom:385.906095px;}
.y9b{bottom:387.469575px;}
.y4a{bottom:393.889425px;}
.y8d{bottom:393.893940px;}
.y24{bottom:396.416325px;}
.y3d{bottom:397.429440px;}
.y5f{bottom:400.403880px;}
.y84{bottom:401.364345px;}
.y12{bottom:401.823180px;}
.y74{bottom:402.354300px;}
.ya4{bottom:405.424230px;}
.y30{bottom:407.209560px;}
.y6c{bottom:417.354300px;}
.yaa{bottom:419.691405px;}
.y9f{bottom:420.533010px;}
.y9a{bottom:423.469590px;}
.y49{bottom:426.289425px;}
.yad{bottom:427.578555px;}
.y50{bottom:430.066110px;}
.y92{bottom:430.156215px;}
.y1a{bottom:431.600310px;}
.y73{bottom:432.954315px;}
.y83{bottom:435.376230px;}
.y8c{bottom:439.316910px;}
.y3c{bottom:439.549440px;}
.y5e{bottom:444.188910px;}
.ya3{bottom:445.024215px;}
.y94{bottom:446.802255px;}
.y11{bottom:447.183180px;}
.y6b{bottom:447.954270px;}
.y23{bottom:450.296295px;}
.y2f{bottom:453.889545px;}
.ya9{bottom:465.426390px;}
.y19{bottom:469.184310px;}
.ya{bottom:469.743660px;}
.y8b{bottom:469.754925px;}
.y5d{bottom:472.988895px;}
.y48{bottom:473.689440px;}
.y4f{bottom:474.226125px;}
.y91{bottom:474.286200px;}
.y99{bottom:474.439590px;}
.y72{bottom:478.539285px;}
.y2e{bottom:485.569560px;}
.y6a{bottom:486.039285px;}
.y57{bottom:496.219005px;}
.y3b{bottom:496.669455px;}
.y22{bottom:504.176310px;}
.y47{bottom:506.089440px;}
.y10{bottom:507.543195px;}
.y71{bottom:509.139300px;}
.y98{bottom:510.439560px;}
.y69{bottom:516.639300px;}
.y5c{bottom:516.773880px;}
.y8a{bottom:517.168245px;}
.y18{bottom:521.768325px;}
.y82{bottom:530.146230px;}
.y2d{bottom:532.249545px;}
.yf{bottom:552.903195px;}
.y59{bottom:552.903315px;}
.y70{bottom:552.903405px;}
.y5b{bottom:553.058910px;}
.y3a{bottom:553.789470px;}
.y68{bottom:554.724315px;}
.y46{bottom:555.479760px;}
.y89{bottom:557.218260px;}
.y21{bottom:558.056325px;}
.y17{bottom:559.352325px;}
.y9{bottom:560.283630px;}
.y97{bottom:562.072995px;}
.y81{bottom:562.546230px;}
.y4e{bottom:563.209575px;}
.y90{bottom:563.209665px;}
.y2c{bottom:563.929560px;}
.y67{bottom:585.324285px;}
.y5a{bottom:589.343895px;}
.y39{bottom:595.909470px;}
.ya8{bottom:718.655805px;}
.y8{bottom:718.655970px;}
.ya2{bottom:718.657980px;}
.ya7{bottom:718.660530px;}
.y96{bottom:718.660605px;}
.ye{bottom:724.046580px;}
.y66{bottom:724.046700px;}
.y7d{bottom:724.046790px;}
.y88{bottom:724.046925px;}
.yac{bottom:725.335230px;}
.y7f{bottom:728.811765px;}
.y80{bottom:730.495920px;}
.h24{height:52.664062px;}
.h2{height:56.862305px;}
.h1c{height:67.359961px;}
.h17{height:69.890625px;}
.h9{height:69.984375px;}
.h4{height:72.269531px;}
.h19{height:74.358398px;}
.h15{height:76.982813px;}
.h12{height:78.732422px;}
.h23{height:78.996094px;}
.h18{height:81.794238px;}
.h20{height:82.995117px;}
.h1d{height:83.106445px;}
.h1b{height:86.605664px;}
.h13{height:87.363281px;}
.he{height:87.480469px;}
.h3{height:92.917969px;}
.h1f{height:96.099609px;}
.hd{height:96.228516px;}
.hb{height:104.835938px;}
.hc{height:104.976562px;}
.h16{height:106.656000px;}
.h1{height:109.204102px;}
.h1a{height:109.350586px;}
.h11{height:113.572266px;}
.h10{height:113.724609px;}
.ha{height:115.474219px;}
.h21{height:117.940430px;}
.h5{height:122.308594px;}
.h7{height:122.472656px;}
.hf{height:125.097070px;}
.h6{height:134.539453px;}
.h8{height:134.719922px;}
.h22{height:209.671875px;}
.h1e{height:284.311523px;}
.h14{height:314.929688px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x10{left:53.167290px;}
.x8{left:78.144810px;}
.x11{left:80.167305px;}
.xc{left:88.612560px;}
.x28{left:93.562650px;}
.xa{left:101.625915px;}
.x1c{left:103.949745px;}
.x12{left:107.167305px;}
.x17{left:109.799730px;}
.xd{left:115.612560px;}
.x1d{left:130.949745px;}
.x19{left:136.870860px;}
.xf{left:142.612575px;}
.x18{left:150.369750px;}
.x23{left:152.999730px;}
.x1e{left:157.949745px;}
.x7{left:166.446075px;}
.x26{left:168.750045px;}
.x25{left:172.499940px;}
.x24{left:179.999730px;}
.x6{left:182.311305px;}
.x3{left:189.616305px;}
.x27{left:206.999730px;}
.x15{left:209.817720px;}
.x1{left:253.144890px;}
.x16{left:287.890275px;}
.x1a{left:332.651580px;}
.x9{left:341.601105px;}
.x22{left:349.700295px;}
.xb{left:352.424955px;}
.x20{left:394.717635px;}
.x2{left:442.776090px;}
.x21{left:456.869040px;}
.x5{left:562.914330px;}
.x14{left:671.245125px;}
.x1f{left:812.924625px;}
.x13{left:1038.420000px;}
.xe{left:1120.947600px;}
.x1b{left:1343.052870px;}
.x4{left:1353.899430px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000480pt;}
.ls1{letter-spacing:0.058027pt;}
.ls0{letter-spacing:0.075147pt;}
.ls2{letter-spacing:16.953067pt;}
.ls8{letter-spacing:29.722507pt;}
.ls6{letter-spacing:35.688587pt;}
.ls4{letter-spacing:38.506667pt;}
.ls9{letter-spacing:42.613333pt;}
.ls5{letter-spacing:46.720000pt;}
.ls12{letter-spacing:48.000000pt;}
.ls7{letter-spacing:54.933333pt;}
.lsf{letter-spacing:59.040000pt;}
.lse{letter-spacing:61.093333pt;}
.ls10{letter-spacing:67.253333pt;}
.ls14{letter-spacing:74.665920pt;}
.ls13{letter-spacing:87.678720pt;}
.ls15{letter-spacing:87.678880pt;}
.ls11{letter-spacing:87.679200pt;}
.lsc{letter-spacing:92.467360pt;}
.lsd{letter-spacing:108.715360pt;}
.lsb{letter-spacing:111.146667pt;}
.ws84{word-spacing:-121.333333pt;}
.wse{word-spacing:-83.029333pt;}
.ws51{word-spacing:-77.098667pt;}
.ws94{word-spacing:-73.179918pt;}
.ws98{word-spacing:-71.172989pt;}
.ws20{word-spacing:-71.168000pt;}
.ws8a{word-spacing:-65.237333pt;}
.ws41{word-spacing:-59.306667pt;}
.ws1b{word-spacing:-52.266667pt;}
.ws6f{word-spacing:-50.410667pt;}
.wsf{word-spacing:-49.681707pt;}
.ws4f{word-spacing:-48.533333pt;}
.ws63{word-spacing:-47.445333pt;}
.ws36{word-spacing:-44.800000pt;}
.ws18{word-spacing:-41.539343pt;}
.ws11{word-spacing:-41.517942pt;}
.ws12{word-spacing:-41.517791pt;}
.ws10{word-spacing:-41.415744pt;}
.ws14{word-spacing:-41.287070pt;}
.ws9a{word-spacing:-40.512000pt;}
.ws97{word-spacing:-40.035629pt;}
.ws4e{word-spacing:-38.464098pt;}
.ws50{word-spacing:-38.457616pt;}
.ws4c{word-spacing:-38.445609pt;}
.ws4a{word-spacing:-37.333333pt;}
.ws81{word-spacing:-37.069640pt;}
.ws2{word-spacing:-37.069489pt;}
.ws1{word-spacing:-36.978175pt;}
.ws0{word-spacing:-36.978024pt;}
.ws7{word-spacing:-36.369184pt;}
.ws4{word-spacing:-36.333052pt;}
.ws6{word-spacing:-36.320655pt;}
.ws5{word-spacing:-36.315364pt;}
.ws3d{word-spacing:-35.586419pt;}
.ws2b{word-spacing:-35.585663pt;}
.ws1f{word-spacing:-35.585613pt;}
.ws22{word-spacing:-35.527916pt;}
.ws2a{word-spacing:-35.498583pt;}
.ws35{word-spacing:-35.470190pt;}
.ws21{word-spacing:-35.468529pt;}
.ws96{word-spacing:-35.466667pt;}
.ws38{word-spacing:-35.461678pt;}
.ws39{word-spacing:-35.439099pt;}
.ws2f{word-spacing:-35.438968pt;}
.ws3f{word-spacing:-35.438481pt;}
.ws3c{word-spacing:-35.419033pt;}
.ws3b{word-spacing:-35.417617pt;}
.ws32{word-spacing:-35.404710pt;}
.ws28{word-spacing:-35.400778pt;}
.ws31{word-spacing:-35.361358pt;}
.ws2c{word-spacing:-35.357253pt;}
.ws3a{word-spacing:-35.340192pt;}
.ws33{word-spacing:-35.323437pt;}
.ws54{word-spacing:-33.600000pt;}
.ws88{word-spacing:-32.638606pt;}
.ws8d{word-spacing:-32.621337pt;}
.ws86{word-spacing:-32.621186pt;}
.ws93{word-spacing:-32.620951pt;}
.ws90{word-spacing:-32.620800pt;}
.ws87{word-spacing:-32.540607pt;}
.ws92{word-spacing:-32.468915pt;}
.ws70{word-spacing:-31.733333pt;}
.ws1d{word-spacing:-29.866667pt;}
.ws27{word-spacing:-29.656105pt;}
.ws46{word-spacing:-29.655954pt;}
.ws44{word-spacing:-29.654476pt;}
.ws26{word-spacing:-29.583538pt;}
.ws42{word-spacing:-29.549809pt;}
.ws48{word-spacing:-29.451969pt;}
.ws9{word-spacing:-28.291981pt;}
.wsb{word-spacing:-28.283146pt;}
.ws8{word-spacing:-28.263290pt;}
.wsa{word-spacing:-28.258671pt;}
.ws95{word-spacing:-28.172884pt;}
.ws5a{word-spacing:-27.655407pt;}
.ws9c{word-spacing:-27.008000pt;}
.ws7c{word-spacing:-26.689512pt;}
.ws7d{word-spacing:-26.133333pt;}
.ws73{word-spacing:-25.220947pt;}
.ws6c{word-spacing:-25.207802pt;}
.ws74{word-spacing:-25.206820pt;}
.ws78{word-spacing:-25.153845pt;}
.ws7a{word-spacing:-25.140009pt;}
.ws76{word-spacing:-25.126050pt;}
.ws75{word-spacing:-24.983210pt;}
.ws85{word-spacing:-24.966399pt;}
.ws6b{word-spacing:-23.736811pt;}
.ws61{word-spacing:-23.724733pt;}
.ws5d{word-spacing:-23.724582pt;}
.ws5c{word-spacing:-23.684201pt;}
.ws5f{word-spacing:-23.666377pt;}
.ws65{word-spacing:-23.640117pt;}
.ws67{word-spacing:-23.600158pt;}
.ws69{word-spacing:-23.560588pt;}
.ws99{word-spacing:-18.717732pt;}
.ws9e{word-spacing:-12.536492pt;}
.ws9b{word-spacing:-12.532460pt;}
.ws9d{word-spacing:-12.499754pt;}
.ws15{word-spacing:-10.776676pt;}
.ws16{word-spacing:-10.755275pt;}
.ws13{word-spacing:-10.755124pt;}
.ws1a{word-spacing:-10.653984pt;}
.ws17{word-spacing:-10.538227pt;}
.ws19{word-spacing:-10.429346pt;}
.ws4d{word-spacing:-10.007702pt;}
.ws4b{word-spacing:-9.987377pt;}
.ws7b{word-spacing:-9.602973pt;}
.ws40{word-spacing:-9.238627pt;}
.ws3e{word-spacing:-9.238476pt;}
.ws1e{word-spacing:-9.236914pt;}
.ws2d{word-spacing:-9.236762pt;}
.ws24{word-spacing:-9.218570pt;}
.ws23{word-spacing:-9.218419pt;}
.ws37{word-spacing:-9.216957pt;}
.ws29{word-spacing:-9.131489pt;}
.ws2e{word-spacing:-9.100513pt;}
.ws30{word-spacing:-9.098806pt;}
.ws8f{word-spacing:-8.467788pt;}
.ws8e{word-spacing:-8.450671pt;}
.ws8c{word-spacing:-8.450519pt;}
.ws8b{word-spacing:-8.371150pt;}
.ws91{word-spacing:-8.335840pt;}
.ws89{word-spacing:-7.698931pt;}
.ws47{word-spacing:-7.698780pt;}
.ws25{word-spacing:-7.682771pt;}
.ws34{word-spacing:-7.682621pt;}
.ws43{word-spacing:-7.650560pt;}
.ws49{word-spacing:-7.649920pt;}
.ws45{word-spacing:-7.610810pt;}
.ws83{word-spacing:-7.298217pt;}
.ws82{word-spacing:-7.228749pt;}
.ws55{word-spacing:-6.928478pt;}
.ws59{word-spacing:-6.928328pt;}
.ws56{word-spacing:-6.928176pt;}
.ws58{word-spacing:-6.913965pt;}
.ws57{word-spacing:-6.913814pt;}
.ws80{word-spacing:-6.848655pt;}
.ws72{word-spacing:-6.543614pt;}
.ws6d{word-spacing:-6.530469pt;}
.ws6e{word-spacing:-6.530318pt;}
.ws71{word-spacing:-6.468561pt;}
.ws79{word-spacing:-6.427054pt;}
.ws77{word-spacing:-6.413437pt;}
.ws60{word-spacing:-6.158933pt;}
.ws5b{word-spacing:-6.146066pt;}
.ws64{word-spacing:-6.145915pt;}
.ws66{word-spacing:-6.132480pt;}
.ws5e{word-spacing:-6.120373pt;}
.ws1c{word-spacing:-6.105285pt;}
.ws6a{word-spacing:-6.088315pt;}
.ws62{word-spacing:-6.088164pt;}
.ws68{word-spacing:-6.074400pt;}
.ws7f{word-spacing:-5.378167pt;}
.ws7e{word-spacing:-5.378016pt;}
.ws53{word-spacing:-5.005069pt;}
.ws3{word-spacing:-5.004917pt;}
.ws52{word-spacing:-5.004758pt;}
.wsd{word-spacing:-4.947729pt;}
.wsc{word-spacing:0.000000pt;}
._d{margin-left:-4574.549120pt;}
._b{margin-left:-2850.923680pt;}
._1{margin-left:-2840.414848pt;}
._0{width:0.999083pt;}
._3{width:18.115184pt;}
._2{width:22.798119pt;}
._a{width:24.630956pt;}
._c{width:27.643592pt;}
._e{width:33.631048pt;}
._7{width:36.655938pt;}
._8{width:39.457473pt;}
._6{width:42.379749pt;}
._4{width:1095.515085pt;}
._9{width:1656.871775pt;}
._5{width:1695.430708pt;}
.fs18{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs15{font-size:80.000000pt;}
.fs12{font-size:82.133333pt;}
.fs6{font-size:85.333333pt;}
.fs10{font-size:90.666667pt;}
.fse{font-size:93.866667pt;}
.fs2{font-size:96.000000pt;}
.fsf{font-size:99.733333pt;}
.fs13{font-size:101.333333pt;}
.fs11{font-size:105.600000pt;}
.fsa{font-size:106.666667pt;}
.fs9{font-size:117.333333pt;}
.fs8{font-size:128.000000pt;}
.fs0{font-size:133.333333pt;}
.fsc{font-size:138.666667pt;}
.fs7{font-size:140.800000pt;}
.fs16{font-size:144.000000pt;}
.fs4{font-size:149.333333pt;}
.fsb{font-size:152.533333pt;}
.fs5{font-size:164.266667pt;}
.fs17{font-size:256.000000pt;}
.fs14{font-size:346.666667pt;}
.fsd{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:14.081613pt;}
.y5{bottom:14.081733pt;}
.y7{bottom:56.984733pt;}
.y6{bottom:86.142653pt;}
.yb0{bottom:96.309627pt;}
.y38{bottom:96.684053pt;}
.y7c{bottom:100.088280pt;}
.y56{bottom:107.507653pt;}
.y7e{bottom:112.271387pt;}
.yaf{bottom:115.509587pt;}
.y29{bottom:125.330080pt;}
.y7b{bottom:127.288253pt;}
.y37{bottom:131.510733pt;}
.y20{bottom:140.999387pt;}
.y42{bottom:141.377307pt;}
.y3{bottom:141.756013pt;}
.y55{bottom:146.761000pt;}
.y7a{bottom:154.488267pt;}
.y65{bottom:162.354560pt;}
.y36{bottom:166.337373pt;}
.yab{bottom:169.792333pt;}
.y28{bottom:172.043920pt;}
.y2b{bottom:174.130053pt;}
.y1f{bottom:174.407387pt;}
.y2{bottom:176.956040pt;}
.y41{bottom:178.817307pt;}
.y54{bottom:186.014307pt;}
.y64{bottom:187.954587pt;}
.yd{bottom:189.389893pt;}
.yae{bottom:194.421627pt;}
.y79{bottom:195.008280pt;}
.y15{bottom:196.216160pt;}
.y35{bottom:201.164053pt;}
.y9e{bottom:205.310760pt;}
.y27{bottom:208.690027pt;}
.y2a{bottom:208.690053pt;}
.y8f{bottom:209.394213pt;}
.y1{bottom:212.156027pt;}
.y4d{bottom:217.374240pt;}
.y1e{bottom:221.148733pt;}
.y78{bottom:222.208253pt;}
.y87{bottom:222.267720pt;}
.y53{bottom:225.267653pt;}
.y63{bottom:226.874573pt;}
.y40{bottom:229.000933pt;}
.y34{bottom:235.990693pt;}
.y77{bottom:249.408267pt;}
.y14{bottom:249.869507pt;}
.y9d{bottom:250.617427pt;}
.y16{bottom:255.355733pt;}
.y26{bottom:256.583373pt;}
.y4c{bottom:256.627520pt;}
.ya6{bottom:263.363773pt;}
.y33{bottom:264.150707pt;}
.y62{bottom:265.794560pt;}
.y1d{bottom:266.710600pt;}
.yc{bottom:269.869907pt;}
.y3f{bottom:270.227600pt;}
.y6f{bottom:276.074933pt;}
.y45{bottom:280.796867pt;}
.ya1{bottom:289.004093pt;}
.y93{bottom:289.507720pt;}
.y76{bottom:289.928280pt;}
.y61{bottom:291.394587pt;}
.y32{bottom:292.310720pt;}
.y9c{bottom:296.513813pt;}
.y86{bottom:298.661613pt;}
.y1c{bottom:301.217267pt;}
.y6e{bottom:303.274907pt;}
.y13{bottom:303.522853pt;}
.y52{bottom:303.774333pt;}
.y25{bottom:304.476720pt;}
.y95{bottom:305.637547pt;}
.y44{bottom:306.396893pt;}
.y4b{bottom:307.990587pt;}
.y8e{bottom:309.751933pt;}
.y3e{bottom:311.454227pt;}
.ya5{bottom:311.870453pt;}
.y75{bottom:317.128253pt;}
.y85{bottom:327.714960pt;}
.y60{bottom:330.314573pt;}
.ya0{bottom:331.110747pt;}
.y43{bottom:331.996880pt;}
.y31{bottom:333.804040pt;}
.y1b{bottom:336.903373pt;}
.yb{bottom:337.069907pt;}
.y6d{bottom:337.128253pt;}
.y58{bottom:337.403560pt;}
.y51{bottom:343.027640pt;}
.y9b{bottom:344.417400pt;}
.y4a{bottom:350.123933pt;}
.y8d{bottom:350.127947pt;}
.y24{bottom:352.370067pt;}
.y3d{bottom:353.270613pt;}
.y5f{bottom:355.914560pt;}
.y84{bottom:356.768307pt;}
.y12{bottom:357.176160pt;}
.y74{bottom:357.648267pt;}
.ya4{bottom:360.377093pt;}
.y30{bottom:361.964053pt;}
.y6c{bottom:370.981600pt;}
.yaa{bottom:373.059027pt;}
.y9f{bottom:373.807120pt;}
.y9a{bottom:376.417413pt;}
.y49{bottom:378.923933pt;}
.yad{bottom:380.069827pt;}
.y50{bottom:382.280987pt;}
.y92{bottom:382.361080pt;}
.y1a{bottom:383.644720pt;}
.y73{bottom:384.848280pt;}
.y83{bottom:387.001093pt;}
.y8c{bottom:390.503920pt;}
.y3c{bottom:390.710613pt;}
.y5e{bottom:394.834587pt;}
.ya3{bottom:395.577080pt;}
.y94{bottom:397.157560pt;}
.y11{bottom:397.496160pt;}
.y6b{bottom:398.181573pt;}
.y23{bottom:400.263373pt;}
.y2f{bottom:403.457373pt;}
.ya9{bottom:413.712347pt;}
.y19{bottom:417.052720pt;}
.ya{bottom:417.549920pt;}
.y8b{bottom:417.559933pt;}
.y5d{bottom:420.434573pt;}
.y48{bottom:421.057280pt;}
.y4f{bottom:421.534333pt;}
.y91{bottom:421.587733pt;}
.y99{bottom:421.724080pt;}
.y72{bottom:425.368253pt;}
.y2e{bottom:431.617387pt;}
.y6a{bottom:432.034920pt;}
.y57{bottom:441.083560pt;}
.y3b{bottom:441.483960pt;}
.y22{bottom:448.156720pt;}
.y47{bottom:449.857280pt;}
.y10{bottom:451.149507pt;}
.y71{bottom:452.568267pt;}
.y98{bottom:453.724053pt;}
.y69{bottom:459.234933pt;}
.y5c{bottom:459.354560pt;}
.y8a{bottom:459.705107pt;}
.y18{bottom:463.794067pt;}
.y82{bottom:471.241093pt;}
.y2d{bottom:473.110707pt;}
.yf{bottom:491.469507pt;}
.y59{bottom:491.469613pt;}
.y70{bottom:491.469693pt;}
.y5b{bottom:491.607920pt;}
.y3a{bottom:492.257307pt;}
.y68{bottom:493.088280pt;}
.y46{bottom:493.759787pt;}
.y89{bottom:495.305120pt;}
.y21{bottom:496.050067pt;}
.y17{bottom:497.202067pt;}
.y9{bottom:498.029893pt;}
.y97{bottom:499.620440pt;}
.y81{bottom:500.041093pt;}
.y4e{bottom:500.630733pt;}
.y90{bottom:500.630813pt;}
.y2c{bottom:501.270720pt;}
.y67{bottom:520.288253pt;}
.y5a{bottom:523.861240pt;}
.y39{bottom:529.697307pt;}
.ya8{bottom:638.805160pt;}
.y8{bottom:638.805307pt;}
.ya2{bottom:638.807093pt;}
.ya7{bottom:638.809360pt;}
.y96{bottom:638.809427pt;}
.ye{bottom:643.596960pt;}
.y66{bottom:643.597067pt;}
.y7d{bottom:643.597147pt;}
.y88{bottom:643.597267pt;}
.yac{bottom:644.742427pt;}
.y7f{bottom:647.832680pt;}
.y80{bottom:649.329707pt;}
.h24{height:46.812500pt;}
.h2{height:50.544271pt;}
.h1c{height:59.875521pt;}
.h17{height:62.125000pt;}
.h9{height:62.208333pt;}
.h4{height:64.239583pt;}
.h19{height:66.096354pt;}
.h15{height:68.429167pt;}
.h12{height:69.984375pt;}
.h23{height:70.218750pt;}
.h18{height:72.705990pt;}
.h20{height:73.773438pt;}
.h1d{height:73.872396pt;}
.h1b{height:76.982813pt;}
.h13{height:77.656250pt;}
.he{height:77.760417pt;}
.h3{height:82.593750pt;}
.h1f{height:85.421875pt;}
.hd{height:85.536458pt;}
.hb{height:93.187500pt;}
.hc{height:93.312500pt;}
.h16{height:94.805333pt;}
.h1{height:97.070312pt;}
.h1a{height:97.200521pt;}
.h11{height:100.953125pt;}
.h10{height:101.088542pt;}
.ha{height:102.643750pt;}
.h21{height:104.835938pt;}
.h5{height:108.718750pt;}
.h7{height:108.864583pt;}
.hf{height:111.197396pt;}
.h6{height:119.590625pt;}
.h8{height:119.751042pt;}
.h22{height:186.375000pt;}
.h1e{height:252.721354pt;}
.h14{height:279.937500pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x10{left:47.259813pt;}
.x8{left:69.462053pt;}
.x11{left:71.259827pt;}
.xc{left:78.766720pt;}
.x28{left:83.166800pt;}
.xa{left:90.334147pt;}
.x1c{left:92.399773pt;}
.x12{left:95.259827pt;}
.x17{left:97.599760pt;}
.xd{left:102.766720pt;}
.x1d{left:116.399773pt;}
.x19{left:121.662987pt;}
.xf{left:126.766733pt;}
.x18{left:133.662000pt;}
.x23{left:135.999760pt;}
.x1e{left:140.399773pt;}
.x7{left:147.952067pt;}
.x26{left:150.000040pt;}
.x25{left:153.333280pt;}
.x24{left:159.999760pt;}
.x6{left:162.054493pt;}
.x3{left:168.547827pt;}
.x27{left:183.999760pt;}
.x15{left:186.504640pt;}
.x1{left:225.017680pt;}
.x16{left:255.902467pt;}
.x1a{left:295.690293pt;}
.x9{left:303.645427pt;}
.x22{left:310.844707pt;}
.xb{left:313.266627pt;}
.x20{left:350.860120pt;}
.x2{left:393.578747pt;}
.x21{left:406.105813pt;}
.x5{left:500.368293pt;}
.x14{left:596.662333pt;}
.x1f{left:722.599667pt;}
.x13{left:923.040000pt;}
.xe{left:996.397867pt;}
.x1b{left:1193.824773pt;}
.x4{left:1203.466160pt;}
}




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