
    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_aec31e75f6af79c0eee22b4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042222;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_483b97200b0ef8bd410a6759.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042222;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_1c360a78ce731262313793c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3fab05c0122b6bd3d717568e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.908444;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_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666667;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_278cdb92a017599c5c7c1dc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.043556;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_689236a3315acc7b4081897b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914667;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_de1bcf8a82433cc54fd582d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908444;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_968404e8092b33b7dcfd7009.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666667;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:ffa;src:url('chunks/assets/font_501f10ceb52972ed334820ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.716309;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:ffb;src:url('chunks/assets/font_ff5267ef34944108a8cd16c6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_20937fc29a16b4da9097cfe1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_968404e8092b33b7dcfd7009.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666667;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:ffe;src:url('chunks/assets/font_b10073f8022cfae1c629f0af.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.999993px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.999993px;}
.v1{vertical-align:20.879992px;}
.ls2a{letter-spacing:-7.799997px;}
.ls2e{letter-spacing:-7.619997px;}
.ls32{letter-spacing:-1.835999px;}
.ls11{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.594001px;}
.ls28{letter-spacing:-0.425400px;}
.ls2c{letter-spacing:-0.396000px;}
.ls1a{letter-spacing:-0.349200px;}
.ls18{letter-spacing:-0.342600px;}
.ls24{letter-spacing:-0.258000px;}
.ls29{letter-spacing:-0.220200px;}
.ls33{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.175200px;}
.ls34{letter-spacing:-0.157800px;}
.ls22{letter-spacing:-0.154800px;}
.ls25{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.069600px;}
.ls2{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.017960px;}
.ls10{letter-spacing:0.029520px;}
.ls12{letter-spacing:0.035949px;}
.lsb{letter-spacing:0.043200px;}
.ls38{letter-spacing:0.053223px;}
.ls1{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.100750px;}
.lsc{letter-spacing:0.126000px;}
.ls17{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.149766px;}
.ls6{letter-spacing:0.154080px;}
.ls1b{letter-spacing:0.172200px;}
.ls19{letter-spacing:0.175200px;}
.ls31{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.248366px;}
.ls3{letter-spacing:0.248400px;}
.ls2b{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.294600px;}
.ls26{letter-spacing:0.297600px;}
.ls8{letter-spacing:0.313920px;}
.lse{letter-spacing:0.315360px;}
.ls2d{letter-spacing:0.324000px;}
.ls30{letter-spacing:0.370764px;}
.ls0{letter-spacing:0.370800px;}
.ls39{letter-spacing:0.382968px;}
.lsf{letter-spacing:0.462000px;}
.ls23{letter-spacing:0.496800px;}
.ls1d{letter-spacing:0.504677px;}
.ls21{letter-spacing:0.565201px;}
.lsd{letter-spacing:0.840000px;}
.ls7{letter-spacing:0.846000px;}
.ls27{letter-spacing:1.014000px;}
.ls36{letter-spacing:6.008363px;}
.ls1f{letter-spacing:6.426684px;}
.ls35{letter-spacing:8.168363px;}
.ls1e{letter-spacing:12.906681px;}
.ls9{letter-spacing:13.208361px;}
.ls14{letter-spacing:31.598534px;}
.ls13{letter-spacing:33.758533px;}
.ls15{letter-spacing:37.358532px;}
.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;}
}
.wsa{word-spacing:-58.505134px;}
.ws4{word-spacing:-22.679991px;}
.ws1f{word-spacing:-20.519992px;}
.ws21{word-spacing:-19.540792px;}
.ws1c{word-spacing:-18.878392px;}
.ws20{word-spacing:-17.629228px;}
.ws12{word-spacing:-17.596828px;}
.ws14{word-spacing:-17.528428px;}
.ws8{word-spacing:-17.493628px;}
.ws5{word-spacing:-17.326227px;}
.wsf{word-spacing:-17.206827px;}
.ws10{word-spacing:-17.203827px;}
.wsd{word-spacing:-17.161227px;}
.ws2{word-spacing:-17.031627px;}
.wsc{word-spacing:-16.962027px;}
.ws13{word-spacing:-16.876827px;}
.ws1e{word-spacing:-16.873827px;}
.ws11{word-spacing:-16.856427px;}
.ws17{word-spacing:-16.811427px;}
.ws15{word-spacing:-16.773627px;}
.wse{word-spacing:-16.689028px;}
.ws1a{word-spacing:-15.714028px;}
.ws0{word-spacing:-15.444028px;}
.ws1{word-spacing:-15.390028px;}
.ws19{word-spacing:-14.994028px;}
.wsb{word-spacing:-14.670028px;}
.ws16{word-spacing:-14.046029px;}
.ws3{word-spacing:-13.748429px;}
.ws1d{word-spacing:-13.554029px;}
.ws9{word-spacing:-11.469595px;}
.ws1b{word-spacing:-9.411630px;}
.ws18{word-spacing:-9.231631px;}
.ws7{word-spacing:-8.920796px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-12.686180px;}
._1d{margin-left:-8.554539px;}
._20{margin-left:-7.539353px;}
._4{margin-left:-5.939769px;}
._3{margin-left:-4.719047px;}
._2{margin-left:-3.453839px;}
._5{margin-left:-2.129190px;}
._0{margin-left:-1.027618px;}
._1{width:1.114275px;}
._b{width:2.351291px;}
._d{width:3.574219px;}
._e{width:5.189603px;}
._6{width:6.513426px;}
._c{width:7.652092px;}
._7{width:8.918557px;}
._8{width:10.136423px;}
._16{width:11.715761px;}
._11{width:13.149313px;}
._1b{width:14.160693px;}
._19{width:15.440739px;}
._23{width:16.760805px;}
._a{width:18.525637px;}
._9{width:19.561519px;}
._13{width:20.877568px;}
._f{width:21.966180px;}
._10{width:23.112675px;}
._12{width:24.981759px;}
._18{width:26.176263px;}
._1c{width:28.032822px;}
._21{width:29.697959px;}
._25{width:30.715634px;}
._27{width:34.521191px;}
._28{width:36.028364px;}
._1e{width:38.668422px;}
._1f{width:40.072999px;}
._14{width:167.265456px;}
._22{width:225.809830px;}
._15{width:227.969829px;}
._26{width:230.129829px;}
._1a{width:233.729827px;}
._24{width:235.889826px;}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.239988px;}
.fs8{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs4{font-size:48.240101px;}
.fs0{font-size:54.000098px;}
.fs3{font-size:59.760096px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.yd{bottom:7.740363px;}
.yc{bottom:32.445353px;}
.yb{bottom:54.045344px;}
.y4{bottom:56.376727px;}
.y24{bottom:57.635977px;}
.y3{bottom:73.296721px;}
.ya{bottom:75.645335px;}
.yab{bottom:109.116556px;}
.y5e{bottom:109.116991px;}
.y23{bottom:111.996105px;}
.y9d{bottom:114.697604px;}
.yd7{bottom:120.276102px;}
.ye4{bottom:120.277602px;}
.y6a{bottom:121.177002px;}
.yf4{bottom:124.236550px;}
.y5d{bottom:124.236985px;}
.y5f{bottom:124.596850px;}
.yb6{bottom:124.597600px;}
.y7e{bottom:126.036850px;}
.yaa{bottom:128.736549px;}
.y10a{bottom:133.237597px;}
.y22{bottom:133.596097px;}
.y69{bottom:136.116996px;}
.y9c{bottom:136.297595px;}
.yb3{bottom:139.176979px;}
.ya9{bottom:140.976994px;}
.yd6{bottom:141.876093px;}
.ye3{bottom:141.877593px;}
.yf3{bottom:143.676543px;}
.y5c{bottom:143.676978px;}
.y65{bottom:144.036092px;}
.y7d{bottom:145.476842px;}
.y42{bottom:146.196842px;}
.yb5{bottom:146.197592px;}
.y68{bottom:151.229940px;}
.ycc{bottom:152.669039px;}
.y5b{bottom:154.109938px;}
.y109{bottom:154.830538px;}
.y21{bottom:155.189038px;}
.yf2{bottom:155.910388px;}
.y9b{bottom:157.890537px;}
.yd5{bottom:163.289035px;}
.ye2{bottom:163.290535px;}
.y13b{bottom:164.189784px;}
.y7c{bottom:164.729784px;}
.y64{bottom:165.449034px;}
.ya8{bottom:165.450684px;}
.y41{bottom:167.609783px;}
.yb4{bottom:167.610533px;}
.y5a{bottom:169.229932px;}
.y67{bottom:170.669932px;}
.ycb{bottom:173.369031px;}
.y108{bottom:176.250529px;}
.y20{bottom:176.789029px;}
.y9a{bottom:179.489778px;}
.y66{bottom:182.910527px;}
.yd4{bottom:184.169026px;}
.y11e{bottom:184.169926px;}
.y7b{bottom:184.889776px;}
.y13a{bottom:185.789776px;}
.y63{bottom:187.049025px;}
.ya7{bottom:187.050675px;}
.y59{bottom:188.669925px;}
.y40{bottom:189.209774px;}
.yca{bottom:192.809023px;}
.y107{bottom:197.850521px;}
.y1f{bottom:198.209021px;}
.y99{bottom:200.909770px;}
.yb2{bottom:200.910370px;}
.y58{bottom:200.910670px;}
.yd3{bottom:203.609019px;}
.y11d{bottom:203.609919px;}
.y7a{bottom:206.489767px;}
.y139{bottom:207.389767px;}
.y62{bottom:208.649017px;}
.ya6{bottom:208.650667px;}
.y3f{bottom:210.809766px;}
.yc9{bottom:212.249015px;}
.y11c{bottom:215.850364px;}
.y106{bottom:219.450512px;}
.y1e{bottom:219.809012px;}
.y98{bottom:222.509011px;}
.yd2{bottom:223.049011px;}
.y79{bottom:228.089009px;}
.y138{bottom:228.989008px;}
.y61{bottom:230.249008px;}
.ya5{bottom:230.250658px;}
.yc8{bottom:231.689007px;}
.y3e{bottom:232.409007px;}
.yb1{bottom:239.834004px;}
.yf1{bottom:241.094004px;}
.y105{bottom:241.095504px;}
.y1d{bottom:241.454003px;}
.yd1{bottom:242.534003px;}
.y97{bottom:244.154002px;}
.y78{bottom:249.734000px;}
.y137{bottom:250.634000px;}
.yc7{bottom:251.174000px;}
.y11b{bottom:251.715349px;}
.y57{bottom:251.893999px;}
.ya4{bottom:251.895649px;}
.y3d{bottom:254.053998px;}
.yb0{bottom:261.433995px;}
.yd0{bottom:261.973995px;}
.y104{bottom:262.695495px;}
.y1c{bottom:263.053995px;}
.y96{bottom:265.753994px;}
.yc6{bottom:270.613992px;}
.y77{bottom:271.333991px;}
.y136{bottom:272.233991px;}
.y56{bottom:273.493991px;}
.ya3{bottom:273.494891px;}
.y11a{bottom:273.855340px;}
.y3c{bottom:275.473990px;}
.ycf{bottom:281.233988px;}
.yaf{bottom:283.033987px;}
.y103{bottom:284.114736px;}
.y1b{bottom:284.653986px;}
.y95{bottom:287.353985px;}
.yc5{bottom:290.593984px;}
.y76{bottom:292.753983px;}
.y135{bottom:293.653983px;}
.y55{bottom:294.913982px;}
.y3b{bottom:297.073981px;}
.yce{bottom:300.673980px;}
.yae{bottom:304.453978px;}
.y1a{bottom:306.073978px;}
.y102{bottom:306.254727px;}
.y94{bottom:308.773976px;}
.yc4{bottom:312.193975px;}
.y75{bottom:314.353974px;}
.y134{bottom:315.253974px;}
.y54{bottom:316.513973px;}
.y3a{bottom:318.673973px;}
.ycd{bottom:320.113972px;}
.yad{bottom:326.053970px;}
.y19{bottom:327.673969px;}
.y101{bottom:330.014718px;}
.y93{bottom:330.373968px;}
.yc3{bottom:333.793966px;}
.y74{bottom:335.953966px;}
.y133{bottom:336.853965px;}
.y53{bottom:338.113965px;}
.yf0{bottom:339.553964px;}
.y39{bottom:340.273964px;}
.y18{bottom:349.273960px;}
.y92{bottom:351.973959px;}
.y100{bottom:353.233959px;}
.yc2{bottom:355.393958px;}
.y73{bottom:356.833957px;}
.ye1{bottom:357.553957px;}
.y132{bottom:358.453957px;}
.yef{bottom:358.993956px;}
.y52{bottom:359.713956px;}
.y38{bottom:361.873955px;}
.y17{bottom:370.873952px;}
.y91{bottom:373.573951px;}
.yff{bottom:374.833950px;}
.y72{bottom:376.993949px;}
.yee{bottom:378.433949px;}
.ye0{bottom:379.153948px;}
.y131{bottom:380.053948px;}
.y51{bottom:381.313947px;}
.y37{bottom:383.473947px;}
.y16{bottom:392.473943px;}
.y90{bottom:395.173942px;}
.yfe{bottom:396.253941px;}
.y71{bottom:397.693941px;}
.yc1{bottom:398.413941px;}
.ydf{bottom:399.853940px;}
.y130{bottom:401.473939px;}
.y50{bottom:402.733939px;}
.y119{bottom:404.173938px;}
.y36{bottom:404.893938px;}
.y15{bottom:414.073934px;}
.y8f{bottom:416.593933px;}
.y70{bottom:417.133933px;}
.yed{bottom:417.853933px;}
.yde{bottom:419.293932px;}
.yc0{bottom:420.013932px;}
.y12f{bottom:423.073931px;}
.y118{bottom:423.644831px;}
.y4f{bottom:424.364830px;}
.y35{bottom:426.524829px;}
.y14{bottom:435.524826px;}
.y6f{bottom:436.604825px;}
.y8e{bottom:438.224825px;}
.ydd{bottom:438.764824px;}
.yec{bottom:439.484824px;}
.ybf{bottom:441.644823px;}
.y117{bottom:443.084823px;}
.y12e{bottom:444.704822px;}
.y4e{bottom:445.964822px;}
.y34{bottom:448.124821px;}
.y6e{bottom:456.044818px;}
.y13{bottom:457.124817px;}
.ydc{bottom:458.204817px;}
.y8d{bottom:459.824816px;}
.yeb{bottom:461.084816px;}
.y116{bottom:462.524815px;}
.ybe{bottom:463.244815px;}
.y12d{bottom:466.304813px;}
.y4d{bottom:467.564813px;}
.yac{bottom:468.104813px;}
.y33{bottom:469.724812px;}
.y6d{bottom:475.484810px;}
.ydb{bottom:477.644809px;}
.y12{bottom:478.724809px;}
.y8c{bottom:481.424807px;}
.yea{bottom:481.964807px;}
.yfd{bottom:482.684807px;}
.ybd{bottom:484.124806px;}
.y12c{bottom:487.904805px;}
.y4c{bottom:489.164804px;}
.y60{bottom:489.704804px;}
.y32{bottom:491.324803px;}
.y6c{bottom:494.924802px;}
.yda{bottom:497.084801px;}
.y11{bottom:500.324800px;}
.ye9{bottom:501.404799px;}
.y115{bottom:502.124799px;}
.y8b{bottom:503.024799px;}
.ybc{bottom:503.564799px;}
.yfc{bottom:504.104798px;}
.y12b{bottom:509.324796px;}
.y4b{bottom:510.584796px;}
.y31{bottom:512.744795px;}
.y6b{bottom:514.184794px;}
.yd9{bottom:516.344793px;}
.y10{bottom:519.584792px;}
.ye8{bottom:520.664792px;}
.ybb{bottom:522.824791px;}
.y114{bottom:523.544791px;}
.y8a{bottom:524.624790px;}
.yfb{bottom:525.704790px;}
.y12a{bottom:530.924788px;}
.y4a{bottom:532.184787px;}
.y30{bottom:534.344786px;}
.yd8{bottom:535.784786px;}
.ye7{bottom:540.104784px;}
.yba{bottom:542.264783px;}
.yf{bottom:544.964782px;}
.y113{bottom:545.144782px;}
.y89{bottom:546.044782px;}
.yfa{bottom:546.584781px;}
.y129{bottom:552.524779px;}
.y49{bottom:553.784778px;}
.y2f{bottom:555.944778px;}
.ye6{bottom:559.544776px;}
.yb9{bottom:561.704775px;}
.yf9{bottom:566.024774px;}
.y112{bottom:566.744773px;}
.ye{bottom:568.544773px;}
.y128{bottom:574.124770px;}
.y48{bottom:575.384770px;}
.y2e{bottom:577.544769px;}
.ye5{bottom:578.984768px;}
.y88{bottom:579.704768px;}
.yb8{bottom:581.144768px;}
.yf8{bottom:585.464766px;}
.y9{bottom:586.004400px;}
.y111{bottom:588.344765px;}
.y127{bottom:595.724762px;}
.y47{bottom:596.984761px;}
.y13c{bottom:597.524761px;}
.y2d{bottom:599.144760px;}
.yb7{bottom:600.584760px;}
.y87{bottom:601.304759px;}
.yf7{bottom:604.904758px;}
.y110{bottom:609.944756px;}
.y126{bottom:617.369753px;}
.y46{bottom:618.629753px;}
.y2c{bottom:620.609752px;}
.y86{bottom:622.769751px;}
.yf6{bottom:624.209750px;}
.y10f{bottom:630.689748px;}
.y125{bottom:638.789744px;}
.y45{bottom:640.049744px;}
.y2b{bottom:642.209743px;}
.yf5{bottom:643.649743px;}
.y85{bottom:644.369742px;}
.y10e{bottom:650.129740px;}
.y124{bottom:660.389736px;}
.y44{bottom:661.649735px;}
.y2a{bottom:663.809734px;}
.y84{bottom:665.969734px;}
.y10d{bottom:669.569732px;}
.y123{bottom:681.989727px;}
.y8{bottom:682.349727px;}
.ya2{bottom:683.249727px;}
.y43{bottom:683.789726px;}
.y29{bottom:685.409726px;}
.y83{bottom:687.569725px;}
.y10c{bottom:689.009724px;}
.y7{bottom:702.689719px;}
.y122{bottom:703.589719px;}
.ya1{bottom:704.849718px;}
.y28{bottom:707.009717px;}
.y10b{bottom:708.449717px;}
.y82{bottom:709.169716px;}
.y6{bottom:722.849711px;}
.y121{bottom:725.189710px;}
.ya0{bottom:726.449709px;}
.y27{bottom:728.609709px;}
.y81{bottom:730.769708px;}
.y120{bottom:745.709702px;}
.y5{bottom:747.509701px;}
.y9f{bottom:747.869701px;}
.y26{bottom:750.029700px;}
.y80{bottom:752.189699px;}
.y11f{bottom:768.569693px;}
.y9e{bottom:770.009692px;}
.y25{bottom:771.629691px;}
.y7f{bottom:773.069691px;}
.y2{bottom:807.480427px;}
.y1{bottom:826.379669px;}
.he{height:24.877430px;}
.hf{height:39.685523px;}
.h12{height:39.749843px;}
.h10{height:39.840064px;}
.h13{height:41.539907px;}
.h3{height:44.149201px;}
.h14{height:44.159982px;}
.h2{height:44.424081px;}
.hc{height:45.631982px;}
.h15{height:47.615981px;}
.h6{height:49.162639px;}
.h5{height:49.242319px;}
.hd{height:49.245919px;}
.ha{height:49.599980px;}
.hb{height:52.865259px;}
.h11{height:52.868859px;}
.h9{height:54.493418px;}
.h4{height:58.031977px;}
.h8{height:59.231976px;}
.h7{height:90.575820px;}
.h0{height:892.979700px;}
.h1{height:893.250000px;}
.w2{width:415.184400px;}
.w1{width:629.250000px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x5{left:7.740014px;}
.x2{left:106.415957px;}
.x6{left:127.656549px;}
.x8{left:133.416547px;}
.x9{left:160.409501px;}
.x4{left:163.828134px;}
.x3{left:186.373125px;}
.x7{left:212.654915px;}
.x1{left:508.109797px;}
@media print{
.v2{vertical-align:-15.999994pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.999994pt;}
.v1{vertical-align:18.559993pt;}
.ls2a{letter-spacing:-6.933331pt;}
.ls2e{letter-spacing:-6.773331pt;}
.ls32{letter-spacing:-1.631999pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.528001pt;}
.ls28{letter-spacing:-0.378133pt;}
.ls2c{letter-spacing:-0.352000pt;}
.ls1a{letter-spacing:-0.310400pt;}
.ls18{letter-spacing:-0.304533pt;}
.ls24{letter-spacing:-0.229333pt;}
.ls29{letter-spacing:-0.195733pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.155733pt;}
.ls34{letter-spacing:-0.140267pt;}
.ls22{letter-spacing:-0.137600pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.061867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.015964pt;}
.ls10{letter-spacing:0.026240pt;}
.ls12{letter-spacing:0.031955pt;}
.lsb{letter-spacing:0.038400pt;}
.ls38{letter-spacing:0.047310pt;}
.ls1{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.089555pt;}
.lsc{letter-spacing:0.112000pt;}
.ls17{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.133125pt;}
.ls6{letter-spacing:0.136960pt;}
.ls1b{letter-spacing:0.153067pt;}
.ls19{letter-spacing:0.155733pt;}
.ls31{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.220770pt;}
.ls3{letter-spacing:0.220800pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.261867pt;}
.ls26{letter-spacing:0.264533pt;}
.ls8{letter-spacing:0.279040pt;}
.lse{letter-spacing:0.280320pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls30{letter-spacing:0.329568pt;}
.ls0{letter-spacing:0.329600pt;}
.ls39{letter-spacing:0.340416pt;}
.lsf{letter-spacing:0.410667pt;}
.ls23{letter-spacing:0.441600pt;}
.ls1d{letter-spacing:0.448602pt;}
.ls21{letter-spacing:0.502401pt;}
.lsd{letter-spacing:0.746666pt;}
.ls7{letter-spacing:0.752000pt;}
.ls27{letter-spacing:0.901333pt;}
.ls36{letter-spacing:5.340767pt;}
.ls1f{letter-spacing:5.712608pt;}
.ls35{letter-spacing:7.260767pt;}
.ls1e{letter-spacing:11.472606pt;}
.ls9{letter-spacing:11.740765pt;}
.ls14{letter-spacing:28.087586pt;}
.ls13{letter-spacing:30.007585pt;}
.ls15{letter-spacing:33.207584pt;}
.wsa{word-spacing:-52.004564pt;}
.ws4{word-spacing:-20.159992pt;}
.ws1f{word-spacing:-18.239993pt;}
.ws21{word-spacing:-17.369593pt;}
.ws1c{word-spacing:-16.780793pt;}
.ws20{word-spacing:-15.670425pt;}
.ws12{word-spacing:-15.641625pt;}
.ws14{word-spacing:-15.580825pt;}
.ws8{word-spacing:-15.549891pt;}
.ws5{word-spacing:-15.401091pt;}
.wsf{word-spacing:-15.294958pt;}
.ws10{word-spacing:-15.292291pt;}
.wsd{word-spacing:-15.254424pt;}
.ws2{word-spacing:-15.139224pt;}
.wsc{word-spacing:-15.077358pt;}
.ws13{word-spacing:-15.001624pt;}
.ws1e{word-spacing:-14.998958pt;}
.ws11{word-spacing:-14.983491pt;}
.ws17{word-spacing:-14.943491pt;}
.ws15{word-spacing:-14.909891pt;}
.wse{word-spacing:-14.834691pt;}
.ws1a{word-spacing:-13.968025pt;}
.ws0{word-spacing:-13.728025pt;}
.ws1{word-spacing:-13.680025pt;}
.ws19{word-spacing:-13.328025pt;}
.wsb{word-spacing:-13.040025pt;}
.ws16{word-spacing:-12.485359pt;}
.ws3{word-spacing:-12.220826pt;}
.ws1d{word-spacing:-12.048026pt;}
.ws9{word-spacing:-10.195196pt;}
.ws1b{word-spacing:-8.365894pt;}
.ws18{word-spacing:-8.205894pt;}
.ws7{word-spacing:-7.929597pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-11.276605pt;}
._1d{margin-left:-7.604035pt;}
._20{margin-left:-6.701647pt;}
._4{margin-left:-5.279795pt;}
._3{margin-left:-4.194709pt;}
._2{margin-left:-3.070079pt;}
._5{margin-left:-1.892614pt;}
._0{margin-left:-0.913438pt;}
._1{width:0.990466pt;}
._b{width:2.090037pt;}
._d{width:3.177083pt;}
._e{width:4.612980pt;}
._6{width:5.789712pt;}
._c{width:6.801860pt;}
._7{width:7.927606pt;}
._8{width:9.010153pt;}
._16{width:10.414010pt;}
._11{width:11.688278pt;}
._1b{width:12.587283pt;}
._19{width:13.725101pt;}
._23{width:14.898493pt;}
._a{width:16.467233pt;}
._9{width:17.388016pt;}
._13{width:18.557838pt;}
._f{width:19.525494pt;}
._10{width:20.544600pt;}
._12{width:22.206008pt;}
._18{width:23.267789pt;}
._1c{width:24.918064pt;}
._21{width:26.398186pt;}
._25{width:27.302786pt;}
._27{width:30.685503pt;}
._28{width:32.025212pt;}
._1e{width:34.371930pt;}
._1f{width:35.620444pt;}
._14{width:148.680405pt;}
._22{width:200.719849pt;}
._15{width:202.639848pt;}
._26{width:204.559848pt;}
._1a{width:207.759846pt;}
._24{width:209.679846pt;}
.fs7{font-size:26.879989pt;}
.fs8{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs4{font-size:42.880090pt;}
.fs0{font-size:48.000087pt;}
.fs3{font-size:53.120085pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:6.880322pt;}
.yc{bottom:28.840313pt;}
.yb{bottom:48.040306pt;}
.y4{bottom:50.112647pt;}
.y24{bottom:51.231980pt;}
.y3{bottom:65.152641pt;}
.ya{bottom:67.240298pt;}
.yab{bottom:96.992495pt;}
.y5e{bottom:96.992881pt;}
.y23{bottom:99.552094pt;}
.y9d{bottom:101.953426pt;}
.yd7{bottom:106.912091pt;}
.ye4{bottom:106.913424pt;}
.y6a{bottom:107.712890pt;}
.yf4{bottom:110.432489pt;}
.y5d{bottom:110.432876pt;}
.y5f{bottom:110.752756pt;}
.yb6{bottom:110.753422pt;}
.y7e{bottom:112.032755pt;}
.yaa{bottom:114.432488pt;}
.y10a{bottom:118.433419pt;}
.y22{bottom:118.752086pt;}
.y69{bottom:120.992885pt;}
.y9c{bottom:121.153418pt;}
.yb3{bottom:123.712871pt;}
.ya9{bottom:125.312883pt;}
.yd6{bottom:126.112083pt;}
.ye3{bottom:126.113416pt;}
.yf3{bottom:127.712482pt;}
.y5c{bottom:127.712869pt;}
.y65{bottom:128.032082pt;}
.y7d{bottom:129.312748pt;}
.y42{bottom:129.952748pt;}
.yb5{bottom:129.953415pt;}
.y68{bottom:134.426613pt;}
.ycc{bottom:135.705812pt;}
.y5b{bottom:136.986612pt;}
.y109{bottom:137.627145pt;}
.y21{bottom:137.945811pt;}
.yf2{bottom:138.587011pt;}
.y9b{bottom:140.347144pt;}
.yd5{bottom:145.145809pt;}
.ye2{bottom:145.147142pt;}
.y13b{bottom:145.946475pt;}
.y7c{bottom:146.426475pt;}
.y64{bottom:147.065808pt;}
.ya8{bottom:147.067275pt;}
.y41{bottom:148.986474pt;}
.yb4{bottom:148.987140pt;}
.y5a{bottom:150.426606pt;}
.y67{bottom:151.706606pt;}
.ycb{bottom:154.105805pt;}
.y108{bottom:156.667137pt;}
.y20{bottom:157.145804pt;}
.y9a{bottom:159.546470pt;}
.y66{bottom:162.587135pt;}
.yd4{bottom:163.705801pt;}
.y11e{bottom:163.706601pt;}
.y7b{bottom:164.346468pt;}
.y13a{bottom:165.146467pt;}
.y63{bottom:166.265800pt;}
.ya7{bottom:166.267267pt;}
.y59{bottom:167.706600pt;}
.y40{bottom:168.186466pt;}
.yca{bottom:171.385798pt;}
.y107{bottom:175.867130pt;}
.y1f{bottom:176.185796pt;}
.y99{bottom:178.586462pt;}
.yb2{bottom:178.586995pt;}
.y58{bottom:178.587262pt;}
.yd3{bottom:180.985794pt;}
.y11d{bottom:180.986594pt;}
.y7a{bottom:183.546460pt;}
.y139{bottom:184.346460pt;}
.y62{bottom:185.465792pt;}
.ya6{bottom:185.467259pt;}
.y3f{bottom:187.386458pt;}
.yc9{bottom:188.665791pt;}
.y11c{bottom:191.866990pt;}
.y106{bottom:195.067122pt;}
.y1e{bottom:195.385789pt;}
.y98{bottom:197.785788pt;}
.yd2{bottom:198.265787pt;}
.y79{bottom:202.745786pt;}
.y138{bottom:203.545785pt;}
.y61{bottom:204.665785pt;}
.ya5{bottom:204.667251pt;}
.yc8{bottom:205.945784pt;}
.y3e{bottom:206.585784pt;}
.yb1{bottom:213.185781pt;}
.yf1{bottom:214.305781pt;}
.y105{bottom:214.307114pt;}
.y1d{bottom:214.625781pt;}
.yd1{bottom:215.585780pt;}
.y97{bottom:217.025780pt;}
.y78{bottom:221.985778pt;}
.y137{bottom:222.785778pt;}
.yc7{bottom:223.265777pt;}
.y11b{bottom:223.746977pt;}
.y57{bottom:223.905777pt;}
.ya4{bottom:223.907244pt;}
.y3d{bottom:225.825776pt;}
.yb0{bottom:232.385774pt;}
.yd0{bottom:232.865774pt;}
.y104{bottom:233.507107pt;}
.y1c{bottom:233.825773pt;}
.y96{bottom:236.225772pt;}
.yc6{bottom:240.545770pt;}
.y77{bottom:241.185770pt;}
.y136{bottom:241.985770pt;}
.y56{bottom:243.105769pt;}
.ya3{bottom:243.106569pt;}
.y11a{bottom:243.426969pt;}
.y3c{bottom:244.865769pt;}
.ycf{bottom:249.985767pt;}
.yaf{bottom:251.585766pt;}
.y103{bottom:252.546432pt;}
.y1b{bottom:253.025765pt;}
.y95{bottom:255.425764pt;}
.yc5{bottom:258.305763pt;}
.y76{bottom:260.225763pt;}
.y135{bottom:261.025762pt;}
.y55{bottom:262.145762pt;}
.y3b{bottom:264.065761pt;}
.yce{bottom:267.265760pt;}
.yae{bottom:270.625758pt;}
.y1a{bottom:272.065758pt;}
.y102{bottom:272.226424pt;}
.y94{bottom:274.465757pt;}
.yc4{bottom:277.505756pt;}
.y75{bottom:279.425755pt;}
.y134{bottom:280.225755pt;}
.y54{bottom:281.345754pt;}
.y3a{bottom:283.265753pt;}
.ycd{bottom:284.545753pt;}
.yad{bottom:289.825751pt;}
.y19{bottom:291.265750pt;}
.y101{bottom:293.346416pt;}
.y93{bottom:293.665749pt;}
.yc3{bottom:296.705748pt;}
.y74{bottom:298.625747pt;}
.y133{bottom:299.425747pt;}
.y53{bottom:300.545746pt;}
.yf0{bottom:301.825746pt;}
.y39{bottom:302.465746pt;}
.y18{bottom:310.465742pt;}
.y92{bottom:312.865742pt;}
.y100{bottom:313.985741pt;}
.yc2{bottom:315.905740pt;}
.y73{bottom:317.185740pt;}
.ye1{bottom:317.825740pt;}
.y132{bottom:318.625739pt;}
.yef{bottom:319.105739pt;}
.y52{bottom:319.745739pt;}
.y38{bottom:321.665738pt;}
.y17{bottom:329.665735pt;}
.y91{bottom:332.065734pt;}
.yff{bottom:333.185733pt;}
.y72{bottom:335.105733pt;}
.yee{bottom:336.385732pt;}
.ye0{bottom:337.025732pt;}
.y131{bottom:337.825732pt;}
.y51{bottom:338.945731pt;}
.y37{bottom:340.865730pt;}
.y16{bottom:348.865727pt;}
.y90{bottom:351.265726pt;}
.yfe{bottom:352.225726pt;}
.y71{bottom:353.505725pt;}
.yc1{bottom:354.145725pt;}
.ydf{bottom:355.425724pt;}
.y130{bottom:356.865724pt;}
.y50{bottom:357.985723pt;}
.y119{bottom:359.265723pt;}
.y36{bottom:359.905723pt;}
.y15{bottom:368.065719pt;}
.y8f{bottom:370.305719pt;}
.y70{bottom:370.785718pt;}
.yed{bottom:371.425718pt;}
.yde{bottom:372.705718pt;}
.yc0{bottom:373.345717pt;}
.y12f{bottom:376.065716pt;}
.y118{bottom:376.573183pt;}
.y4f{bottom:377.213182pt;}
.y35{bottom:379.133182pt;}
.y14{bottom:387.133178pt;}
.y6f{bottom:388.093178pt;}
.y8e{bottom:389.533178pt;}
.ydd{bottom:390.013177pt;}
.yec{bottom:390.653177pt;}
.ybf{bottom:392.573176pt;}
.y117{bottom:393.853176pt;}
.y12e{bottom:395.293175pt;}
.y4e{bottom:396.413175pt;}
.y34{bottom:398.333174pt;}
.y6e{bottom:405.373171pt;}
.y13{bottom:406.333171pt;}
.ydc{bottom:407.293170pt;}
.y8d{bottom:408.733170pt;}
.yeb{bottom:409.853169pt;}
.y116{bottom:411.133169pt;}
.ybe{bottom:411.773169pt;}
.y12d{bottom:414.493168pt;}
.y4d{bottom:415.613167pt;}
.yac{bottom:416.093167pt;}
.y33{bottom:417.533166pt;}
.y6d{bottom:422.653164pt;}
.ydb{bottom:424.573164pt;}
.y12{bottom:425.533163pt;}
.y8c{bottom:427.933162pt;}
.yea{bottom:428.413162pt;}
.yfd{bottom:429.053162pt;}
.ybd{bottom:430.333161pt;}
.y12c{bottom:433.693160pt;}
.y4c{bottom:434.813159pt;}
.y60{bottom:435.293159pt;}
.y32{bottom:436.733159pt;}
.y6c{bottom:439.933157pt;}
.yda{bottom:441.853157pt;}
.y11{bottom:444.733155pt;}
.ye9{bottom:445.693155pt;}
.y115{bottom:446.333155pt;}
.y8b{bottom:447.133154pt;}
.ybc{bottom:447.613154pt;}
.yfc{bottom:448.093154pt;}
.y12b{bottom:452.733152pt;}
.y4b{bottom:453.853152pt;}
.y31{bottom:455.773151pt;}
.y6b{bottom:457.053151pt;}
.yd9{bottom:458.973150pt;}
.y10{bottom:461.853149pt;}
.ye8{bottom:462.813148pt;}
.ybb{bottom:464.733147pt;}
.y114{bottom:465.373147pt;}
.y8a{bottom:466.333147pt;}
.yfb{bottom:467.293146pt;}
.y12a{bottom:471.933145pt;}
.y4a{bottom:473.053144pt;}
.y30{bottom:474.973143pt;}
.yd8{bottom:476.253143pt;}
.ye7{bottom:480.093141pt;}
.yba{bottom:482.013141pt;}
.yf{bottom:484.413140pt;}
.y113{bottom:484.573140pt;}
.y89{bottom:485.373139pt;}
.yfa{bottom:485.853139pt;}
.y129{bottom:491.133137pt;}
.y49{bottom:492.253136pt;}
.y2f{bottom:494.173136pt;}
.ye6{bottom:497.373134pt;}
.yb9{bottom:499.293134pt;}
.yf9{bottom:503.133132pt;}
.y112{bottom:503.773132pt;}
.ye{bottom:505.373131pt;}
.y128{bottom:510.333129pt;}
.y48{bottom:511.453129pt;}
.y2e{bottom:513.373128pt;}
.ye5{bottom:514.653127pt;}
.y88{bottom:515.293127pt;}
.yb8{bottom:516.573127pt;}
.yf8{bottom:520.413125pt;}
.y9{bottom:520.892800pt;}
.y111{bottom:522.973124pt;}
.y127{bottom:529.533122pt;}
.y47{bottom:530.653121pt;}
.y13c{bottom:531.133121pt;}
.y2d{bottom:532.573120pt;}
.yb7{bottom:533.853120pt;}
.y87{bottom:534.493120pt;}
.yf7{bottom:537.693118pt;}
.y110{bottom:542.173116pt;}
.y126{bottom:548.773114pt;}
.y46{bottom:549.893113pt;}
.y2c{bottom:551.653113pt;}
.y86{bottom:553.573112pt;}
.yf6{bottom:554.853111pt;}
.y10f{bottom:560.613109pt;}
.y125{bottom:567.813106pt;}
.y45{bottom:568.933106pt;}
.y2b{bottom:570.853105pt;}
.yf5{bottom:572.133104pt;}
.y85{bottom:572.773104pt;}
.y10e{bottom:577.893102pt;}
.y124{bottom:587.013099pt;}
.y44{bottom:588.133098pt;}
.y2a{bottom:590.053097pt;}
.y84{bottom:591.973097pt;}
.y10d{bottom:595.173095pt;}
.y123{bottom:606.213091pt;}
.y8{bottom:606.533091pt;}
.ya2{bottom:607.333090pt;}
.y43{bottom:607.813090pt;}
.y29{bottom:609.253090pt;}
.y83{bottom:611.173089pt;}
.y10c{bottom:612.453088pt;}
.y7{bottom:624.613083pt;}
.y122{bottom:625.413083pt;}
.ya1{bottom:626.533083pt;}
.y28{bottom:628.453082pt;}
.y10b{bottom:629.733081pt;}
.y82{bottom:630.373081pt;}
.y6{bottom:642.533076pt;}
.y121{bottom:644.613075pt;}
.ya0{bottom:645.733075pt;}
.y27{bottom:647.653074pt;}
.y81{bottom:649.573074pt;}
.y120{bottom:662.853068pt;}
.y5{bottom:664.453068pt;}
.y9f{bottom:664.773067pt;}
.y26{bottom:666.693067pt;}
.y80{bottom:668.613066pt;}
.y11f{bottom:683.173060pt;}
.y9e{bottom:684.453060pt;}
.y25{bottom:685.893059pt;}
.y7f{bottom:687.173058pt;}
.y2{bottom:717.760380pt;}
.y1{bottom:734.559706pt;}
.he{height:22.113271pt;}
.hf{height:35.276020pt;}
.h12{height:35.333194pt;}
.h10{height:35.413390pt;}
.h13{height:36.924362pt;}
.h3{height:39.243734pt;}
.h14{height:39.253318pt;}
.h2{height:39.488072pt;}
.hc{height:40.561762pt;}
.h15{height:42.325316pt;}
.h6{height:43.700124pt;}
.h5{height:43.770950pt;}
.hd{height:43.774150pt;}
.ha{height:44.088871pt;}
.hb{height:46.991341pt;}
.h11{height:46.994541pt;}
.h9{height:48.438594pt;}
.h4{height:51.583979pt;}
.h8{height:52.650646pt;}
.h7{height:80.511840pt;}
.h0{height:793.759733pt;}
.h1{height:794.000000pt;}
.w2{width:369.052800pt;}
.w1{width:559.333333pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880012pt;}
.x2{left:94.591962pt;}
.x6{left:113.472488pt;}
.x8{left:118.592486pt;}
.x9{left:142.586223pt;}
.x4{left:145.625008pt;}
.x3{left:165.665000pt;}
.x7{left:189.026591pt;}
.x1{left:451.653153pt;}
}




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