
    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_60e6f9fc80f95016fa12f5a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.720000;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_d0389021482b017b0b1742e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_a900b9abd4baa9ddbbc55aa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.816000;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_dee8acfbc35704066080c82d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_2d2a23e82f61322f3b4c0ddb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_90940624580aaca098f5ddce.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_85653c7e6841f6c0b79810e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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);}
.v1{vertical-align:-19.993800px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-4.480656px;}
.ls17{letter-spacing:-4.362744px;}
.ls1f{letter-spacing:-2.644697px;}
.ls21{letter-spacing:-1.512000px;}
.ls30{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.322348px;}
.ls6{letter-spacing:-1.232850px;}
.ls2f{letter-spacing:-1.224000px;}
.ls4{letter-spacing:-1.099560px;}
.ls31{letter-spacing:-0.995735px;}
.ls1{letter-spacing:-0.986280px;}
.ls1a{letter-spacing:-0.943296px;}
.lsb{letter-spacing:-0.936000px;}
.ls33{letter-spacing:-0.894499px;}
.ls1c{letter-spacing:-0.881566px;}
.ls2d{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.825384px;}
.ls2{letter-spacing:-0.799680px;}
.lsd{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.739710px;}
.ls28{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.699720px;}
.ls24{letter-spacing:-0.672000px;}
.ls1b{letter-spacing:-0.648518px;}
.ls12{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.463227px;}
.lsa{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.390807px;}
.ls14{letter-spacing:-0.370582px;}
.ls27{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.353736px;}
.ls23{letter-spacing:-0.336000px;}
.lse{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.220391px;}
.lsf{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.185291px;}
.ls10{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.007800px;}
.ls20{letter-spacing:0.008400px;}
.ls2c{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.084000px;}
.ls2b{letter-spacing:0.168000px;}
.ls2a{letter-spacing:0.198000px;}
.ls32{letter-spacing:0.271564px;}
.ls29{letter-spacing:0.420000px;}
.ls25{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.672000px;}
.ls2e{letter-spacing:0.756000px;}
.ls1e{letter-spacing:0.840000px;}
.ls8{letter-spacing:56.319600px;}
.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;}
}
.wse{word-spacing:-51.571588px;}
.ws23{word-spacing:-38.808000px;}
.ws2{word-spacing:-31.314390px;}
.ws5{word-spacing:-30.873753px;}
.ws18{word-spacing:-30.303384px;}
.ws9{word-spacing:-29.831736px;}
.ws1a{word-spacing:-29.713824px;}
.ws4{word-spacing:-27.089160px;}
.ws1{word-spacing:-26.989200px;}
.ws3{word-spacing:-26.689320px;}
.ws19{word-spacing:-26.294376px;}
.ws17{word-spacing:-26.176464px;}
.ws36{word-spacing:-23.807128px;}
.ws35{word-spacing:-22.539829px;}
.ws31{word-spacing:-22.344000px;}
.ws1b{word-spacing:-21.586378px;}
.ws37{word-spacing:-20.832000px;}
.ws24{word-spacing:-20.244000px;}
.ws27{word-spacing:-19.512000px;}
.ws2d{word-spacing:-19.440000px;}
.ws28{word-spacing:-19.296000px;}
.ws2e{word-spacing:-19.152000px;}
.ws33{word-spacing:-18.792000px;}
.wsd{word-spacing:-17.280000px;}
.wsb{word-spacing:-16.992000px;}
.wsc{word-spacing:-16.848000px;}
.wsa{word-spacing:-16.488000px;}
.ws38{word-spacing:-1.788998px;}
.ws2f{word-spacing:-0.504000px;}
.ws2b{word-spacing:-0.198000px;}
.ws0{word-spacing:-0.073700px;}
.ws30{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.ws15{word-spacing:0.072000px;}
.ws32{word-spacing:0.084000px;}
.ws14{word-spacing:0.144000px;}
.ws3a{word-spacing:0.168000px;}
.ws1e{word-spacing:0.185291px;}
.ws13{word-spacing:0.216000px;}
.ws21{word-spacing:0.220391px;}
.ws12{word-spacing:0.288000px;}
.ws25{word-spacing:0.336000px;}
.ws29{word-spacing:0.360000px;}
.ws1c{word-spacing:0.370582px;}
.ws2a{word-spacing:0.420000px;}
.ws10{word-spacing:0.432000px;}
.ws1d{word-spacing:0.463227px;}
.wsf{word-spacing:0.504000px;}
.ws16{word-spacing:0.576000px;}
.ws26{word-spacing:0.672000px;}
.ws2c{word-spacing:0.720000px;}
.ws34{word-spacing:0.864000px;}
.ws1f{word-spacing:0.881566px;}
.ws39{word-spacing:0.894499px;}
.ws11{word-spacing:0.936000px;}
.ws6{word-spacing:0.986280px;}
.ws8{word-spacing:1.232850px;}
.ws20{word-spacing:1.322348px;}
.ws22{word-spacing:2.644697px;}
._e{margin-left:-38.430355px;}
._c{margin-left:-20.016000px;}
._b{margin-left:-7.537194px;}
._9{margin-left:-6.228000px;}
._5{margin-left:-4.628219px;}
._3{margin-left:-3.052800px;}
._1{margin-left:-1.764000px;}
._0{width:1.035594px;}
._2{width:2.455200px;}
._7{width:3.605477px;}
._6{width:4.633942px;}
._8{width:6.770779px;}
._a{width:8.352000px;}
._d{width:20.016000px;}
._4{width:56.304000px;}
.fc4{color:rgb(165,39,125);}
.fc2{color:rgb(44,176,135);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,35,33);}
.fsc{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:73.700400px;}
.fs9{font-size:84.000000px;}
.fsd{font-size:90.521400px;}
.fs8{font-size:92.645400px;}
.fs2{font-size:99.960000px;}
.fs6{font-size:117.912000px;}
.fs1{font-size:123.285000px;}
.fs3{font-size:130.269000px;}
.fse{font-size:149.083200px;}
.fsa{font-size:168.000000px;}
.fs7{font-size:220.391400px;}
.y0{bottom:0.000000px;}
.y5{bottom:28.705200px;}
.y81{bottom:55.810050px;}
.y147{bottom:57.074550px;}
.y171{bottom:57.225600px;}
.yf6{bottom:62.022450px;}
.ybe{bottom:62.695200px;}
.y170{bottom:70.725600px;}
.y80{bottom:76.810050px;}
.y146{bottom:78.074550px;}
.yf5{bottom:83.022450px;}
.ybd{bottom:83.695200px;}
.y16f{bottom:84.225600px;}
.y24{bottom:86.097450px;}
.y16e{bottom:97.725600px;}
.y7f{bottom:97.810050px;}
.y145{bottom:99.074550px;}
.yf4{bottom:104.022450px;}
.ybc{bottom:108.947100px;}
.y23{bottom:111.597450px;}
.y7e{bottom:118.810050px;}
.y144{bottom:120.074550px;}
.yf3{bottom:125.022450px;}
.ybb{bottom:129.947100px;}
.y22{bottom:137.097450px;}
.y7d{bottom:139.810050px;}
.y143{bottom:141.074550px;}
.yf2{bottom:146.022450px;}
.y168{bottom:153.902850px;}
.yba{bottom:155.199150px;}
.y7c{bottom:160.810050px;}
.y142{bottom:162.074550px;}
.y21{bottom:162.597450px;}
.yf1{bottom:167.022600px;}
.y167{bottom:174.902850px;}
.yb9{bottom:176.199150px;}
.y7b{bottom:181.810050px;}
.y141{bottom:183.074550px;}
.yf0{bottom:188.022600px;}
.y20{bottom:188.097450px;}
.y166{bottom:195.902850px;}
.yb8{bottom:197.199150px;}
.y7a{bottom:202.810050px;}
.y140{bottom:204.074550px;}
.yef{bottom:209.022600px;}
.y1f{bottom:213.597450px;}
.y165{bottom:216.902850px;}
.yb7{bottom:222.451200px;}
.y10b{bottom:222.597900px;}
.y79{bottom:223.810050px;}
.y13f{bottom:225.074550px;}
.yee{bottom:230.022600px;}
.y164{bottom:237.902850px;}
.y1e{bottom:239.097450px;}
.yb6{bottom:243.451200px;}
.y78{bottom:244.810050px;}
.y10a{bottom:246.597900px;}
.yed{bottom:251.022600px;}
.y163{bottom:258.902850px;}
.yb5{bottom:264.451200px;}
.y1d{bottom:264.597450px;}
.y77{bottom:265.810050px;}
.y59{bottom:265.956300px;}
.y13e{bottom:266.377650px;}
.y14e{bottom:281.848200px;}
.y58{bottom:288.456300px;}
.y1c{bottom:290.097450px;}
.yec{bottom:292.325700px;}
.y36{bottom:295.314450px;}
.y162{bottom:300.205950px;}
.y76{bottom:302.316900px;}
.y14d{bottom:302.848200px;}
.yb4{bottom:305.754300px;}
.y57{bottom:310.956300px;}
.y83{bottom:313.435500px;}
.y1b{bottom:315.597450px;}
.y35{bottom:320.581350px;}
.y14c{bottom:323.848200px;}
.y13d{bottom:326.082300px;}
.y56{bottom:333.456300px;}
.y82{bottom:337.435500px;}
.yf8{bottom:337.625550px;}
.y1a{bottom:341.097450px;}
.y14b{bottom:344.848200px;}
.y13c{bottom:347.082300px;}
.y34{bottom:347.718750px;}
.yeb{bottom:352.030500px;}
.y75{bottom:352.810050px;}
.y55{bottom:355.956300px;}
.y161{bottom:359.910750px;}
.yf7{bottom:361.625550px;}
.yb3{bottom:365.458950px;}
.y14a{bottom:365.848200px;}
.yea{bottom:373.030500px;}
.y74{bottom:373.810050px;}
.y9f{bottom:376.097400px;}
.y13b{bottom:376.586400px;}
.y54{bottom:378.456300px;}
.y160{bottom:380.910750px;}
.yb2{bottom:386.458950px;}
.y149{bottom:386.848200px;}
.y19{bottom:387.597450px;}
.y73{bottom:394.810050px;}
.y9e{bottom:397.097400px;}
.y13a{bottom:397.586400px;}
.y109{bottom:400.553550px;}
.y53{bottom:400.956300px;}
.ye9{bottom:402.534300px;}
.y179{bottom:405.867450px;}
.yb1{bottom:407.458950px;}
.y15f{bottom:410.414700px;}
.y72{bottom:415.810050px;}
.y9d{bottom:418.097400px;}
.y148{bottom:421.495500px;}
.y108{bottom:421.553550px;}
.y52{bottom:423.456300px;}
.ye8{bottom:423.534300px;}
.y139{bottom:427.090200px;}
.y15e{bottom:431.414700px;}
.yb0{bottom:432.711000px;}
.y71{bottom:436.810050px;}
.y9c{bottom:439.097400px;}
.y107{bottom:442.553550px;}
.ye7{bottom:444.534300px;}
.y138{bottom:448.090200px;}
.yaf{bottom:453.711000px;}
.y51{bottom:454.460100px;}
.y70{bottom:457.810050px;}
.y9b{bottom:460.097400px;}
.y106{bottom:463.553550px;}
.y15d{bottom:464.813400px;}
.y137{bottom:469.090200px;}
.ye6{bottom:474.038250px;}
.y5c{bottom:474.469500px;}
.y50{bottom:476.960100px;}
.y6f{bottom:478.810050px;}
.yae{bottom:478.962900px;}
.yc0{bottom:485.948250px;}
.y12a{bottom:491.180700px;}
.y9a{bottom:494.445000px;}
.ye5{bottom:495.038250px;}
.y105{bottom:498.201000px;}
.y4f{bottom:499.460100px;}
.y6e{bottom:499.810050px;}
.yad{bottom:499.962900px;}
.y136{bottom:502.489050px;}
.y129{bottom:509.180700px;}
.ybf{bottom:509.948250px;}
.y15c{bottom:510.170550px;}
.y1{bottom:511.942050px;}
.ye4{bottom:516.038250px;}
.y6d{bottom:520.810050px;}
.y150{bottom:520.953450px;}
.y4e{bottom:521.960100px;}
.yac{bottom:525.214800px;}
.y128{bottom:527.180700px;}
.y15b{bottom:531.170550px;}
.y174{bottom:533.149650px;}
.y6c{bottom:541.810050px;}
.y4d{bottom:544.460100px;}
.y2d{bottom:544.517100px;}
.y14f{bottom:544.953450px;}
.y127{bottom:545.180700px;}
.ye3{bottom:545.542200px;}
.yab{bottom:546.214800px;}
.y135{bottom:547.846200px;}
.y15a{bottom:552.170550px;}
.y33{bottom:553.456350px;}
.yd5{bottom:557.308350px;}
.y18{bottom:559.870200px;}
.y6b{bottom:562.810050px;}
.y126{bottom:563.180700px;}
.ye2{bottom:566.542200px;}
.yaa{bottom:567.214800px;}
.y134{bottom:568.846200px;}
.y2c{bottom:569.784000px;}
.y173{bottom:569.806350px;}
.y159{bottom:573.170550px;}
.y99{bottom:574.365750px;}
.yd4{bottom:578.308350px;}
.y32{bottom:578.723250px;}
.y104{bottom:579.361650px;}
.y125{bottom:581.180700px;}
.y17{bottom:581.470350px;}
.y16d{bottom:588.880350px;}
.y133{bottom:589.846200px;}
.y98{bottom:595.365750px;}
.y103{bottom:597.361650px;}
.y2b{bottom:597.718800px;}
.y6a{bottom:598.234500px;}
.y124{bottom:599.180700px;}
.yd3{bottom:599.308350px;}
.ye1{bottom:599.941050px;}
.ya9{bottom:600.613650px;}
.y16{bottom:603.070200px;}
.y172{bottom:606.463050px;}
.y31{bottom:607.146300px;}
.y158{bottom:607.939350px;}
.y16c{bottom:609.880350px;}
.y102{bottom:615.361650px;}
.y97{bottom:616.365750px;}
.y123{bottom:617.180700px;}
.yd2{bottom:620.308350px;}
.y132{bottom:624.614850px;}
.y15{bottom:624.670200px;}
.y16b{bottom:630.880350px;}
.y101{bottom:633.361650px;}
.y122{bottom:635.180700px;}
.y96{bottom:637.365750px;}
.yd1{bottom:641.308350px;}
.ye0{bottom:645.298050px;}
.ya8{bottom:645.970800px;}
.y14{bottom:646.270200px;}
.y4c{bottom:646.544850px;}
.y69{bottom:650.069850px;}
.y100{bottom:651.361650px;}
.y16a{bottom:651.880350px;}
.y121{bottom:653.180700px;}
.y178{bottom:657.673800px;}
.y95{bottom:658.365750px;}
.yd0{bottom:662.308350px;}
.ydf{bottom:666.298050px;}
.ya7{bottom:666.970800px;}
.y13{bottom:667.870200px;}
.y4b{bottom:668.144850px;}
.yff{bottom:669.361650px;}
.y68{bottom:671.069850px;}
.y157{bottom:671.178450px;}
.y120{bottom:671.180700px;}
.y94{bottom:679.365750px;}
.y169{bottom:686.527800px;}
.yfe{bottom:687.361650px;}
.y156{bottom:689.178450px;}
.y11f{bottom:689.180550px;}
.y12{bottom:689.470350px;}
.y4a{bottom:689.744850px;}
.y131{bottom:690.854100px;}
.y177{bottom:691.838700px;}
.ycf{bottom:696.955800px;}
.y93{bottom:700.365750px;}
.ya6{bottom:701.739600px;}
.y67{bottom:703.780200px;}
.yfd{bottom:705.361650px;}
.yde{bottom:705.406650px;}
.y155{bottom:707.178450px;}
.y11e{bottom:707.180550px;}
.y2a{bottom:708.174600px;}
.y130{bottom:708.854100px;}
.y11{bottom:711.070200px;}
.y49{bottom:711.344850px;}
.y92{bottom:721.365750px;}
.yfc{bottom:723.361650px;}
.y154{bottom:725.178450px;}
.y11d{bottom:725.180550px;}
.y12f{bottom:726.854100px;}
.y10{bottom:732.670200px;}
.y48{bottom:732.944850px;}
.y29{bottom:733.441500px;}
.yfb{bottom:741.361650px;}
.y91{bottom:742.365750px;}
.y153{bottom:743.178450px;}
.y11c{bottom:743.180550px;}
.y12e{bottom:744.854100px;}
.ya5{bottom:746.978700px;}
.y66{bottom:751.077750px;}
.yf{bottom:754.270200px;}
.y47{bottom:754.544850px;}
.ydd{bottom:758.802000px;}
.yfa{bottom:759.361650px;}
.y152{bottom:761.178450px;}
.y11b{bottom:761.180550px;}
.y12d{bottom:762.854100px;}
.y90{bottom:763.365750px;}
.y28{bottom:763.568550px;}
.ya4{bottom:767.978700px;}
.y65{bottom:772.077750px;}
.ye{bottom:775.870200px;}
.y46{bottom:776.144850px;}
.yce{bottom:777.361650px;}
.y11a{bottom:779.180550px;}
.ydc{bottom:779.802000px;}
.y12c{bottom:780.853950px;}
.y151{bottom:782.778450px;}
.y8f{bottom:784.365750px;}
.ya3{bottom:785.978700px;}
.y64{bottom:793.077750px;}
.ycd{bottom:795.361650px;}
.y119{bottom:797.180550px;}
.yd{bottom:797.470350px;}
.y45{bottom:797.744850px;}
.ydb{bottom:797.802000px;}
.y12b{bottom:802.454100px;}
.ya2{bottom:803.978700px;}
.y8e{bottom:805.365750px;}
.ycc{bottom:813.361650px;}
.y63{bottom:814.077750px;}
.y118{bottom:815.180550px;}
.yda{bottom:815.802000px;}
.y27{bottom:817.094550px;}
.yc{bottom:819.070200px;}
.y17c{bottom:819.256650px;}
.y44{bottom:819.344850px;}
.ya1{bottom:821.978700px;}
.y8d{bottom:826.365750px;}
.y30{bottom:827.182500px;}
.ycb{bottom:831.361650px;}
.y117{bottom:833.180550px;}
.yd9{bottom:833.802000px;}
.y62{bottom:835.077750px;}
.ya0{bottom:839.978700px;}
.yb{bottom:840.670200px;}
.y43{bottom:840.944850px;}
.y17b{bottom:843.256650px;}
.y8c{bottom:847.365750px;}
.yca{bottom:849.361650px;}
.y116{bottom:851.180550px;}
.yd8{bottom:851.802000px;}
.y2f{bottom:852.449400px;}
.y61{bottom:856.077750px;}
.y3{bottom:860.973750px;}
.ya{bottom:862.270350px;}
.y42{bottom:862.544850px;}
.y17a{bottom:867.256650px;}
.yc9{bottom:867.361650px;}
.y8b{bottom:868.365750px;}
.y115{bottom:869.180550px;}
.yd7{bottom:869.802000px;}
.y60{bottom:877.077750px;}
.y38{bottom:877.955850px;}
.y2e{bottom:881.671650px;}
.y9{bottom:883.870200px;}
.y41{bottom:884.144850px;}
.yc8{bottom:885.361650px;}
.y114{bottom:887.180550px;}
.yd6{bottom:887.802000px;}
.y5f{bottom:889.077750px;}
.y8a{bottom:889.365750px;}
.y2{bottom:891.795000px;}
.yc7{bottom:903.361650px;}
.y113{bottom:905.180550px;}
.y8{bottom:905.470350px;}
.y40{bottom:905.744850px;}
.y89{bottom:910.365750px;}
.yc6{bottom:921.361650px;}
.y112{bottom:923.180550px;}
.y7{bottom:927.070200px;}
.y3f{bottom:927.344850px;}
.y88{bottom:931.365750px;}
.y37{bottom:936.989250px;}
.yc5{bottom:939.361650px;}
.y111{bottom:941.180550px;}
.y6{bottom:948.670200px;}
.y3e{bottom:948.944850px;}
.y5b{bottom:949.700850px;}
.y87{bottom:952.365750px;}
.yc4{bottom:957.361650px;}
.y110{bottom:959.180550px;}
.y3d{bottom:970.544850px;}
.y176{bottom:972.090150px;}
.y86{bottom:973.365750px;}
.y5a{bottom:973.700850px;}
.yc3{bottom:975.361650px;}
.y10f{bottom:977.180550px;}
.y3c{bottom:992.144850px;}
.yc2{bottom:993.361650px;}
.y85{bottom:994.365750px;}
.y10e{bottom:995.180550px;}
.y26{bottom:996.022650px;}
.y175{bottom:1006.255050px;}
.y3b{bottom:1013.744850px;}
.y5e{bottom:1019.508300px;}
.yf9{bottom:1019.865600px;}
.yc1{bottom:1019.865750px;}
.y10d{bottom:1021.684500px;}
.y84{bottom:1023.869700px;}
.y3a{bottom:1035.344850px;}
.y10c{bottom:1045.684500px;}
.y25{bottom:1055.056200px;}
.y39{bottom:1065.448800px;}
.y5d{bottom:1078.541700px;}
.y4{bottom:1173.555150px;}
.h11{height:34.944000px;}
.h5{height:43.680000px;}
.he{height:49.632000px;}
.h10{height:50.400000px;}
.h2{height:52.327284px;}
.h6{height:52.416000px;}
.h8{height:54.144000px;}
.hc{height:61.152000px;}
.hf{height:63.168000px;}
.h7{height:65.846136px;}
.h12{height:65.899579px;}
.ha{height:69.669341px;}
.hb{height:85.839936px;}
.h3{height:89.751480px;}
.h4{height:94.835832px;}
.h13{height:108.532570px;}
.hd{height:122.304000px;}
.h9{height:160.444939px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:54.000000px;}
.x15{left:55.500000px;}
.x1c{left:68.004000px;}
.x16{left:73.916100px;}
.x1e{left:75.044100px;}
.x17{left:81.000000px;}
.x26{left:84.928500px;}
.xb{left:96.222300px;}
.x6{left:97.417350px;}
.x1a{left:103.960650px;}
.x1d{left:105.816300px;}
.x1b{left:110.751900px;}
.x7{left:117.333450px;}
.x8{left:136.417200px;}
.xd{left:140.283900px;}
.xc{left:151.465950px;}
.xa{left:166.352700px;}
.x27{left:193.889700px;}
.xe{left:199.969350px;}
.x25{left:317.622000px;}
.x3{left:371.948250px;}
.x13{left:418.675200px;}
.x4{left:442.556700px;}
.x14{left:466.423650px;}
.x5{left:472.710000px;}
.x9{left:474.450300px;}
.x18{left:480.102150px;}
.x1f{left:481.110300px;}
.x19{left:482.118300px;}
.x24{left:502.402200px;}
.x22{left:503.642400px;}
.xf{left:514.425000px;}
.x20{left:534.655950px;}
.x23{left:536.144250px;}
.x21{left:537.632400px;}
.x11{left:541.965000px;}
.x1{left:550.501500px;}
.x10{left:561.442050px;}
.x12{left:583.969350px;}
@media print{
.v1{vertical-align:-17.772267pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-3.982805pt;}
.ls17{letter-spacing:-3.877995pt;}
.ls1f{letter-spacing:-2.350842pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.175421pt;}
.ls6{letter-spacing:-1.095867pt;}
.ls2f{letter-spacing:-1.088000pt;}
.ls4{letter-spacing:-0.977387pt;}
.ls31{letter-spacing:-0.885098pt;}
.ls1{letter-spacing:-0.876693pt;}
.ls1a{letter-spacing:-0.838485pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls33{letter-spacing:-0.795110pt;}
.ls1c{letter-spacing:-0.783614pt;}
.ls2d{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.733675pt;}
.ls2{letter-spacing:-0.710827pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.657520pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.621973pt;}
.ls24{letter-spacing:-0.597333pt;}
.ls1b{letter-spacing:-0.576460pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.411757pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.347384pt;}
.ls14{letter-spacing:-0.329406pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.314432pt;}
.ls23{letter-spacing:-0.298667pt;}
.lse{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.195903pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.164703pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.006933pt;}
.ls20{letter-spacing:0.007467pt;}
.ls2c{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.074667pt;}
.ls2b{letter-spacing:0.149333pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls32{letter-spacing:0.241390pt;}
.ls29{letter-spacing:0.373333pt;}
.ls25{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.597333pt;}
.ls2e{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls8{letter-spacing:50.061867pt;}
.wse{word-spacing:-45.841411pt;}
.ws23{word-spacing:-34.496000pt;}
.ws2{word-spacing:-27.835013pt;}
.ws5{word-spacing:-27.443336pt;}
.ws18{word-spacing:-26.936341pt;}
.ws9{word-spacing:-26.517099pt;}
.ws1a{word-spacing:-26.412288pt;}
.ws4{word-spacing:-24.079253pt;}
.ws1{word-spacing:-23.990400pt;}
.ws3{word-spacing:-23.723840pt;}
.ws19{word-spacing:-23.372779pt;}
.ws17{word-spacing:-23.267968pt;}
.ws36{word-spacing:-21.161892pt;}
.ws35{word-spacing:-20.035403pt;}
.ws31{word-spacing:-19.861333pt;}
.ws1b{word-spacing:-19.187892pt;}
.ws37{word-spacing:-18.517333pt;}
.ws24{word-spacing:-17.994667pt;}
.ws27{word-spacing:-17.344000pt;}
.ws2d{word-spacing:-17.280000pt;}
.ws28{word-spacing:-17.152000pt;}
.ws2e{word-spacing:-17.024000pt;}
.ws33{word-spacing:-16.704000pt;}
.wsd{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.104000pt;}
.wsc{word-spacing:-14.976000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws38{word-spacing:-1.590221pt;}
.ws2f{word-spacing:-0.448000pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws0{word-spacing:-0.065511pt;}
.ws30{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.ws15{word-spacing:0.064000pt;}
.ws32{word-spacing:0.074667pt;}
.ws14{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.149333pt;}
.ws1e{word-spacing:0.164703pt;}
.ws13{word-spacing:0.192000pt;}
.ws21{word-spacing:0.195903pt;}
.ws12{word-spacing:0.256000pt;}
.ws25{word-spacing:0.298667pt;}
.ws29{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.329406pt;}
.ws2a{word-spacing:0.373333pt;}
.ws10{word-spacing:0.384000pt;}
.ws1d{word-spacing:0.411757pt;}
.wsf{word-spacing:0.448000pt;}
.ws16{word-spacing:0.512000pt;}
.ws26{word-spacing:0.597333pt;}
.ws2c{word-spacing:0.640000pt;}
.ws34{word-spacing:0.768000pt;}
.ws1f{word-spacing:0.783614pt;}
.ws39{word-spacing:0.795110pt;}
.ws11{word-spacing:0.832000pt;}
.ws6{word-spacing:0.876693pt;}
.ws8{word-spacing:1.095867pt;}
.ws20{word-spacing:1.175421pt;}
.ws22{word-spacing:2.350842pt;}
._e{margin-left:-34.160316pt;}
._c{margin-left:-17.792000pt;}
._b{margin-left:-6.699728pt;}
._9{margin-left:-5.536000pt;}
._5{margin-left:-4.113973pt;}
._3{margin-left:-2.713600pt;}
._1{margin-left:-1.568000pt;}
._0{width:0.920528pt;}
._2{width:2.182400pt;}
._7{width:3.204868pt;}
._6{width:4.119059pt;}
._8{width:6.018470pt;}
._a{width:7.424000pt;}
._d{width:17.792000pt;}
._4{width:50.048000pt;}
.fsc{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:65.511467pt;}
.fs9{font-size:74.666667pt;}
.fsd{font-size:80.463467pt;}
.fs8{font-size:82.351467pt;}
.fs2{font-size:88.853333pt;}
.fs6{font-size:104.810667pt;}
.fs1{font-size:109.586667pt;}
.fs3{font-size:115.794667pt;}
.fse{font-size:132.518400pt;}
.fsa{font-size:149.333333pt;}
.fs7{font-size:195.903467pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:25.515733pt;}
.y81{bottom:49.608933pt;}
.y147{bottom:50.732933pt;}
.y171{bottom:50.867200pt;}
.yf6{bottom:55.131067pt;}
.ybe{bottom:55.729067pt;}
.y170{bottom:62.867200pt;}
.y80{bottom:68.275600pt;}
.y146{bottom:69.399600pt;}
.yf5{bottom:73.797733pt;}
.ybd{bottom:74.395733pt;}
.y16f{bottom:74.867200pt;}
.y24{bottom:76.531067pt;}
.y16e{bottom:86.867200pt;}
.y7f{bottom:86.942267pt;}
.y145{bottom:88.066267pt;}
.yf4{bottom:92.464400pt;}
.ybc{bottom:96.841867pt;}
.y23{bottom:99.197733pt;}
.y7e{bottom:105.608933pt;}
.y144{bottom:106.732933pt;}
.yf3{bottom:111.131067pt;}
.ybb{bottom:115.508533pt;}
.y22{bottom:121.864400pt;}
.y7d{bottom:124.275600pt;}
.y143{bottom:125.399600pt;}
.yf2{bottom:129.797733pt;}
.y168{bottom:136.802533pt;}
.yba{bottom:137.954800pt;}
.y7c{bottom:142.942267pt;}
.y142{bottom:144.066267pt;}
.y21{bottom:144.531067pt;}
.yf1{bottom:148.464533pt;}
.y167{bottom:155.469200pt;}
.yb9{bottom:156.621467pt;}
.y7b{bottom:161.608933pt;}
.y141{bottom:162.732933pt;}
.yf0{bottom:167.131200pt;}
.y20{bottom:167.197733pt;}
.y166{bottom:174.135867pt;}
.yb8{bottom:175.288133pt;}
.y7a{bottom:180.275600pt;}
.y140{bottom:181.399600pt;}
.yef{bottom:185.797867pt;}
.y1f{bottom:189.864400pt;}
.y165{bottom:192.802533pt;}
.yb7{bottom:197.734400pt;}
.y10b{bottom:197.864800pt;}
.y79{bottom:198.942267pt;}
.y13f{bottom:200.066267pt;}
.yee{bottom:204.464533pt;}
.y164{bottom:211.469200pt;}
.y1e{bottom:212.531067pt;}
.yb6{bottom:216.401067pt;}
.y78{bottom:217.608933pt;}
.y10a{bottom:219.198133pt;}
.yed{bottom:223.131200pt;}
.y163{bottom:230.135867pt;}
.yb5{bottom:235.067733pt;}
.y1d{bottom:235.197733pt;}
.y77{bottom:236.275600pt;}
.y59{bottom:236.405600pt;}
.y13e{bottom:236.780133pt;}
.y14e{bottom:250.531733pt;}
.y58{bottom:256.405600pt;}
.y1c{bottom:257.864400pt;}
.yec{bottom:259.845067pt;}
.y36{bottom:262.501733pt;}
.y162{bottom:266.849733pt;}
.y76{bottom:268.726133pt;}
.y14d{bottom:269.198400pt;}
.yb4{bottom:271.781600pt;}
.y57{bottom:276.405600pt;}
.y83{bottom:278.609333pt;}
.y1b{bottom:280.531067pt;}
.y35{bottom:284.961200pt;}
.y14c{bottom:287.865067pt;}
.y13d{bottom:289.850933pt;}
.y56{bottom:296.405600pt;}
.y82{bottom:299.942667pt;}
.yf8{bottom:300.111600pt;}
.y1a{bottom:303.197733pt;}
.y14b{bottom:306.531733pt;}
.y13c{bottom:308.517600pt;}
.y34{bottom:309.083333pt;}
.yeb{bottom:312.916000pt;}
.y75{bottom:313.608933pt;}
.y55{bottom:316.405600pt;}
.y161{bottom:319.920667pt;}
.yf7{bottom:321.444933pt;}
.yb3{bottom:324.852400pt;}
.y14a{bottom:325.198400pt;}
.yea{bottom:331.582667pt;}
.y74{bottom:332.275600pt;}
.y9f{bottom:334.308800pt;}
.y13b{bottom:334.743467pt;}
.y54{bottom:336.405600pt;}
.y160{bottom:338.587333pt;}
.yb2{bottom:343.519067pt;}
.y149{bottom:343.865067pt;}
.y19{bottom:344.531067pt;}
.y73{bottom:350.942267pt;}
.y9e{bottom:352.975467pt;}
.y13a{bottom:353.410133pt;}
.y109{bottom:356.047600pt;}
.y53{bottom:356.405600pt;}
.ye9{bottom:357.808267pt;}
.y179{bottom:360.771067pt;}
.yb1{bottom:362.185733pt;}
.y15f{bottom:364.813067pt;}
.y72{bottom:369.608933pt;}
.y9d{bottom:371.642133pt;}
.y148{bottom:374.662667pt;}
.y108{bottom:374.714267pt;}
.y52{bottom:376.405600pt;}
.ye8{bottom:376.474933pt;}
.y139{bottom:379.635733pt;}
.y15e{bottom:383.479733pt;}
.yb0{bottom:384.632000pt;}
.y71{bottom:388.275600pt;}
.y9c{bottom:390.308800pt;}
.y107{bottom:393.380933pt;}
.ye7{bottom:395.141600pt;}
.y138{bottom:398.302400pt;}
.yaf{bottom:403.298667pt;}
.y51{bottom:403.964533pt;}
.y70{bottom:406.942267pt;}
.y9b{bottom:408.975467pt;}
.y106{bottom:412.047600pt;}
.y15d{bottom:413.167467pt;}
.y137{bottom:416.969067pt;}
.ye6{bottom:421.367333pt;}
.y5c{bottom:421.750667pt;}
.y50{bottom:423.964533pt;}
.y6f{bottom:425.608933pt;}
.yae{bottom:425.744800pt;}
.yc0{bottom:431.954000pt;}
.y12a{bottom:436.605067pt;}
.y9a{bottom:439.506667pt;}
.ye5{bottom:440.034000pt;}
.y105{bottom:442.845333pt;}
.y4f{bottom:443.964533pt;}
.y6e{bottom:444.275600pt;}
.yad{bottom:444.411467pt;}
.y136{bottom:446.656933pt;}
.y129{bottom:452.605067pt;}
.ybf{bottom:453.287333pt;}
.y15c{bottom:453.484933pt;}
.y1{bottom:455.059600pt;}
.ye4{bottom:458.700667pt;}
.y6d{bottom:462.942267pt;}
.y150{bottom:463.069733pt;}
.y4e{bottom:463.964533pt;}
.yac{bottom:466.857600pt;}
.y128{bottom:468.605067pt;}
.y15b{bottom:472.151600pt;}
.y174{bottom:473.910800pt;}
.y6c{bottom:481.608933pt;}
.y4d{bottom:483.964533pt;}
.y2d{bottom:484.015200pt;}
.y14f{bottom:484.403067pt;}
.y127{bottom:484.605067pt;}
.ye3{bottom:484.926400pt;}
.yab{bottom:485.524267pt;}
.y135{bottom:486.974400pt;}
.y15a{bottom:490.818267pt;}
.y33{bottom:491.961200pt;}
.yd5{bottom:495.385200pt;}
.y18{bottom:497.662400pt;}
.y6b{bottom:500.275600pt;}
.y126{bottom:500.605067pt;}
.ye2{bottom:503.593067pt;}
.yaa{bottom:504.190933pt;}
.y134{bottom:505.641067pt;}
.y2c{bottom:506.474667pt;}
.y173{bottom:506.494533pt;}
.y159{bottom:509.484933pt;}
.y99{bottom:510.547333pt;}
.yd4{bottom:514.051867pt;}
.y32{bottom:514.420667pt;}
.y104{bottom:514.988133pt;}
.y125{bottom:516.605067pt;}
.y17{bottom:516.862533pt;}
.y16d{bottom:523.449200pt;}
.y133{bottom:524.307733pt;}
.y98{bottom:529.214000pt;}
.y103{bottom:530.988133pt;}
.y2b{bottom:531.305600pt;}
.y6a{bottom:531.764000pt;}
.y124{bottom:532.605067pt;}
.yd3{bottom:532.718533pt;}
.ye1{bottom:533.280933pt;}
.ya9{bottom:533.878800pt;}
.y16{bottom:536.062400pt;}
.y172{bottom:539.078267pt;}
.y31{bottom:539.685600pt;}
.y158{bottom:540.390533pt;}
.y16c{bottom:542.115867pt;}
.y102{bottom:546.988133pt;}
.y97{bottom:547.880667pt;}
.y123{bottom:548.605067pt;}
.yd2{bottom:551.385200pt;}
.y132{bottom:555.213200pt;}
.y15{bottom:555.262400pt;}
.y16b{bottom:560.782533pt;}
.y101{bottom:562.988133pt;}
.y122{bottom:564.605067pt;}
.y96{bottom:566.547333pt;}
.yd1{bottom:570.051867pt;}
.ye0{bottom:573.598267pt;}
.ya8{bottom:574.196267pt;}
.y14{bottom:574.462400pt;}
.y4c{bottom:574.706533pt;}
.y69{bottom:577.839867pt;}
.y100{bottom:578.988133pt;}
.y16a{bottom:579.449200pt;}
.y121{bottom:580.605067pt;}
.y178{bottom:584.598933pt;}
.y95{bottom:585.214000pt;}
.yd0{bottom:588.718533pt;}
.ydf{bottom:592.264933pt;}
.ya7{bottom:592.862933pt;}
.y13{bottom:593.662400pt;}
.y4b{bottom:593.906533pt;}
.yff{bottom:594.988133pt;}
.y68{bottom:596.506533pt;}
.y157{bottom:596.603067pt;}
.y120{bottom:596.605067pt;}
.y94{bottom:603.880667pt;}
.y169{bottom:610.246933pt;}
.yfe{bottom:610.988133pt;}
.y156{bottom:612.603067pt;}
.y11f{bottom:612.604933pt;}
.y12{bottom:612.862533pt;}
.y4a{bottom:613.106533pt;}
.y131{bottom:614.092533pt;}
.y177{bottom:614.967733pt;}
.ycf{bottom:619.516267pt;}
.y93{bottom:622.547333pt;}
.ya6{bottom:623.768533pt;}
.y67{bottom:625.582400pt;}
.yfd{bottom:626.988133pt;}
.yde{bottom:627.028133pt;}
.y155{bottom:628.603067pt;}
.y11e{bottom:628.604933pt;}
.y2a{bottom:629.488533pt;}
.y130{bottom:630.092533pt;}
.y11{bottom:632.062400pt;}
.y49{bottom:632.306533pt;}
.y92{bottom:641.214000pt;}
.yfc{bottom:642.988133pt;}
.y154{bottom:644.603067pt;}
.y11d{bottom:644.604933pt;}
.y12f{bottom:646.092533pt;}
.y10{bottom:651.262400pt;}
.y48{bottom:651.506533pt;}
.y29{bottom:651.948000pt;}
.yfb{bottom:658.988133pt;}
.y91{bottom:659.880667pt;}
.y153{bottom:660.603067pt;}
.y11c{bottom:660.604933pt;}
.y12e{bottom:662.092533pt;}
.ya5{bottom:663.981067pt;}
.y66{bottom:667.624667pt;}
.yf{bottom:670.462400pt;}
.y47{bottom:670.706533pt;}
.ydd{bottom:674.490667pt;}
.yfa{bottom:674.988133pt;}
.y152{bottom:676.603067pt;}
.y11b{bottom:676.604933pt;}
.y12d{bottom:678.092533pt;}
.y90{bottom:678.547333pt;}
.y28{bottom:678.727600pt;}
.ya4{bottom:682.647733pt;}
.y65{bottom:686.291333pt;}
.ye{bottom:689.662400pt;}
.y46{bottom:689.906533pt;}
.yce{bottom:690.988133pt;}
.y11a{bottom:692.604933pt;}
.ydc{bottom:693.157333pt;}
.y12c{bottom:694.092400pt;}
.y151{bottom:695.803067pt;}
.y8f{bottom:697.214000pt;}
.ya3{bottom:698.647733pt;}
.y64{bottom:704.958000pt;}
.ycd{bottom:706.988133pt;}
.y119{bottom:708.604933pt;}
.yd{bottom:708.862533pt;}
.y45{bottom:709.106533pt;}
.ydb{bottom:709.157333pt;}
.y12b{bottom:713.292533pt;}
.ya2{bottom:714.647733pt;}
.y8e{bottom:715.880667pt;}
.ycc{bottom:722.988133pt;}
.y63{bottom:723.624667pt;}
.y118{bottom:724.604933pt;}
.yda{bottom:725.157333pt;}
.y27{bottom:726.306267pt;}
.yc{bottom:728.062400pt;}
.y17c{bottom:728.228133pt;}
.y44{bottom:728.306533pt;}
.ya1{bottom:730.647733pt;}
.y8d{bottom:734.547333pt;}
.y30{bottom:735.273333pt;}
.ycb{bottom:738.988133pt;}
.y117{bottom:740.604933pt;}
.yd9{bottom:741.157333pt;}
.y62{bottom:742.291333pt;}
.ya0{bottom:746.647733pt;}
.yb{bottom:747.262400pt;}
.y43{bottom:747.506533pt;}
.y17b{bottom:749.561467pt;}
.y8c{bottom:753.214000pt;}
.yca{bottom:754.988133pt;}
.y116{bottom:756.604933pt;}
.yd8{bottom:757.157333pt;}
.y2f{bottom:757.732800pt;}
.y61{bottom:760.958000pt;}
.y3{bottom:765.310000pt;}
.ya{bottom:766.462533pt;}
.y42{bottom:766.706533pt;}
.y17a{bottom:770.894800pt;}
.yc9{bottom:770.988133pt;}
.y8b{bottom:771.880667pt;}
.y115{bottom:772.604933pt;}
.yd7{bottom:773.157333pt;}
.y60{bottom:779.624667pt;}
.y38{bottom:780.405200pt;}
.y2e{bottom:783.708133pt;}
.y9{bottom:785.662400pt;}
.y41{bottom:785.906533pt;}
.yc8{bottom:786.988133pt;}
.y114{bottom:788.604933pt;}
.yd6{bottom:789.157333pt;}
.y5f{bottom:790.291333pt;}
.y8a{bottom:790.547333pt;}
.y2{bottom:792.706667pt;}
.yc7{bottom:802.988133pt;}
.y113{bottom:804.604933pt;}
.y8{bottom:804.862533pt;}
.y40{bottom:805.106533pt;}
.y89{bottom:809.214000pt;}
.yc6{bottom:818.988133pt;}
.y112{bottom:820.604933pt;}
.y7{bottom:824.062400pt;}
.y3f{bottom:824.306533pt;}
.y88{bottom:827.880667pt;}
.y37{bottom:832.879333pt;}
.yc5{bottom:834.988133pt;}
.y111{bottom:836.604933pt;}
.y6{bottom:843.262400pt;}
.y3e{bottom:843.506533pt;}
.y5b{bottom:844.178533pt;}
.y87{bottom:846.547333pt;}
.yc4{bottom:850.988133pt;}
.y110{bottom:852.604933pt;}
.y3d{bottom:862.706533pt;}
.y176{bottom:864.080133pt;}
.y86{bottom:865.214000pt;}
.y5a{bottom:865.511867pt;}
.yc3{bottom:866.988133pt;}
.y10f{bottom:868.604933pt;}
.y3c{bottom:881.906533pt;}
.yc2{bottom:882.988133pt;}
.y85{bottom:883.880667pt;}
.y10e{bottom:884.604933pt;}
.y26{bottom:885.353467pt;}
.y175{bottom:894.448933pt;}
.y3b{bottom:901.106533pt;}
.y5e{bottom:906.229600pt;}
.yf9{bottom:906.547200pt;}
.yc1{bottom:906.547333pt;}
.y10d{bottom:908.164000pt;}
.y84{bottom:910.106400pt;}
.y3a{bottom:920.306533pt;}
.y10c{bottom:929.497333pt;}
.y25{bottom:937.827733pt;}
.y39{bottom:947.065600pt;}
.y5d{bottom:958.703733pt;}
.y4{bottom:1043.160133pt;}
.h11{height:31.061333pt;}
.h5{height:38.826667pt;}
.he{height:44.117333pt;}
.h10{height:44.800000pt;}
.h2{height:46.513141pt;}
.h6{height:46.592000pt;}
.h8{height:48.128000pt;}
.hc{height:54.357333pt;}
.hf{height:56.149333pt;}
.h7{height:58.529899pt;}
.h12{height:58.577404pt;}
.ha{height:61.928303pt;}
.hb{height:76.302165pt;}
.h3{height:79.779093pt;}
.h4{height:84.298517pt;}
.h13{height:96.473395pt;}
.hd{height:108.714667pt;}
.h9{height:142.617724pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:48.000000pt;}
.x15{left:49.333333pt;}
.x1c{left:60.448000pt;}
.x16{left:65.703200pt;}
.x1e{left:66.705867pt;}
.x17{left:72.000000pt;}
.x26{left:75.492000pt;}
.xb{left:85.530933pt;}
.x6{left:86.593200pt;}
.x1a{left:92.409467pt;}
.x1d{left:94.058933pt;}
.x1b{left:98.446133pt;}
.x7{left:104.296400pt;}
.x8{left:121.259733pt;}
.xd{left:124.696800pt;}
.xc{left:134.636400pt;}
.xa{left:147.869067pt;}
.x27{left:172.346400pt;}
.xe{left:177.750533pt;}
.x25{left:282.330667pt;}
.x3{left:330.620667pt;}
.x13{left:372.155733pt;}
.x4{left:393.383733pt;}
.x14{left:414.598800pt;}
.x5{left:420.186667pt;}
.x9{left:421.733600pt;}
.x18{left:426.757467pt;}
.x1f{left:427.653600pt;}
.x19{left:428.549600pt;}
.x24{left:446.579733pt;}
.x22{left:447.682133pt;}
.xf{left:457.266667pt;}
.x20{left:475.249733pt;}
.x23{left:476.572667pt;}
.x21{left:477.895467pt;}
.x11{left:481.746667pt;}
.x1{left:489.334667pt;}
.x10{left:499.059600pt;}
.x12{left:519.083867pt;}
}




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