
    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_d4c998997dc6d69f86dc962e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_34c49d5d6893c36fd4238d08.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ebad9b226a3cb6ef1442b850.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_52404484847577b05542c60f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_9391ad0095ec613cf024d51f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_be3c1d141d46f3dabe35918e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_15d5da1afede7615180d68cd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_5ca7d2287d38bff16f883938.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_c07b5f4f57f404ec4d112667.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_0ba505fa1fe52152064d37f0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_0ce963f01cf995084dd7a8d1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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:fff;src:url('chunks/assets/font_fdc06112caa39ba6a43a36a0.woff')format("woff");}.fff{font-family:fff;line-height:0.947266;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:ff10;src:url('chunks/assets/font_69b94147eb5090f247144722.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a5d74f606336c44e1f6c680e.woff')format("woff");}.ff11{font-family:ff11;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;}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.879999px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls4{letter-spacing:0.021238px;}
.ls8{letter-spacing:0.072600px;}
.ls1{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.109440px;}
.ls7{letter-spacing:0.195300px;}
.ls6{letter-spacing:0.308220px;}
.lsa{letter-spacing:1.061760px;}
.ls9{letter-spacing:1.677899px;}
.ls3{letter-spacing:203.109519px;}
.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;}
}
.ws1{word-spacing:-22.407831px;}
.ws5{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.179034px;}
.ws6{word-spacing:-13.715995px;}
.ws3{word-spacing:-13.013995px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-670.683089px;}
._2{margin-left:-607.178273px;}
._b{margin-left:-469.513486px;}
._6{margin-left:-334.821628px;}
._8{margin-left:-87.372063px;}
._9{margin-left:-69.371752px;}
._7{margin-left:-52.559242px;}
._a{margin-left:-34.559225px;}
._1{margin-left:-25.559162px;}
._5{margin-left:-16.559201px;}
._38{margin-left:-2.729115px;}
._0{margin-left:-1.187579px;}
._4{width:1.472618px;}
._11{width:3.334940px;}
._10{width:4.389925px;}
._12{width:5.815772px;}
._e{width:6.946040px;}
._f{width:8.126909px;}
._15{width:9.474964px;}
._21{width:10.795314px;}
._22{width:11.892744px;}
._16{width:14.114793px;}
._17{width:15.309295px;}
._1b{width:16.535181px;}
._1e{width:17.906383px;}
._14{width:19.261903px;}
._13{width:20.270781px;}
._18{width:22.234684px;}
._19{width:24.153691px;}
._1a{width:25.251590px;}
._35{width:26.525847px;}
._1f{width:27.539059px;}
._c{width:28.763119px;}
._32{width:30.071757px;}
._30{width:31.475329px;}
._2a{width:32.493520px;}
._1c{width:34.439902px;}
._1d{width:35.785311px;}
._2c{width:36.894390px;}
._39{width:38.170690px;}
._24{width:39.297457px;}
._23{width:41.080065px;}
._36{width:42.311258px;}
._3a{width:43.612979px;}
._2d{width:45.382061px;}
._26{width:46.503073px;}
._25{width:47.611618px;}
._20{width:48.915670px;}
._43{width:50.218474px;}
._33{width:51.626872px;}
._34{width:52.695847px;}
._3c{width:54.027445px;}
._2f{width:55.855241px;}
._3b{width:58.981382px;}
._29{width:60.364771px;}
._3e{width:62.154694px;}
._3f{width:63.379008px;}
._44{width:64.718906px;}
._28{width:65.981590px;}
._27{width:67.635913px;}
._41{width:70.542596px;}
._42{width:71.805563px;}
._40{width:82.264748px;}
._37{width:86.319515px;}
._2b{width:87.452843px;}
._3d{width:91.505352px;}
._2e{width:100.160619px;}
._31{width:203.098239px;}
._d{width:240.188890px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:9.359996px;}
.fs3{font-size:12.239995px;}
.fs9{font-size:23.759990px;}
.fs6{font-size:38.879984px;}
.fsc{font-size:41.759983px;}
.fs5{font-size:48.239981px;}
.fs8{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y46{bottom:-15.661023px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y1c{bottom:3.059079px;}
.y24{bottom:3.059123px;}
.y13{bottom:3.239032px;}
.y21{bottom:3.419111px;}
.y41{bottom:3.778940px;}
.ya{bottom:4.138945px;}
.y1e{bottom:4.319079px;}
.y4{bottom:4.320028px;}
.y15{bottom:4.859040px;}
.y19{bottom:4.859058px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.yd2{bottom:118.379953px;}
.y101{bottom:121.439951px;}
.y3e{bottom:123.239951px;}
.y73{bottom:130.619948px;}
.y79{bottom:133.139947px;}
.ya5{bottom:134.219946px;}
.yd1{bottom:140.159944px;}
.y100{bottom:143.039943px;}
.y3d{bottom:146.279941px;}
.y72{bottom:153.479939px;}
.y78{bottom:156.179938px;}
.ya4{bottom:157.619937px;}
.yd0{bottom:161.939935px;}
.yff{bottom:164.459934px;}
.y3c{bottom:169.319932px;}
.y71{bottom:176.519929px;}
.y77{bottom:179.219928px;}
.ya3{bottom:181.019928px;}
.ycf{bottom:183.899926px;}
.yfe{bottom:185.879926px;}
.y3b{bottom:192.179923px;}
.y70{bottom:199.559920px;}
.y76{bottom:202.079919px;}
.ya2{bottom:204.599918px;}
.yfd{bottom:205.499918px;}
.yce{bottom:205.679918px;}
.y3a{bottom:215.219914px;}
.y6f{bottom:222.599911px;}
.yfc{bottom:224.039910px;}
.y75{bottom:225.119910px;}
.ycd{bottom:227.459909px;}
.ya1{bottom:227.999909px;}
.y39{bottom:238.259905px;}
.y6e{bottom:245.639902px;}
.y74{bottom:246.899901px;}
.ycc{bottom:249.239900px;}
.ya0{bottom:251.399899px;}
.y38{bottom:261.299895px;}
.yfb{bottom:265.259894px;}
.y6d{bottom:268.679893px;}
.ycb{bottom:271.019892px;}
.y9f{bottom:274.799890px;}
.yfa{bottom:283.799886px;}
.y37{bottom:284.339886px;}
.y6c{bottom:291.539883px;}
.yca{bottom:292.799883px;}
.y9e{bottom:298.379881px;}
.yf9{bottom:305.219878px;}
.y36{bottom:307.199877px;}
.y6b{bottom:314.579874px;}
.y9d{bottom:321.779871px;}
.y35{bottom:323.399871px;}
.yf8{bottom:326.639869px;}
.y34{bottom:327.179869px;}
.yc9{bottom:336.359865px;}
.y6a{bottom:337.619865px;}
.y9c{bottom:345.179862px;}
.y33{bottom:347.699861px;}
.yf7{bottom:348.239861px;}
.yc8{bottom:358.139857px;}
.y69{bottom:360.659856px;}
.y9b{bottom:368.759852px;}
.yf6{bottom:369.659852px;}
.y32{bottom:370.739852px;}
.yc7{bottom:379.919848px;}
.y68{bottom:383.699847px;}
.yf5{bottom:391.079844px;}
.y9a{bottom:392.159843px;}
.y31{bottom:393.779842px;}
.yc6{bottom:401.699839px;}
.y67{bottom:406.739837px;}
.yf4{bottom:412.679835px;}
.y99{bottom:415.559834px;}
.y30{bottom:416.819833px;}
.yc5{bottom:423.479831px;}
.y66{bottom:429.599828px;}
.yf3{bottom:432.119827px;}
.y98{bottom:439.139824px;}
.y2f{bottom:439.679824px;}
.yc4{bottom:445.259822px;}
.yf2{bottom:450.839820px;}
.y65{bottom:452.639819px;}
.y97{bottom:462.539815px;}
.y2e{bottom:462.719815px;}
.yc3{bottom:467.219813px;}
.yf1{bottom:472.259811px;}
.y64{bottom:475.679810px;}
.y2d{bottom:485.759806px;}
.y96{bottom:485.939806px;}
.yc2{bottom:488.999804px;}
.yf0{bottom:491.879803px;}
.y63{bottom:498.719801px;}
.y2c{bottom:508.799796px;}
.y95{bottom:509.519796px;}
.yef{bottom:510.419796px;}
.yc1{bottom:510.779796px;}
.y62{bottom:521.759791px;}
.y2b{bottom:531.839787px;}
.yc0{bottom:532.559787px;}
.y94{bottom:532.919787px;}
.y61{bottom:544.799782px;}
.yee{bottom:551.459779px;}
.ybf{bottom:554.339778px;}
.y2a{bottom:554.879778px;}
.y93{bottom:556.319777px;}
.y60{bottom:567.659773px;}
.yed{bottom:570.179772px;}
.ybe{bottom:576.119770px;}
.y29{bottom:577.739769px;}
.y92{bottom:579.899768px;}
.y5f{bottom:590.699764px;}
.yec{bottom:591.599763px;}
.ybd{bottom:597.899761px;}
.y28{bottom:600.779760px;}
.y91{bottom:603.299759px;}
.yeb{bottom:613.019755px;}
.y5e{bottom:613.739755px;}
.ybc{bottom:619.679752px;}
.y27{bottom:623.819750px;}
.y90{bottom:626.699749px;}
.yea{bottom:634.439746px;}
.y5d{bottom:636.779745px;}
.ybb{bottom:641.459743px;}
.y26{bottom:646.859741px;}
.y8f{bottom:650.099740px;}
.ye9{bottom:654.059738px;}
.y5c{bottom:659.819736px;}
.yba{bottom:663.239735px;}
.y25{bottom:669.899732px;}
.ye8{bottom:672.779731px;}
.y8e{bottom:673.679731px;}
.y5b{bottom:682.679727px;}
.yb9{bottom:685.019726px;}
.y23{bottom:689.880600px;}
.ye7{bottom:694.199722px;}
.y8d{bottom:697.079721px;}
.y5a{bottom:705.719718px;}
.yb8{bottom:706.799717px;}
.ye6{bottom:715.619714px;}
.y20{bottom:717.960600px;}
.y8c{bottom:720.479712px;}
.y22{bottom:721.379711px;}
.yb7{bottom:728.579709px;}
.y59{bottom:728.759708px;}
.ye5{bottom:735.239706px;}
.y8b{bottom:744.059702px;}
.yb6{bottom:750.539700px;}
.y58{bottom:751.799699px;}
.ye4{bottom:753.779698px;}
.y1f{bottom:758.999696px;}
.y8a{bottom:767.459693px;}
.yb5{bottom:772.319691px;}
.y57{bottom:774.839690px;}
.ye3{bottom:775.379690px;}
.y89{bottom:790.859684px;}
.yb4{bottom:794.099682px;}
.ye2{bottom:796.799681px;}
.y56{bottom:797.879681px;}
.y1d{bottom:798.600600px;}
.y1b{bottom:799.860600px;}
.y88{bottom:814.439674px;}
.yb3{bottom:815.879674px;}
.ye1{bottom:818.219673px;}
.y1a{bottom:819.119672px;}
.y55{bottom:820.739672px;}
.yb2{bottom:837.659665px;}
.y87{bottom:837.839665px;}
.y54{bottom:843.779662px;}
.y18{bottom:850.080600px;}
.ye0{bottom:856.379657px;}
.yb1{bottom:859.439656px;}
.y86{bottom:861.239656px;}
.y53{bottom:866.819653px;}
.y17{bottom:872.759651px;}
.ydf{bottom:877.979649px;}
.yb0{bottom:881.219648px;}
.y85{bottom:884.819646px;}
.y52{bottom:889.859644px;}
.y14{bottom:895.440600px;}
.yde{bottom:899.399640px;}
.yaf{bottom:902.999639px;}
.y16{bottom:905.519638px;}
.y84{bottom:908.219637px;}
.y51{bottom:912.899635px;}
.y12{bottom:915.780600px;}
.ydd{bottom:919.019632px;}
.yae{bottom:924.779630px;}
.y83{bottom:931.619627px;}
.y50{bottom:935.939626px;}
.ydc{bottom:937.559625px;}
.yad{bottom:946.559621px;}
.y11{bottom:949.259620px;}
.y82{bottom:955.199618px;}
.y4f{bottom:958.799616px;}
.ydb{bottom:958.979616px;}
.yac{bottom:968.339613px;}
.y81{bottom:978.599609px;}
.yda{bottom:980.579608px;}
.y4e{bottom:981.839607px;}
.y10{bottom:990.119604px;}
.yd9{bottom:1000.019600px;}
.y80{bottom:1001.999599px;}
.y4d{bottom:1004.879598px;}
.yab{bottom:1012.079595px;}
.yf{bottom:1013.519595px;}
.yd8{bottom:1018.739593px;}
.y7f{bottom:1025.399590px;}
.y4c{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.yaa{bottom:1033.859586px;}
.yd7{bottom:1040.159584px;}
.y7e{bottom:1048.979580px;}
.y4b{bottom:1050.959580px;}
.ya9{bottom:1055.639578px;}
.yd6{bottom:1061.579575px;}
.y7d{bottom:1072.379571px;}
.y45{bottom:1073.280600px;}
.y4a{bottom:1073.999570px;}
.ya8{bottom:1077.419569px;}
.y44{bottom:1082.279567px;}
.yd5{bottom:1083.179567px;}
.y7c{bottom:1095.779562px;}
.y49{bottom:1096.859561px;}
.ya7{bottom:1099.199560px;}
.yd4{bottom:1102.619559px;}
.y43{bottom:1103.519559px;}
.y7b{bottom:1119.359552px;}
.y48{bottom:1119.899552px;}
.ya6{bottom:1120.979552px;}
.yd3{bottom:1121.339551px;}
.y42{bottom:1124.939550px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y7a{bottom:1142.759543px;}
.y47{bottom:1142.939543px;}
.y40{bottom:1145.280600px;}
.y3f{bottom:1149.059540px;}
.y1{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h23{height:2.880000px;}
.hb{height:8.169958px;}
.hd{height:13.500000px;}
.h16{height:15.120000px;}
.h1d{height:15.859330px;}
.h18{height:16.380000px;}
.h1b{height:17.100000px;}
.hf{height:20.160000px;}
.h13{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h21{height:21.780000px;}
.h1e{height:25.913662px;}
.h11{height:25.951630px;}
.h26{height:31.585065px;}
.he{height:32.199245px;}
.h1a{height:33.588971px;}
.h25{height:36.486196px;}
.h12{height:36.886626px;}
.h15{height:40.005336px;}
.h17{height:40.842757px;}
.h22{height:41.290999px;}
.h1f{height:43.185920px;}
.h1c{height:45.199318px;}
.h8{height:47.988262px;}
.h10{height:48.058575px;}
.h14{height:48.199199px;}
.h24{height:49.907793px;}
.h19{height:50.132792px;}
.ha{height:54.457009px;}
.h20{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.wb{width:4.320000px;}
.wf{width:4.500000px;}
.w1{width:6.480000px;}
.w11{width:7.740000px;}
.w7{width:8.280000px;}
.w15{width:9.900000px;}
.w14{width:10.620000px;}
.w5{width:11.160000px;}
.w6{width:11.340000px;}
.wd{width:12.240000px;}
.w9{width:12.420000px;}
.w3{width:16.020000px;}
.w4{width:33.480000px;}
.w12{width:65.700000px;}
.we{width:77.940000px;}
.w2{width:119.700000px;}
.w8{width:220.500000px;}
.w10{width:236.520000px;}
.wa{width:259.560000px;}
.wc{width:329.040000px;}
.w13{width:675.540000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1e{left:109.259956px;}
.x28{left:116.459953px;}
.x5{left:120.240000px;}
.x2f{left:128.699878px;}
.x2{left:137.699962px;}
.x3{left:155.700000px;}
.x4{left:171.899931px;}
.x27{left:174.599930px;}
.xa{left:185.219926px;}
.x24{left:187.200000px;}
.x25{left:191.700000px;}
.x6{left:239.940000px;}
.xb{left:259.740316px;}
.x1f{left:329.759868px;}
.x20{left:334.800000px;}
.x2a{left:342.539863px;}
.x21{left:368.820000px;}
.x22{left:373.140000px;}
.xc{left:427.680106px;}
.xd{left:432.180102px;}
.x2c{left:435.959826px;}
.x29{left:462.600512px;}
.xe{left:516.060050px;}
.xf{left:529.380042px;}
.x10{left:542.700033px;}
.x2e{left:546.659781px;}
.x11{left:564.659960px;}
.x12{left:569.159957px;}
.x13{left:582.479948px;}
.x2d{left:589.679764px;}
.x14{left:595.619941px;}
.x15{left:608.939932px;}
.x16{left:613.439928px;}
.x17{left:631.079858px;}
.x18{left:635.399856px;}
.x19{left:648.719847px;}
.x1a{left:653.039845px;}
.x1b{left:657.539841px;}
.x1c{left:666.359733px;}
.x7{left:697.320000px;}
.x23{left:701.640000px;}
.x8{left:730.800000px;}
.x9{left:741.960000px;}
.x2b{left:779.580000px;}
.x26{left:781.559687px;}
.x1d{left:783.539686px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.559999pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls4{letter-spacing:0.018878pt;}
.ls8{letter-spacing:0.064533pt;}
.ls1{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.097280pt;}
.ls7{letter-spacing:0.173600pt;}
.ls6{letter-spacing:0.273973pt;}
.lsa{letter-spacing:0.943786pt;}
.ls9{letter-spacing:1.491466pt;}
.ls3{letter-spacing:180.541794pt;}
.ws1{word-spacing:-19.918072pt;}
.ws5{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.492475pt;}
.ws6{word-spacing:-12.191995pt;}
.ws3{word-spacing:-11.567995pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-596.162746pt;}
._2{margin-left:-539.714020pt;}
._b{margin-left:-417.345321pt;}
._6{margin-left:-297.619225pt;}
._8{margin-left:-77.664056pt;}
._9{margin-left:-61.663779pt;}
._7{margin-left:-46.719326pt;}
._a{margin-left:-30.719311pt;}
._1{margin-left:-22.719255pt;}
._5{margin-left:-14.719290pt;}
._38{margin-left:-2.425880pt;}
._0{margin-left:-1.055625pt;}
._4{width:1.308994pt;}
._11{width:2.964391pt;}
._10{width:3.902155pt;}
._12{width:5.169575pt;}
._e{width:6.174258pt;}
._f{width:7.223919pt;}
._15{width:8.422190pt;}
._21{width:9.595835pt;}
._22{width:10.571328pt;}
._16{width:12.546483pt;}
._17{width:13.608262pt;}
._1b{width:14.697939pt;}
._1e{width:15.916785pt;}
._14{width:17.121692pt;}
._13{width:18.018472pt;}
._18{width:19.764163pt;}
._19{width:21.469948pt;}
._1a{width:22.445858pt;}
._35{width:23.578531pt;}
._1f{width:24.479163pt;}
._c{width:25.567217pt;}
._32{width:26.730451pt;}
._30{width:27.978070pt;}
._2a{width:28.883128pt;}
._1c{width:30.613246pt;}
._1d{width:31.809165pt;}
._2c{width:32.795013pt;}
._39{width:33.929502pt;}
._24{width:34.931073pt;}
._23{width:36.515614pt;}
._36{width:37.610007pt;}
._3a{width:38.767092pt;}
._2d{width:40.339610pt;}
._26{width:41.336065pt;}
._25{width:42.321439pt;}
._20{width:43.480595pt;}
._43{width:44.638644pt;}
._33{width:45.890553pt;}
._34{width:46.840753pt;}
._3c{width:48.024395pt;}
._2f{width:49.649103pt;}
._3b{width:52.427895pt;}
._29{width:53.657574pt;}
._3e{width:55.248617pt;}
._3f{width:56.336896pt;}
._44{width:57.527916pt;}
._28{width:58.650302pt;}
._27{width:60.120811pt;}
._41{width:62.704530pt;}
._42{width:63.827167pt;}
._40{width:73.124221pt;}
._37{width:76.728458pt;}
._2b{width:77.735860pt;}
._3d{width:81.338091pt;}
._2e{width:89.031662pt;}
._31{width:180.531768pt;}
._d{width:213.501236pt;}
.fsa{font-size:8.319997pt;}
.fs3{font-size:10.879996pt;}
.fs9{font-size:21.119992pt;}
.fs6{font-size:34.559986pt;}
.fsc{font-size:37.119985pt;}
.fs5{font-size:42.879983pt;}
.fs8{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y46{bottom:-13.920909pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y1c{bottom:2.719181pt;}
.y24{bottom:2.719220pt;}
.y13{bottom:2.879140pt;}
.y21{bottom:3.039210pt;}
.y41{bottom:3.359058pt;}
.ya{bottom:3.679062pt;}
.y1e{bottom:3.839181pt;}
.y4{bottom:3.840025pt;}
.y15{bottom:4.319147pt;}
.y19{bottom:4.319163pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.yd2{bottom:105.226625pt;}
.y101{bottom:107.946623pt;}
.y3e{bottom:109.546623pt;}
.y73{bottom:116.106620pt;}
.y79{bottom:118.346619pt;}
.ya5{bottom:119.306619pt;}
.yd1{bottom:124.586617pt;}
.y100{bottom:127.146616pt;}
.y3d{bottom:130.026615pt;}
.y72{bottom:136.426612pt;}
.y78{bottom:138.826611pt;}
.ya4{bottom:140.106611pt;}
.yd0{bottom:143.946609pt;}
.yff{bottom:146.186608pt;}
.y3c{bottom:150.506606pt;}
.y71{bottom:156.906604pt;}
.y77{bottom:159.306603pt;}
.ya3{bottom:160.906602pt;}
.ycf{bottom:163.466601pt;}
.yfe{bottom:165.226601pt;}
.y3b{bottom:170.826598pt;}
.y70{bottom:177.386596pt;}
.y76{bottom:179.626595pt;}
.ya2{bottom:181.866594pt;}
.yfd{bottom:182.666594pt;}
.yce{bottom:182.826594pt;}
.y3a{bottom:191.306590pt;}
.y6f{bottom:197.866588pt;}
.yfc{bottom:199.146587pt;}
.y75{bottom:200.106587pt;}
.ycd{bottom:202.186586pt;}
.ya1{bottom:202.666586pt;}
.y39{bottom:211.786582pt;}
.y6e{bottom:218.346579pt;}
.y74{bottom:219.466579pt;}
.ycc{bottom:221.546578pt;}
.ya0{bottom:223.466577pt;}
.y38{bottom:232.266574pt;}
.yfb{bottom:235.786572pt;}
.y6d{bottom:238.826571pt;}
.ycb{bottom:240.906570pt;}
.y9f{bottom:244.266569pt;}
.yfa{bottom:252.266566pt;}
.y37{bottom:252.746566pt;}
.y6c{bottom:259.146563pt;}
.yca{bottom:260.266563pt;}
.y9e{bottom:265.226561pt;}
.yf9{bottom:271.306558pt;}
.y36{bottom:273.066557pt;}
.y6b{bottom:279.626555pt;}
.y9d{bottom:286.026552pt;}
.y35{bottom:287.466552pt;}
.yf8{bottom:290.346551pt;}
.y34{bottom:290.826550pt;}
.yc9{bottom:298.986547pt;}
.y6a{bottom:300.106547pt;}
.y9c{bottom:306.826544pt;}
.y33{bottom:309.066543pt;}
.yf7{bottom:309.546543pt;}
.yc8{bottom:318.346539pt;}
.y69{bottom:320.586538pt;}
.y9b{bottom:327.786536pt;}
.yf6{bottom:328.586535pt;}
.y32{bottom:329.546535pt;}
.yc7{bottom:337.706532pt;}
.y68{bottom:341.066530pt;}
.yf5{bottom:347.626528pt;}
.y9a{bottom:348.586527pt;}
.y31{bottom:350.026527pt;}
.yc6{bottom:357.066524pt;}
.y67{bottom:361.546522pt;}
.yf4{bottom:366.826520pt;}
.y99{bottom:369.386519pt;}
.y30{bottom:370.506518pt;}
.yc5{bottom:376.426516pt;}
.y66{bottom:381.866514pt;}
.yf3{bottom:384.106513pt;}
.y98{bottom:390.346511pt;}
.y2f{bottom:390.826510pt;}
.yc4{bottom:395.786508pt;}
.yf2{bottom:400.746506pt;}
.y65{bottom:402.346506pt;}
.y97{bottom:411.146502pt;}
.y2e{bottom:411.306502pt;}
.yc3{bottom:415.306501pt;}
.yf1{bottom:419.786499pt;}
.y64{bottom:422.826498pt;}
.y2d{bottom:431.786494pt;}
.y96{bottom:431.946494pt;}
.yc2{bottom:434.666493pt;}
.yf0{bottom:437.226492pt;}
.y63{bottom:443.306489pt;}
.y2c{bottom:452.266486pt;}
.y95{bottom:452.906486pt;}
.yef{bottom:453.706485pt;}
.yc1{bottom:454.026485pt;}
.y62{bottom:463.786481pt;}
.y2b{bottom:472.746478pt;}
.yc0{bottom:473.386477pt;}
.y94{bottom:473.706477pt;}
.y61{bottom:484.266473pt;}
.yee{bottom:490.186471pt;}
.ybf{bottom:492.746470pt;}
.y2a{bottom:493.226469pt;}
.y93{bottom:494.506469pt;}
.y60{bottom:504.586465pt;}
.yed{bottom:506.826464pt;}
.ybe{bottom:512.106462pt;}
.y29{bottom:513.546461pt;}
.y92{bottom:515.466460pt;}
.y5f{bottom:525.066457pt;}
.yec{bottom:525.866456pt;}
.ybd{bottom:531.466454pt;}
.y28{bottom:534.026453pt;}
.y91{bottom:536.266452pt;}
.yeb{bottom:544.906449pt;}
.y5e{bottom:545.546448pt;}
.ybc{bottom:550.826446pt;}
.y27{bottom:554.506445pt;}
.y90{bottom:557.066444pt;}
.yea{bottom:563.946441pt;}
.y5d{bottom:566.026440pt;}
.ybb{bottom:570.186439pt;}
.y26{bottom:574.986437pt;}
.y8f{bottom:577.866436pt;}
.ye9{bottom:581.386434pt;}
.y5c{bottom:586.506432pt;}
.yba{bottom:589.546431pt;}
.y25{bottom:595.466428pt;}
.ye8{bottom:598.026427pt;}
.y8e{bottom:598.826427pt;}
.y5b{bottom:606.826424pt;}
.yb9{bottom:608.906423pt;}
.y23{bottom:613.227200pt;}
.ye7{bottom:617.066420pt;}
.y8d{bottom:619.626419pt;}
.y5a{bottom:627.306416pt;}
.yb8{bottom:628.266415pt;}
.ye6{bottom:636.106412pt;}
.y20{bottom:638.187200pt;}
.y8c{bottom:640.426410pt;}
.y22{bottom:641.226410pt;}
.yb7{bottom:647.626408pt;}
.y59{bottom:647.786408pt;}
.ye5{bottom:653.546405pt;}
.y8b{bottom:661.386402pt;}
.yb6{bottom:667.146400pt;}
.y58{bottom:668.266399pt;}
.ye4{bottom:670.026399pt;}
.y1f{bottom:674.666397pt;}
.y8a{bottom:682.186394pt;}
.yb5{bottom:686.506392pt;}
.y57{bottom:688.746391pt;}
.ye3{bottom:689.226391pt;}
.y89{bottom:702.986385pt;}
.yb4{bottom:705.866384pt;}
.ye2{bottom:708.266383pt;}
.y56{bottom:709.226383pt;}
.y1d{bottom:709.867200pt;}
.y1b{bottom:710.987200pt;}
.y88{bottom:723.946377pt;}
.yb3{bottom:725.226377pt;}
.ye1{bottom:727.306376pt;}
.y1a{bottom:728.106375pt;}
.y55{bottom:729.546375pt;}
.yb2{bottom:744.586369pt;}
.y87{bottom:744.746369pt;}
.y54{bottom:750.026367pt;}
.y18{bottom:755.627200pt;}
.ye0{bottom:761.226362pt;}
.yb1{bottom:763.946361pt;}
.y86{bottom:765.546360pt;}
.y53{bottom:770.506358pt;}
.y17{bottom:775.786356pt;}
.ydf{bottom:780.426354pt;}
.yb0{bottom:783.306353pt;}
.y85{bottom:786.506352pt;}
.y52{bottom:790.986350pt;}
.y14{bottom:795.947200pt;}
.yde{bottom:799.466347pt;}
.yaf{bottom:802.666346pt;}
.y16{bottom:804.906345pt;}
.y84{bottom:807.306344pt;}
.y51{bottom:811.466342pt;}
.y12{bottom:814.027200pt;}
.ydd{bottom:816.906340pt;}
.yae{bottom:822.026338pt;}
.y83{bottom:828.106335pt;}
.y50{bottom:831.946334pt;}
.ydc{bottom:833.386333pt;}
.yad{bottom:841.386330pt;}
.y11{bottom:843.786329pt;}
.y82{bottom:849.066327pt;}
.y4f{bottom:852.266326pt;}
.ydb{bottom:852.426326pt;}
.yac{bottom:860.746322pt;}
.y81{bottom:869.866319pt;}
.yda{bottom:871.626318pt;}
.y4e{bottom:872.746318pt;}
.y10{bottom:880.106315pt;}
.yd9{bottom:888.906311pt;}
.y80{bottom:890.666310pt;}
.y4d{bottom:893.226309pt;}
.yab{bottom:899.626307pt;}
.yf{bottom:900.906306pt;}
.yd8{bottom:905.546304pt;}
.y7f{bottom:911.466302pt;}
.y4c{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.yaa{bottom:918.986299pt;}
.yd7{bottom:924.586297pt;}
.y7e{bottom:932.426294pt;}
.y4b{bottom:934.186293pt;}
.ya9{bottom:938.346291pt;}
.yd6{bottom:943.626289pt;}
.y7d{bottom:953.226285pt;}
.y45{bottom:954.027200pt;}
.y4a{bottom:954.666285pt;}
.ya8{bottom:957.706284pt;}
.y44{bottom:962.026282pt;}
.yd5{bottom:962.826282pt;}
.y7c{bottom:974.026277pt;}
.y49{bottom:974.986277pt;}
.ya7{bottom:977.066276pt;}
.yd4{bottom:980.106275pt;}
.y43{bottom:980.906274pt;}
.y7b{bottom:994.986269pt;}
.y48{bottom:995.466268pt;}
.ya6{bottom:996.426268pt;}
.yd3{bottom:996.746268pt;}
.y42{bottom:999.946267pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y7a{bottom:1015.786260pt;}
.y47{bottom:1015.946260pt;}
.y40{bottom:1018.027200pt;}
.y3f{bottom:1021.386258pt;}
.y1{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h23{height:2.560000pt;}
.hb{height:7.262185pt;}
.hd{height:12.000000pt;}
.h16{height:13.440000pt;}
.h1d{height:14.097182pt;}
.h18{height:14.560000pt;}
.h1b{height:15.200000pt;}
.hf{height:17.920000pt;}
.h13{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h21{height:19.360000pt;}
.h1e{height:23.034366pt;}
.h11{height:23.068116pt;}
.h26{height:28.075614pt;}
.he{height:28.621551pt;}
.h1a{height:29.856863pt;}
.h25{height:32.432175pt;}
.h12{height:32.788112pt;}
.h15{height:35.560298pt;}
.h17{height:36.304673pt;}
.h22{height:36.703110pt;}
.h1f{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h8{height:42.656233pt;}
.h10{height:42.718733pt;}
.h14{height:42.843733pt;}
.h24{height:44.362482pt;}
.h19{height:44.562482pt;}
.ha{height:48.406231pt;}
.h20{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.wb{width:3.840000pt;}
.wf{width:4.000000pt;}
.w1{width:5.760000pt;}
.w11{width:6.880000pt;}
.w7{width:7.360000pt;}
.w15{width:8.800000pt;}
.w14{width:9.440000pt;}
.w5{width:9.920000pt;}
.w6{width:10.080000pt;}
.wd{width:10.880000pt;}
.w9{width:11.040000pt;}
.w3{width:14.240000pt;}
.w4{width:29.760000pt;}
.w12{width:58.400000pt;}
.we{width:69.280000pt;}
.w2{width:106.400000pt;}
.w8{width:196.000000pt;}
.w10{width:210.240000pt;}
.wa{width:230.720000pt;}
.wc{width:292.480000pt;}
.w13{width:600.480000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1e{left:97.119961pt;}
.x28{left:103.519959pt;}
.x5{left:106.880000pt;}
.x2f{left:114.399892pt;}
.x2{left:122.399966pt;}
.x3{left:138.400000pt;}
.x4{left:152.799939pt;}
.x27{left:155.199938pt;}
.xa{left:164.639934pt;}
.x24{left:166.400000pt;}
.x25{left:170.400000pt;}
.x6{left:213.280000pt;}
.xb{left:230.880281pt;}
.x1f{left:293.119883pt;}
.x20{left:297.600000pt;}
.x2a{left:304.479878pt;}
.x21{left:327.840000pt;}
.x22{left:331.680000pt;}
.xc{left:380.160094pt;}
.xd{left:384.160091pt;}
.x2c{left:387.519845pt;}
.x29{left:411.200455pt;}
.xe{left:458.720045pt;}
.xf{left:470.560037pt;}
.x10{left:482.400029pt;}
.x2e{left:485.919806pt;}
.x11{left:501.919965pt;}
.x12{left:505.919962pt;}
.x13{left:517.759954pt;}
.x2d{left:524.159790pt;}
.x14{left:529.439947pt;}
.x15{left:541.279939pt;}
.x16{left:545.279936pt;}
.x17{left:560.959873pt;}
.x18{left:564.799872pt;}
.x19{left:576.639864pt;}
.x1a{left:580.479862pt;}
.x1b{left:584.479859pt;}
.x1c{left:592.319763pt;}
.x7{left:619.840000pt;}
.x23{left:623.680000pt;}
.x8{left:649.600000pt;}
.x9{left:659.520000pt;}
.x2b{left:692.960000pt;}
.x26{left:694.719722pt;}
.x1d{left:696.479721pt;}
}




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