
    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_4a07f0ccdca09f0068b07e52.woff')format("woff");}.ff1{font-family:ff1;line-height:1.014000;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_27e6b6788844cbd80afc5795.woff')format("woff");}.ff2{font-family:ff2;line-height:0.991000;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_c3512e318835e96e53dc1952.woff')format("woff");}.ff3{font-family:ff3;line-height:0.068000;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_c17f3d61a13c4703a4a37d49.woff')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_9649baaff8d93438e5e3f75c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.009000;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_6979acdbdef1b09ee72d2044.woff')format("woff");}.ff6{font-family:ff6;line-height:0.078000;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_126fe5c5d02b9b32005e4fa9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.243000;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);}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v1{vertical-align:15.007020px;}
.ls1d{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.561000px;}
.ls6{letter-spacing:-0.510000px;}
.lsd{letter-spacing:-0.459000px;}
.ls14{letter-spacing:-0.408000px;}
.ls10{letter-spacing:-0.357000px;}
.ls12{letter-spacing:-0.306000px;}
.ls4{letter-spacing:-0.255000px;}
.ls1e{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.153000px;}
.ls1c{letter-spacing:-0.102000px;}
.ls13{letter-spacing:-0.051000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000480px;}
.ls15{letter-spacing:0.049680px;}
.lsb{letter-spacing:0.051000px;}
.lsa{letter-spacing:0.102000px;}
.lsc{letter-spacing:0.140400px;}
.ls16{letter-spacing:0.204000px;}
.ls18{letter-spacing:0.233580px;}
.ls5{letter-spacing:0.255000px;}
.lsf{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.421200px;}
.ls8{letter-spacing:0.457500px;}
.ls7{letter-spacing:0.459000px;}
.ls1f{letter-spacing:0.514800px;}
.ls1b{letter-spacing:0.702000px;}
.ls17{letter-spacing:0.795600px;}
.ls1a{letter-spacing:0.889200px;}
.ls2{letter-spacing:1.029600px;}
.ls9{letter-spacing:1.071000px;}
.ls0{letter-spacing:200.400000px;}
.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;}
}
.ws3{word-spacing:-36.000000px;}
.ws7{word-spacing:-35.100000px;}
.ws5{word-spacing:-18.000000px;}
.ws5e{word-spacing:-12.954000px;}
.ws38{word-spacing:-12.852000px;}
.ws8{word-spacing:-12.750000px;}
.ws5d{word-spacing:-12.342000px;}
.ws5c{word-spacing:-12.291000px;}
.ws2{word-spacing:-12.000000px;}
.ws39{word-spacing:-11.840400px;}
.ws6{word-spacing:-11.700000px;}
.ws37{word-spacing:-8.250000px;}
.ws18{word-spacing:-3.825000px;}
.ws1c{word-spacing:-3.672000px;}
.ws74{word-spacing:-3.417000px;}
.ws7e{word-spacing:-3.366000px;}
.ws42{word-spacing:-3.162000px;}
.ws8f{word-spacing:-3.042000px;}
.ws50{word-spacing:-3.009000px;}
.ws3e{word-spacing:-2.754000px;}
.ws92{word-spacing:-2.667600px;}
.ws46{word-spacing:-2.652000px;}
.ws2e{word-spacing:-2.620800px;}
.ws4e{word-spacing:-2.601000px;}
.ws82{word-spacing:-2.499000px;}
.ws51{word-spacing:-2.040000px;}
.ws19{word-spacing:-1.989000px;}
.ws53{word-spacing:-1.938000px;}
.ws73{word-spacing:-1.836000px;}
.ws3c{word-spacing:-1.734000px;}
.ws5a{word-spacing:-1.731600px;}
.ws25{word-spacing:-1.632000px;}
.ws6d{word-spacing:-1.581000px;}
.ws29{word-spacing:-1.530000px;}
.ws2f{word-spacing:-1.450800px;}
.ws26{word-spacing:-1.428000px;}
.ws54{word-spacing:-1.377000px;}
.ws5f{word-spacing:-1.326000px;}
.ws71{word-spacing:-1.224000px;}
.ws72{word-spacing:-0.918000px;}
.ws12{word-spacing:-0.842400px;}
.ws95{word-spacing:-0.702000px;}
.ws94{word-spacing:-0.421200px;}
.ws28{word-spacing:-0.357000px;}
.ws70{word-spacing:-0.306000px;}
.ws1b{word-spacing:-0.255000px;}
.ws4b{word-spacing:-0.204000px;}
.ws64{word-spacing:-0.153000px;}
.ws5b{word-spacing:-0.093600px;}
.ws3a{word-spacing:-0.046800px;}
.ws9{word-spacing:0.000000px;}
.ws4c{word-spacing:0.102000px;}
.ws84{word-spacing:0.204000px;}
.ws3d{word-spacing:0.357000px;}
.ws67{word-spacing:0.561000px;}
.ws65{word-spacing:0.663000px;}
.ws75{word-spacing:0.714000px;}
.ws77{word-spacing:0.867000px;}
.ws24{word-spacing:0.969000px;}
.ws27{word-spacing:1.020000px;}
.ws61{word-spacing:1.071000px;}
.ws11{word-spacing:1.076400px;}
.ws14{word-spacing:1.170000px;}
.ws49{word-spacing:1.224000px;}
.ws1d{word-spacing:1.275000px;}
.ws7f{word-spacing:1.326000px;}
.ws63{word-spacing:1.479000px;}
.ws8a{word-spacing:1.497600px;}
.ws69{word-spacing:1.632000px;}
.ws32{word-spacing:1.638000px;}
.ws83{word-spacing:1.683000px;}
.ws8b{word-spacing:1.825200px;}
.ws81{word-spacing:1.836000px;}
.ws15{word-spacing:1.918800px;}
.ws66{word-spacing:1.938000px;}
.ws93{word-spacing:2.059200px;}
.ws80{word-spacing:2.193000px;}
.ws13{word-spacing:2.246400px;}
.wsf{word-spacing:2.340000px;}
.ws78{word-spacing:2.346000px;}
.ws21{word-spacing:2.397000px;}
.ws89{word-spacing:2.433600px;}
.ws2b{word-spacing:2.550000px;}
.ws52{word-spacing:2.601000px;}
.ws96{word-spacing:2.714400px;}
.ws45{word-spacing:2.805000px;}
.ws34{word-spacing:2.948400px;}
.wsa{word-spacing:3.024000px;}
.ws35{word-spacing:3.042000px;}
.ws87{word-spacing:3.088800px;}
.wsc{word-spacing:3.213000px;}
.ws3f{word-spacing:3.264000px;}
.ws4f{word-spacing:3.366000px;}
.wsd{word-spacing:3.402000px;}
.ws1f{word-spacing:3.468000px;}
.ws59{word-spacing:3.556800px;}
.ws7c{word-spacing:3.876000px;}
.ws30{word-spacing:4.024800px;}
.ws7b{word-spacing:4.131000px;}
.ws88{word-spacing:4.165200px;}
.ws48{word-spacing:4.182000px;}
.ws6a{word-spacing:4.437000px;}
.wsb{word-spacing:4.536000px;}
.ws62{word-spacing:4.539000px;}
.ws60{word-spacing:4.641000px;}
.ws57{word-spacing:4.773600px;}
.ws6e{word-spacing:4.794000px;}
.ws91{word-spacing:4.867200px;}
.ws43{word-spacing:4.896000px;}
.ws2a{word-spacing:5.049000px;}
.ws76{word-spacing:5.100000px;}
.ws2d{word-spacing:5.101200px;}
.ws10{word-spacing:5.241600px;}
.ws22{word-spacing:5.304000px;}
.ws8c{word-spacing:5.522400px;}
.ws1a{word-spacing:5.559000px;}
.ws41{word-spacing:5.610000px;}
.ws7a{word-spacing:5.661000px;}
.ws85{word-spacing:6.018000px;}
.ws90{word-spacing:6.037200px;}
.ws31{word-spacing:6.084000px;}
.ws7d{word-spacing:6.120000px;}
.ws2c{word-spacing:6.318000px;}
.ws4a{word-spacing:6.324000px;}
.ws55{word-spacing:6.375000px;}
.ws56{word-spacing:6.528000px;}
.ws40{word-spacing:6.834000px;}
.ws79{word-spacing:7.242000px;}
.ws6f{word-spacing:7.803000px;}
.ws6c{word-spacing:7.905000px;}
.ws58{word-spacing:7.909200px;}
.ws8d{word-spacing:8.190000px;}
.ws68{word-spacing:8.364000px;}
.ws33{word-spacing:8.470800px;}
.ws20{word-spacing:8.568000px;}
.ws86{word-spacing:8.619000px;}
.ws23{word-spacing:8.670000px;}
.ws4d{word-spacing:8.823000px;}
.ws6b{word-spacing:8.874000px;}
.ws44{word-spacing:8.925000px;}
.ws97{word-spacing:8.938800px;}
.wse{word-spacing:9.126000px;}
.ws17{word-spacing:9.282000px;}
.ws8e{word-spacing:9.594000px;}
.ws36{word-spacing:10.108800px;}
.ws3b{word-spacing:10.608000px;}
.ws16{word-spacing:11.700000px;}
.ws47{word-spacing:12.699000px;}
.ws1e{word-spacing:12.750000px;}
.ws4{word-spacing:132.145200px;}
.ws1{word-spacing:173.758800px;}
.ws0{word-spacing:179.713200px;}
._9{margin-left:-16.005600px;}
._11{margin-left:-12.589153px;}
._3{margin-left:-8.189953px;}
._b{margin-left:-6.834000px;}
._d{margin-left:-5.814000px;}
._c{margin-left:-4.795168px;}
._1{margin-left:-2.929200px;}
._2{margin-left:-1.296461px;}
._e{width:1.246093px;}
._12{width:2.293651px;}
._a{width:3.876194px;}
._8{width:7.675800px;}
._4{width:10.543200px;}
._10{width:14.835928px;}
._6{width:59.161530px;}
._7{width:63.496530px;}
._f{width:73.798530px;}
._5{width:75.048600px;}
._0{width:132.095040px;}
.fc0{color:rgb(34,31,31);}
.fs5{font-size:33.000000px;}
.fs4{font-size:46.800000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:63.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:50.284050px;}
.y5e{bottom:100.442400px;}
.y7e{bottom:106.450710px;}
.y2a{bottom:106.640708px;}
.y5d{bottom:115.742400px;}
.y3e{bottom:118.547423px;}
.y7d{bottom:120.490365px;}
.y29{bottom:121.940708px;}
.y5c{bottom:131.042400px;}
.yb6{bottom:131.946956px;}
.y3d{bottom:132.587663px;}
.y7c{bottom:134.530605px;}
.y28{bottom:137.240708px;}
.ye8{bottom:140.214191px;}
.y5b{bottom:146.342400px;}
.y3c{bottom:146.627903px;}
.yb5{bottom:147.246956px;}
.y7b{bottom:148.570260px;}
.y27{bottom:152.540708px;}
.ye7{bottom:154.253846px;}
.y3b{bottom:160.668143px;}
.y5a{bottom:161.642400px;}
.yb4{bottom:162.546956px;}
.y7a{bottom:162.609915px;}
.y26{bottom:167.840708px;}
.ye6{bottom:168.293501px;}
.y79{bottom:176.650155px;}
.y59{bottom:176.942400px;}
.yb3{bottom:177.846956px;}
.ye5{bottom:182.333156px;}
.y25{bottom:183.140708px;}
.y3a{bottom:183.178643px;}
.y58{bottom:192.242400px;}
.yb2{bottom:193.146956px;}
.ye4{bottom:196.373396px;}
.y39{bottom:197.218883px;}
.y24{bottom:198.440708px;}
.y78{bottom:199.192905px;}
.y57{bottom:207.542400px;}
.yb1{bottom:208.446956px;}
.ye3{bottom:210.413051px;}
.y38{bottom:211.259123px;}
.y23{bottom:213.740708px;}
.y56{bottom:222.842400px;}
.y77{bottom:222.997155px;}
.yb0{bottom:223.746956px;}
.ye2{bottom:224.452706px;}
.y37{bottom:225.298778px;}
.y22{bottom:229.040708px;}
.y55{bottom:238.142400px;}
.y76{bottom:238.297155px;}
.ye1{bottom:238.492946px;}
.yaf{bottom:239.046956px;}
.y36{bottom:239.339018px;}
.y21{bottom:244.340708px;}
.ye0{bottom:252.532601px;}
.y54{bottom:253.442400px;}
.y75{bottom:253.597155px;}
.yae{bottom:254.346956px;}
.y20{bottom:259.640708px;}
.ydf{bottom:266.572841px;}
.y35{bottom:268.263218px;}
.y53{bottom:268.742400px;}
.y74{bottom:268.897155px;}
.yad{bottom:269.646956px;}
.y1f{bottom:274.940708px;}
.yde{bottom:280.612496px;}
.y34{bottom:283.563218px;}
.y52{bottom:284.042400px;}
.yac{bottom:284.946956px;}
.y1e{bottom:290.240708px;}
.y73{bottom:292.701405px;}
.ydd{bottom:294.652151px;}
.y51{bottom:299.342400px;}
.yab{bottom:300.246956px;}
.y1d{bottom:305.540708px;}
.y72{bottom:308.001405px;}
.ydc{bottom:308.692391px;}
.y33{bottom:313.742468px;}
.y50{bottom:314.642400px;}
.yaa{bottom:315.546956px;}
.y1c{bottom:320.840708px;}
.ydb{bottom:322.732046px;}
.y71{bottom:323.301405px;}
.y4f{bottom:329.942400px;}
.ya9{bottom:330.846956px;}
.y1b{bottom:336.140708px;}
.yda{bottom:336.771701px;}
.y70{bottom:338.601405px;}
.y4e{bottom:345.242400px;}
.ya8{bottom:346.146956px;}
.yd9{bottom:350.811941px;}
.y1a{bottom:351.440708px;}
.y32{bottom:358.806368px;}
.y4d{bottom:360.542400px;}
.ya7{bottom:361.446956px;}
.y6f{bottom:362.405655px;}
.yd8{bottom:364.851596px;}
.y19{bottom:366.740708px;}
.y31{bottom:372.846608px;}
.y4c{bottom:375.842400px;}
.ya6{bottom:376.746956px;}
.y6e{bottom:377.705655px;}
.yd7{bottom:378.891251px;}
.y18{bottom:382.040708px;}
.y30{bottom:386.886263px;}
.y4b{bottom:391.142400px;}
.ya5{bottom:392.046956px;}
.yd6{bottom:392.930906px;}
.y6d{bottom:393.005655px;}
.y17{bottom:397.340708px;}
.y2f{bottom:400.926503px;}
.y4a{bottom:406.442400px;}
.yd5{bottom:406.971146px;}
.ya4{bottom:407.346956px;}
.y6c{bottom:408.305655px;}
.y16{bottom:412.640708px;}
.y2e{bottom:414.966158px;}
.y49{bottom:421.742400px;}
.ya3{bottom:422.646956px;}
.y6b{bottom:423.605655px;}
.y15{bottom:427.940708px;}
.yd4{bottom:435.893096px;}
.y48{bottom:437.042400px;}
.ya2{bottom:437.946956px;}
.y6a{bottom:438.905655px;}
.y14{bottom:443.240708px;}
.y2d{bottom:443.891558px;}
.y47{bottom:452.342400px;}
.ya1{bottom:453.246956px;}
.y69{bottom:454.205655px;}
.y13{bottom:458.540708px;}
.y46{bottom:467.642400px;}
.ya0{bottom:468.546956px;}
.y68{bottom:469.505655px;}
.y12{bottom:473.840708px;}
.yd3{bottom:480.956996px;}
.y9f{bottom:483.846956px;}
.y67{bottom:484.805655px;}
.y2c{bottom:488.950208px;}
.y45{bottom:489.317400px;}
.yd2{bottom:494.996651px;}
.y9e{bottom:499.146956px;}
.y66{bottom:500.105655px;}
.y11{bottom:504.019958px;}
.y2b{bottom:504.250208px;}
.yd1{bottom:509.036306px;}
.y9d{bottom:514.446956px;}
.y44{bottom:515.251050px;}
.y65{bottom:515.405655px;}
.yd0{bottom:523.076546px;}
.y9c{bottom:529.746956px;}
.y43{bottom:530.551050px;}
.y64{bottom:530.705655px;}
.ycf{bottom:537.116201px;}
.y9b{bottom:545.046956px;}
.y42{bottom:545.851050px;}
.y63{bottom:546.005655px;}
.y10{bottom:550.820558px;}
.yce{bottom:551.155856px;}
.y9a{bottom:560.346956px;}
.y41{bottom:561.151050px;}
.y61{bottom:561.303900px;}
.y62{bottom:561.305655px;}
.yf{bottom:564.858455px;}
.ycd{bottom:565.195511px;}
.y99{bottom:575.646956px;}
.y40{bottom:576.451050px;}
.y60{bottom:576.603900px;}
.ye{bottom:578.898695px;}
.ycc{bottom:579.235166px;}
.y98{bottom:590.946956px;}
.y3f{bottom:591.751050px;}
.y5f{bottom:591.903900px;}
.ycb{bottom:593.275406px;}
.yd{bottom:598.039445px;}
.y97{bottom:606.246956px;}
.yc{bottom:612.079685px;}
.y96{bottom:621.546956px;}
.yca{bottom:622.197806px;}
.yb{bottom:626.119340px;}
.y81{bottom:633.637605px;}
.y95{bottom:636.846956px;}
.ya{bottom:640.159580px;}
.y80{bottom:647.677260px;}
.y94{bottom:652.146956px;}
.y9{bottom:654.199820px;}
.y7f{bottom:661.717500px;}
.yc9{bottom:667.256456px;}
.y93{bottom:667.446956px;}
.y8{bottom:668.239475px;}
.yc8{bottom:682.556456px;}
.y92{bottom:682.746956px;}
.y7{bottom:687.380825px;}
.yc7{bottom:697.856456px;}
.y91{bottom:698.046956px;}
.y6{bottom:701.420480px;}
.yc6{bottom:713.156456px;}
.y90{bottom:713.346956px;}
.yc5{bottom:728.456456px;}
.y8f{bottom:728.646956px;}
.yc4{bottom:743.756456px;}
.y8e{bottom:743.946956px;}
.y5{bottom:751.602530px;}
.yc3{bottom:759.056456px;}
.y8d{bottom:759.246956px;}
.yc2{bottom:774.356456px;}
.y8c{bottom:774.546956px;}
.yc1{bottom:789.656456px;}
.y8b{bottom:789.846956px;}
.y4{bottom:803.952530px;}
.yc0{bottom:804.956456px;}
.y8a{bottom:805.146956px;}
.ybf{bottom:820.256456px;}
.y89{bottom:820.446956px;}
.ybe{bottom:835.556456px;}
.y88{bottom:835.746956px;}
.y3{bottom:840.512030px;}
.ybd{bottom:850.856456px;}
.y87{bottom:851.046956px;}
.ybc{bottom:866.156456px;}
.y86{bottom:866.346956px;}
.ybb{bottom:881.456456px;}
.y85{bottom:881.646956px;}
.yba{bottom:896.756456px;}
.y84{bottom:896.946956px;}
.yb9{bottom:912.056456px;}
.y83{bottom:912.249300px;}
.yb8{bottom:927.356456px;}
.y2{bottom:936.481500px;}
.y82{bottom:942.428550px;}
.yb7{bottom:942.656456px;}
.h7{height:34.210800px;}
.h8{height:34.220175px;}
.h6{height:34.304400px;}
.h2{height:35.088000px;}
.h4{height:36.975000px;}
.hb{height:37.026000px;}
.ha{height:37.281000px;}
.h9{height:37.383000px;}
.hc{height:38.932020px;}
.h5{height:39.150000px;}
.hd{height:46.169625px;}
.h3{height:52.272000px;}
.h0{height:1020.450000px;}
.h1{height:1020.750000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:55.269990px;}
.xf{left:72.300000px;}
.x2{left:80.571150px;}
.x3{left:130.075170px;}
.x8{left:162.484890px;}
.x12{left:167.100000px;}
.x4{left:205.148520px;}
.x7{left:225.372570px;}
.x6{left:238.125720px;}
.x5{left:279.281370px;}
.xa{left:362.468676px;}
.x10{left:379.474674px;}
.x15{left:383.729989px;}
.xd{left:417.664476px;}
.xb{left:442.092276px;}
.x13{left:448.443675px;}
.xc{left:472.170726px;}
.x14{left:474.640489px;}
.xe{left:483.352626px;}
.x11{left:564.691764px;}
.x1{left:638.550000px;}
@media print{
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v1{vertical-align:13.339573pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.498667pt;}
.ls6{letter-spacing:-0.453333pt;}
.lsd{letter-spacing:-0.408000pt;}
.ls14{letter-spacing:-0.362667pt;}
.ls10{letter-spacing:-0.317333pt;}
.ls12{letter-spacing:-0.272000pt;}
.ls4{letter-spacing:-0.226667pt;}
.ls1e{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.136000pt;}
.ls1c{letter-spacing:-0.090667pt;}
.ls13{letter-spacing:-0.045333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000427pt;}
.ls15{letter-spacing:0.044160pt;}
.lsb{letter-spacing:0.045333pt;}
.lsa{letter-spacing:0.090667pt;}
.lsc{letter-spacing:0.124800pt;}
.ls16{letter-spacing:0.181333pt;}
.ls18{letter-spacing:0.207627pt;}
.ls5{letter-spacing:0.226667pt;}
.lsf{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.374400pt;}
.ls8{letter-spacing:0.406667pt;}
.ls7{letter-spacing:0.408000pt;}
.ls1f{letter-spacing:0.457600pt;}
.ls1b{letter-spacing:0.624000pt;}
.ls17{letter-spacing:0.707200pt;}
.ls1a{letter-spacing:0.790400pt;}
.ls2{letter-spacing:0.915200pt;}
.ls9{letter-spacing:0.952000pt;}
.ls0{letter-spacing:178.133333pt;}
.ws3{word-spacing:-32.000000pt;}
.ws7{word-spacing:-31.200000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws5e{word-spacing:-11.514667pt;}
.ws38{word-spacing:-11.424000pt;}
.ws8{word-spacing:-11.333333pt;}
.ws5d{word-spacing:-10.970667pt;}
.ws5c{word-spacing:-10.925333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws39{word-spacing:-10.524800pt;}
.ws6{word-spacing:-10.400000pt;}
.ws37{word-spacing:-7.333333pt;}
.ws18{word-spacing:-3.400000pt;}
.ws1c{word-spacing:-3.264000pt;}
.ws74{word-spacing:-3.037333pt;}
.ws7e{word-spacing:-2.992000pt;}
.ws42{word-spacing:-2.810667pt;}
.ws8f{word-spacing:-2.704000pt;}
.ws50{word-spacing:-2.674667pt;}
.ws3e{word-spacing:-2.448000pt;}
.ws92{word-spacing:-2.371200pt;}
.ws46{word-spacing:-2.357333pt;}
.ws2e{word-spacing:-2.329600pt;}
.ws4e{word-spacing:-2.312000pt;}
.ws82{word-spacing:-2.221333pt;}
.ws51{word-spacing:-1.813333pt;}
.ws19{word-spacing:-1.768000pt;}
.ws53{word-spacing:-1.722667pt;}
.ws73{word-spacing:-1.632000pt;}
.ws3c{word-spacing:-1.541333pt;}
.ws5a{word-spacing:-1.539200pt;}
.ws25{word-spacing:-1.450667pt;}
.ws6d{word-spacing:-1.405333pt;}
.ws29{word-spacing:-1.360000pt;}
.ws2f{word-spacing:-1.289600pt;}
.ws26{word-spacing:-1.269333pt;}
.ws54{word-spacing:-1.224000pt;}
.ws5f{word-spacing:-1.178667pt;}
.ws71{word-spacing:-1.088000pt;}
.ws72{word-spacing:-0.816000pt;}
.ws12{word-spacing:-0.748800pt;}
.ws95{word-spacing:-0.624000pt;}
.ws94{word-spacing:-0.374400pt;}
.ws28{word-spacing:-0.317333pt;}
.ws70{word-spacing:-0.272000pt;}
.ws1b{word-spacing:-0.226667pt;}
.ws4b{word-spacing:-0.181333pt;}
.ws64{word-spacing:-0.136000pt;}
.ws5b{word-spacing:-0.083200pt;}
.ws3a{word-spacing:-0.041600pt;}
.ws9{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.090667pt;}
.ws84{word-spacing:0.181333pt;}
.ws3d{word-spacing:0.317333pt;}
.ws67{word-spacing:0.498667pt;}
.ws65{word-spacing:0.589333pt;}
.ws75{word-spacing:0.634667pt;}
.ws77{word-spacing:0.770667pt;}
.ws24{word-spacing:0.861333pt;}
.ws27{word-spacing:0.906667pt;}
.ws61{word-spacing:0.952000pt;}
.ws11{word-spacing:0.956800pt;}
.ws14{word-spacing:1.040000pt;}
.ws49{word-spacing:1.088000pt;}
.ws1d{word-spacing:1.133333pt;}
.ws7f{word-spacing:1.178667pt;}
.ws63{word-spacing:1.314667pt;}
.ws8a{word-spacing:1.331200pt;}
.ws69{word-spacing:1.450667pt;}
.ws32{word-spacing:1.456000pt;}
.ws83{word-spacing:1.496000pt;}
.ws8b{word-spacing:1.622400pt;}
.ws81{word-spacing:1.632000pt;}
.ws15{word-spacing:1.705600pt;}
.ws66{word-spacing:1.722667pt;}
.ws93{word-spacing:1.830400pt;}
.ws80{word-spacing:1.949333pt;}
.ws13{word-spacing:1.996800pt;}
.wsf{word-spacing:2.080000pt;}
.ws78{word-spacing:2.085333pt;}
.ws21{word-spacing:2.130667pt;}
.ws89{word-spacing:2.163200pt;}
.ws2b{word-spacing:2.266667pt;}
.ws52{word-spacing:2.312000pt;}
.ws96{word-spacing:2.412800pt;}
.ws45{word-spacing:2.493333pt;}
.ws34{word-spacing:2.620800pt;}
.wsa{word-spacing:2.688000pt;}
.ws35{word-spacing:2.704000pt;}
.ws87{word-spacing:2.745600pt;}
.wsc{word-spacing:2.856000pt;}
.ws3f{word-spacing:2.901333pt;}
.ws4f{word-spacing:2.992000pt;}
.wsd{word-spacing:3.024000pt;}
.ws1f{word-spacing:3.082667pt;}
.ws59{word-spacing:3.161600pt;}
.ws7c{word-spacing:3.445333pt;}
.ws30{word-spacing:3.577600pt;}
.ws7b{word-spacing:3.672000pt;}
.ws88{word-spacing:3.702400pt;}
.ws48{word-spacing:3.717333pt;}
.ws6a{word-spacing:3.944000pt;}
.wsb{word-spacing:4.032000pt;}
.ws62{word-spacing:4.034667pt;}
.ws60{word-spacing:4.125333pt;}
.ws57{word-spacing:4.243200pt;}
.ws6e{word-spacing:4.261333pt;}
.ws91{word-spacing:4.326400pt;}
.ws43{word-spacing:4.352000pt;}
.ws2a{word-spacing:4.488000pt;}
.ws76{word-spacing:4.533333pt;}
.ws2d{word-spacing:4.534400pt;}
.ws10{word-spacing:4.659200pt;}
.ws22{word-spacing:4.714667pt;}
.ws8c{word-spacing:4.908800pt;}
.ws1a{word-spacing:4.941333pt;}
.ws41{word-spacing:4.986667pt;}
.ws7a{word-spacing:5.032000pt;}
.ws85{word-spacing:5.349333pt;}
.ws90{word-spacing:5.366400pt;}
.ws31{word-spacing:5.408000pt;}
.ws7d{word-spacing:5.440000pt;}
.ws2c{word-spacing:5.616000pt;}
.ws4a{word-spacing:5.621333pt;}
.ws55{word-spacing:5.666667pt;}
.ws56{word-spacing:5.802667pt;}
.ws40{word-spacing:6.074667pt;}
.ws79{word-spacing:6.437333pt;}
.ws6f{word-spacing:6.936000pt;}
.ws6c{word-spacing:7.026667pt;}
.ws58{word-spacing:7.030400pt;}
.ws8d{word-spacing:7.280000pt;}
.ws68{word-spacing:7.434667pt;}
.ws33{word-spacing:7.529600pt;}
.ws20{word-spacing:7.616000pt;}
.ws86{word-spacing:7.661333pt;}
.ws23{word-spacing:7.706667pt;}
.ws4d{word-spacing:7.842667pt;}
.ws6b{word-spacing:7.888000pt;}
.ws44{word-spacing:7.933333pt;}
.ws97{word-spacing:7.945600pt;}
.wse{word-spacing:8.112000pt;}
.ws17{word-spacing:8.250667pt;}
.ws8e{word-spacing:8.528000pt;}
.ws36{word-spacing:8.985600pt;}
.ws3b{word-spacing:9.429333pt;}
.ws16{word-spacing:10.400000pt;}
.ws47{word-spacing:11.288000pt;}
.ws1e{word-spacing:11.333333pt;}
.ws4{word-spacing:117.462400pt;}
.ws1{word-spacing:154.452267pt;}
.ws0{word-spacing:159.745067pt;}
._9{margin-left:-14.227200pt;}
._11{margin-left:-11.190358pt;}
._3{margin-left:-7.279958pt;}
._b{margin-left:-6.074667pt;}
._d{margin-left:-5.168000pt;}
._c{margin-left:-4.262371pt;}
._1{margin-left:-2.603733pt;}
._2{margin-left:-1.152410pt;}
._e{width:1.107638pt;}
._12{width:2.038801pt;}
._a{width:3.445506pt;}
._8{width:6.822933pt;}
._4{width:9.371733pt;}
._10{width:13.187491pt;}
._6{width:52.588027pt;}
._7{width:56.441360pt;}
._f{width:65.598693pt;}
._5{width:66.709867pt;}
._0{width:117.417813pt;}
.fs5{font-size:29.333333pt;}
.fs4{font-size:41.600000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:56.000000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:44.696933pt;}
.y5e{bottom:89.282133pt;}
.y7e{bottom:94.622853pt;}
.y2a{bottom:94.791741pt;}
.y5d{bottom:102.882133pt;}
.y3e{bottom:105.375487pt;}
.y7d{bottom:107.102547pt;}
.y29{bottom:108.391741pt;}
.y5c{bottom:116.482133pt;}
.yb6{bottom:117.286183pt;}
.y3d{bottom:117.855701pt;}
.y7c{bottom:119.582760pt;}
.y28{bottom:121.991741pt;}
.ye8{bottom:124.634837pt;}
.y5b{bottom:130.082133pt;}
.y3c{bottom:130.335914pt;}
.yb5{bottom:130.886183pt;}
.y7b{bottom:132.062453pt;}
.y27{bottom:135.591741pt;}
.ye7{bottom:137.114530pt;}
.y3b{bottom:142.816127pt;}
.y5a{bottom:143.682133pt;}
.yb4{bottom:144.486183pt;}
.y7a{bottom:144.542147pt;}
.y26{bottom:149.191741pt;}
.ye6{bottom:149.594223pt;}
.y79{bottom:157.022360pt;}
.y59{bottom:157.282133pt;}
.yb3{bottom:158.086183pt;}
.ye5{bottom:162.073917pt;}
.y25{bottom:162.791741pt;}
.y3a{bottom:162.825461pt;}
.y58{bottom:170.882133pt;}
.yb2{bottom:171.686183pt;}
.ye4{bottom:174.554130pt;}
.y39{bottom:175.305674pt;}
.y24{bottom:176.391741pt;}
.y78{bottom:177.060360pt;}
.y57{bottom:184.482133pt;}
.yb1{bottom:185.286183pt;}
.ye3{bottom:187.033823pt;}
.y38{bottom:187.785887pt;}
.y23{bottom:189.991741pt;}
.y56{bottom:198.082133pt;}
.y77{bottom:198.219693pt;}
.yb0{bottom:198.886183pt;}
.ye2{bottom:199.513517pt;}
.y37{bottom:200.265581pt;}
.y22{bottom:203.591741pt;}
.y55{bottom:211.682133pt;}
.y76{bottom:211.819693pt;}
.ye1{bottom:211.993730pt;}
.yaf{bottom:212.486183pt;}
.y36{bottom:212.745794pt;}
.y21{bottom:217.191741pt;}
.ye0{bottom:224.473423pt;}
.y54{bottom:225.282133pt;}
.y75{bottom:225.419693pt;}
.yae{bottom:226.086183pt;}
.y20{bottom:230.791741pt;}
.ydf{bottom:236.953637pt;}
.y35{bottom:238.456194pt;}
.y53{bottom:238.882133pt;}
.y74{bottom:239.019693pt;}
.yad{bottom:239.686183pt;}
.y1f{bottom:244.391741pt;}
.yde{bottom:249.433330pt;}
.y34{bottom:252.056194pt;}
.y52{bottom:252.482133pt;}
.yac{bottom:253.286183pt;}
.y1e{bottom:257.991741pt;}
.y73{bottom:260.179027pt;}
.ydd{bottom:261.913023pt;}
.y51{bottom:266.082133pt;}
.yab{bottom:266.886183pt;}
.y1d{bottom:271.591741pt;}
.y72{bottom:273.779027pt;}
.ydc{bottom:274.393237pt;}
.y33{bottom:278.882194pt;}
.y50{bottom:279.682133pt;}
.yaa{bottom:280.486183pt;}
.y1c{bottom:285.191741pt;}
.ydb{bottom:286.872930pt;}
.y71{bottom:287.379027pt;}
.y4f{bottom:293.282133pt;}
.ya9{bottom:294.086183pt;}
.y1b{bottom:298.791741pt;}
.yda{bottom:299.352623pt;}
.y70{bottom:300.979027pt;}
.y4e{bottom:306.882133pt;}
.ya8{bottom:307.686183pt;}
.yd9{bottom:311.832837pt;}
.y1a{bottom:312.391741pt;}
.y32{bottom:318.938994pt;}
.y4d{bottom:320.482133pt;}
.ya7{bottom:321.286183pt;}
.y6f{bottom:322.138360pt;}
.yd8{bottom:324.312530pt;}
.y19{bottom:325.991741pt;}
.y31{bottom:331.419207pt;}
.y4c{bottom:334.082133pt;}
.ya6{bottom:334.886183pt;}
.y6e{bottom:335.738360pt;}
.yd7{bottom:336.792223pt;}
.y18{bottom:339.591741pt;}
.y30{bottom:343.898901pt;}
.y4b{bottom:347.682133pt;}
.ya5{bottom:348.486183pt;}
.yd6{bottom:349.271917pt;}
.y6d{bottom:349.338360pt;}
.y17{bottom:353.191741pt;}
.y2f{bottom:356.379114pt;}
.y4a{bottom:361.282133pt;}
.yd5{bottom:361.752130pt;}
.ya4{bottom:362.086183pt;}
.y6c{bottom:362.938360pt;}
.y16{bottom:366.791741pt;}
.y2e{bottom:368.858807pt;}
.y49{bottom:374.882133pt;}
.ya3{bottom:375.686183pt;}
.y6b{bottom:376.538360pt;}
.y15{bottom:380.391741pt;}
.yd4{bottom:387.460530pt;}
.y48{bottom:388.482133pt;}
.ya2{bottom:389.286183pt;}
.y6a{bottom:390.138360pt;}
.y14{bottom:393.991741pt;}
.y2d{bottom:394.570274pt;}
.y47{bottom:402.082133pt;}
.ya1{bottom:402.886183pt;}
.y69{bottom:403.738360pt;}
.y13{bottom:407.591741pt;}
.y46{bottom:415.682133pt;}
.ya0{bottom:416.486183pt;}
.y68{bottom:417.338360pt;}
.y12{bottom:421.191741pt;}
.yd3{bottom:427.517330pt;}
.y9f{bottom:430.086183pt;}
.y67{bottom:430.938360pt;}
.y2c{bottom:434.622407pt;}
.y45{bottom:434.948800pt;}
.yd2{bottom:439.997023pt;}
.y9e{bottom:443.686183pt;}
.y66{bottom:444.538360pt;}
.y11{bottom:448.017741pt;}
.y2b{bottom:448.222407pt;}
.yd1{bottom:452.476717pt;}
.y9d{bottom:457.286183pt;}
.y44{bottom:458.000933pt;}
.y65{bottom:458.138360pt;}
.yd0{bottom:464.956930pt;}
.y9c{bottom:470.886183pt;}
.y43{bottom:471.600933pt;}
.y64{bottom:471.738360pt;}
.ycf{bottom:477.436623pt;}
.y9b{bottom:484.486183pt;}
.y42{bottom:485.200933pt;}
.y63{bottom:485.338360pt;}
.y10{bottom:489.618274pt;}
.yce{bottom:489.916317pt;}
.y9a{bottom:498.086183pt;}
.y41{bottom:498.800933pt;}
.y61{bottom:498.936800pt;}
.y62{bottom:498.938360pt;}
.yf{bottom:502.096404pt;}
.ycd{bottom:502.396010pt;}
.y99{bottom:511.686183pt;}
.y40{bottom:512.400933pt;}
.y60{bottom:512.536800pt;}
.ye{bottom:514.576617pt;}
.ycc{bottom:514.875703pt;}
.y98{bottom:525.286183pt;}
.y3f{bottom:526.000933pt;}
.y5f{bottom:526.136800pt;}
.ycb{bottom:527.355917pt;}
.yd{bottom:531.590617pt;}
.y97{bottom:538.886183pt;}
.yc{bottom:544.070831pt;}
.y96{bottom:552.486183pt;}
.yca{bottom:553.064717pt;}
.yb{bottom:556.550524pt;}
.y81{bottom:563.233427pt;}
.y95{bottom:566.086183pt;}
.ya{bottom:569.030737pt;}
.y80{bottom:575.713120pt;}
.y94{bottom:579.686183pt;}
.y9{bottom:581.510951pt;}
.y7f{bottom:588.193333pt;}
.yc9{bottom:593.116850pt;}
.y93{bottom:593.286183pt;}
.y8{bottom:593.990644pt;}
.yc8{bottom:606.716850pt;}
.y92{bottom:606.886183pt;}
.y7{bottom:611.005177pt;}
.yc7{bottom:620.316850pt;}
.y91{bottom:620.486183pt;}
.y6{bottom:623.484871pt;}
.yc6{bottom:633.916850pt;}
.y90{bottom:634.086183pt;}
.yc5{bottom:647.516850pt;}
.y8f{bottom:647.686183pt;}
.yc4{bottom:661.116850pt;}
.y8e{bottom:661.286183pt;}
.y5{bottom:668.091137pt;}
.yc3{bottom:674.716850pt;}
.y8d{bottom:674.886183pt;}
.yc2{bottom:688.316850pt;}
.y8c{bottom:688.486183pt;}
.yc1{bottom:701.916850pt;}
.y8b{bottom:702.086183pt;}
.y4{bottom:714.624471pt;}
.yc0{bottom:715.516850pt;}
.y8a{bottom:715.686183pt;}
.ybf{bottom:729.116850pt;}
.y89{bottom:729.286183pt;}
.ybe{bottom:742.716850pt;}
.y88{bottom:742.886183pt;}
.y3{bottom:747.121804pt;}
.ybd{bottom:756.316850pt;}
.y87{bottom:756.486183pt;}
.ybc{bottom:769.916850pt;}
.y86{bottom:770.086183pt;}
.ybb{bottom:783.516850pt;}
.y85{bottom:783.686183pt;}
.yba{bottom:797.116850pt;}
.y84{bottom:797.286183pt;}
.yb9{bottom:810.716850pt;}
.y83{bottom:810.888267pt;}
.yb8{bottom:824.316850pt;}
.y2{bottom:832.428000pt;}
.y82{bottom:837.714267pt;}
.yb7{bottom:837.916850pt;}
.h7{height:30.409600pt;}
.h8{height:30.417933pt;}
.h6{height:30.492800pt;}
.h2{height:31.189333pt;}
.h4{height:32.866667pt;}
.hb{height:32.912000pt;}
.ha{height:33.138667pt;}
.h9{height:33.229333pt;}
.hc{height:34.606240pt;}
.h5{height:34.800000pt;}
.hd{height:41.039667pt;}
.h3{height:46.464000pt;}
.h0{height:907.066667pt;}
.h1{height:907.333333pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:49.128880pt;}
.xf{left:64.266667pt;}
.x2{left:71.618800pt;}
.x3{left:115.622373pt;}
.x8{left:144.431013pt;}
.x12{left:148.533333pt;}
.x4{left:182.354240pt;}
.x7{left:200.331173pt;}
.x6{left:211.667307pt;}
.x5{left:248.250107pt;}
.xa{left:322.194378pt;}
.x10{left:337.310822pt;}
.x15{left:341.093323pt;}
.xd{left:371.257312pt;}
.xb{left:392.970912pt;}
.x13{left:398.616600pt;}
.xc{left:419.707312pt;}
.x14{left:421.902657pt;}
.xe{left:429.646778pt;}
.x11{left:501.948235pt;}
.x1{left:567.600000pt;}
}




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