
    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_d903eccb4c675fdd367ba722.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.686000;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;}
.ff2{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4b7bc315ba81d7838012f563.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945000;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_59798d74b574f48c60c96e8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007000;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_24f44ae9cf11c01193fb5609.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005077;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_c87504adeee2037f04728160.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_720e106d8e366eae073050b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_2a9af47ed79d394595a52e46.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_915a527dc55d2195136f9fb6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.686000;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_4e79fcae02cc7d1d2c60f4f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873000;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_31186e2d9a33e0e858199dab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958000;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_e452c273aa374222a959913d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_f0dd51f5a621160e6b88953d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_5762c8b7786e3a40a989a288.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_1bcd728251770e5b34aabdf3.woff2')format("woff");}.fff{font-family:fff;line-height:1.007000;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_1809d0c97db2b589aaa3d597.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.180000;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_afcde3447425a743c0a25814.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.007000;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:ff12;src:url('chunks/assets/font_5199c8db590fd63692d9c804.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.913000;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:ff13;src:url('chunks/assets/font_6215cde6e4fae3bf5b8901c5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.764000;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:ff14;src:url('chunks/assets/font_7d1b91125a46c6888ba3cbd7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005000;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:ff15;src:url('chunks/assets/font_3fd1c49699f442ca6f09fe9a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.004000;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;}
.m2{transform:matrix(0.117895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117895,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:62.737175px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsd{word-spacing:-50.373280px;}
.wsa{word-spacing:-48.610273px;}
.ws0{word-spacing:-36.101947px;}
.ws6{word-spacing:-30.223968px;}
.ws7{word-spacing:-25.492184px;}
.ws5{word-spacing:-23.087691px;}
.wsb{word-spacing:-22.038291px;}
.ws4{word-spacing:-20.988892px;}
.ws9{word-spacing:-17.630633px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.144009px;}
.ws3{word-spacing:0.287929px;}
.wsc{word-spacing:0.576035px;}
.ws1{word-spacing:0.720000px;}
._18{margin-left:-25.019329px;}
._19{margin-left:-23.883439px;}
._14{margin-left:-21.746148px;}
._10{margin-left:-20.656457px;}
._1b{margin-left:-19.309797px;}
._15{margin-left:-17.376624px;}
._17{margin-left:-16.203812px;}
._16{margin-left:-15.022259px;}
._13{margin-left:-13.232964px;}
._11{margin-left:-11.911806px;}
._1a{margin-left:-10.582448px;}
._12{margin-left:-9.236876px;}
._e{margin-left:-8.014895px;}
._a{margin-left:-6.895441px;}
._d{margin-left:-5.876890px;}
._3{margin-left:-4.784758px;}
._9{margin-left:-3.697480px;}
._0{margin-left:-2.515414px;}
._2{margin-left:-1.224000px;}
._4{width:1.511985px;}
._6{width:2.777590px;}
._8{width:4.002277px;}
._b{width:5.079285px;}
._21{width:6.109287px;}
._1c{width:7.144169px;}
._26{width:8.190718px;}
._22{width:9.520243px;}
._1d{width:11.019487px;}
._1e{width:12.517749px;}
._20{width:13.744231px;}
._27{width:15.120778px;}
._23{width:16.166452px;}
._1f{width:17.806939px;}
._25{width:18.822989px;}
._24{width:20.052468px;}
._5{width:23.251576px;}
._7{width:24.296678px;}
._c{width:25.422628px;}
._1{width:47.303981px;}
._f{width:136.629442px;}
.fc4{color:rgb(240,87,62);}
.fc5{color:rgb(77,77,79);}
.fc3{color:rgb(76,76,78);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:0.720000px;}
.fs8{font-size:58.768776px;}
.fs7{font-size:63.762574px;}
.fsb{font-size:75.559770px;}
.fs3{font-size:83.955566px;}
.fsa{font-size:88.153165px;}
.fs4{font-size:92.350763px;}
.fs6{font-size:93.377963px;}
.fs5{font-size:100.746560px;}
.fs0{font-size:132.727747px;}
.fs2{font-size:159.515336px;}
.fs9{font-size:167.910533px;}
.y0{bottom:0.000000px;}
.y3{bottom:6.853356px;}
.y2{bottom:38.935444px;}
.y1{bottom:100.276200px;}
.y97{bottom:141.238585px;}
.ybd{bottom:141.304285px;}
.ye0{bottom:141.315385px;}
.y47{bottom:142.882584px;}
.y55{bottom:147.919132px;}
.y72{bottom:155.266429px;}
.y46{bottom:168.387074px;}
.y96{bottom:168.941024px;}
.ybc{bottom:169.008074px;}
.ydf{bottom:169.019174px;}
.y2b{bottom:177.388570px;}
.y54{bottom:181.501119px;}
.y71{bottom:188.848416px;}
.y95{bottom:196.643463px;}
.ybb{bottom:196.710513px;}
.yde{bottom:196.720863px;}
.y53{bottom:215.084455px;}
.y70{bottom:222.430402px;}
.y94{bottom:224.345902px;}
.yba{bottom:224.412951px;}
.ydd{bottom:224.422551px;}
.y45{bottom:225.774051px;}
.y2a{bottom:247.428042px;}
.y52{bottom:248.666442px;}
.y93{bottom:252.047590px;}
.y105{bottom:252.113890px;}
.yb9{bottom:252.115390px;}
.ydc{bottom:252.124240px;}
.y6f{bottom:256.012389px;}
.y25{bottom:266.058185px;}
.y92{bottom:279.749279px;}
.y104{bottom:279.817679px;}
.yb8{bottom:279.817829px;}
.ydb{bottom:279.826679px;}
.y51{bottom:282.248428px;}
.y44{bottom:289.535725px;}
.y6e{bottom:289.594375px;}
.y24{bottom:291.247675px;}
.y91{bottom:307.453068px;}
.yb7{bottom:307.520268px;}
.yda{bottom:307.528368px;}
.y43{bottom:308.663568px;}
.y50{bottom:315.830415px;}
.y23{bottom:316.435665px;}
.y6d{bottom:323.176362px;}
.y42{bottom:327.793510px;}
.y90{bottom:335.155507px;}
.y103{bottom:335.221807px;}
.yb6{bottom:335.222707px;}
.yd9{bottom:335.230057px;}
.y22{bottom:341.625155px;}
.y41{bottom:347.566652px;}
.y4f{bottom:349.412401px;}
.y6c{bottom:356.758349px;}
.y8f{bottom:362.857946px;}
.y102{bottom:362.923496px;}
.yb5{bottom:362.925146px;}
.yd8{bottom:362.931746px;}
.y21{bottom:366.813145px;}
.y40{bottom:382.847988px;}
.y4e{bottom:382.994388px;}
.y6b{bottom:390.341685px;}
.y48{bottom:390.551985px;}
.y8e{bottom:390.560385px;}
.y101{bottom:390.625185px;}
.yb4{bottom:390.626835px;}
.yd7{bottom:390.633435px;}
.y3f{bottom:391.553985px;}
.y20{bottom:392.002634px;}
.y29{bottom:405.241779px;}
.y4d{bottom:416.576375px;}
.y1f{bottom:417.190624px;}
.y8d{bottom:418.262824px;}
.y100{bottom:418.327624px;}
.yb3{bottom:418.328524px;}
.yd6{bottom:418.335124px;}
.y3d{bottom:423.436472px;}
.y6a{bottom:423.923672px;}
.y28{bottom:440.923915px;}
.y1e{bottom:442.380114px;}
.y8c{bottom:445.965263px;}
.yb2{bottom:446.032313px;}
.yd5{bottom:446.038913px;}
.y4c{bottom:450.158361px;}
.y3e{bottom:453.421460px;}
.y3c{bottom:453.426110px;}
.y69{bottom:457.505658px;}
.y1d{bottom:467.567504px;}
.y8b{bottom:473.667702px;}
.yff{bottom:473.731752px;}
.yb1{bottom:473.734002px;}
.yd4{bottom:473.740602px;}
.y27{bottom:476.603951px;}
.y4b{bottom:483.740348px;}
.y3a{bottom:487.198446px;}
.y3b{bottom:488.708946px;}
.y68{bottom:491.087645px;}
.y1c{bottom:492.757594px;}
.y85{bottom:492.771394px;}
.y8a{bottom:501.370141px;}
.yfe{bottom:501.433441px;}
.yb0{bottom:501.435691px;}
.yd3{bottom:501.442291px;}
.y26{bottom:512.266436px;}
.y4a{bottom:517.324434px;}
.y1b{bottom:517.944984px;}
.y39{bottom:519.080934px;}
.y67{bottom:524.669631px;}
.y84{bottom:526.353381px;}
.yfd{bottom:529.135130px;}
.yaf{bottom:529.137380px;}
.yd2{bottom:529.143980px;}
.y37{bottom:538.208926px;}
.y1a{bottom:543.134474px;}
.y49{bottom:550.906421px;}
.yfc{bottom:556.838919px;}
.yae{bottom:556.839069px;}
.yd1{bottom:556.845669px;}
.y66{bottom:558.251618px;}
.y83{bottom:559.935367px;}
.y19{bottom:568.322464px;}
.y38{bottom:580.451909px;}
.y36{bottom:580.460909px;}
.yfb{bottom:584.540607px;}
.yad{bottom:584.540757px;}
.yd0{bottom:584.547357px;}
.y65{bottom:591.833605px;}
.y82{bottom:593.517354px;}
.yac{bottom:612.242446px;}
.ycf{bottom:612.249046px;}
.y35{bottom:615.742545px;}
.y33{bottom:617.249144px;}
.y18{bottom:618.699944px;}
.y64{bottom:625.415591px;}
.y2d{bottom:625.897691px;}
.y6{bottom:625.897841px;}
.y81{bottom:627.099340px;}
.yab{bottom:639.944135px;}
.yfa{bottom:639.944735px;}
.yce{bottom:639.950735px;}
.y32{bottom:642.435784px;}
.y17{bottom:643.889434px;}
.y34{bottom:651.023881px;}
.y63{bottom:658.997578px;}
.y80{bottom:660.682677px;}
.y31{bottom:667.622424px;}
.yf9{bottom:667.646424px;}
.yaa{bottom:667.646574px;}
.ycd{bottom:667.652424px;}
.y16{bottom:669.077424px;}
.y2c{bottom:673.751722px;}
.y5{bottom:673.751872px;}
.y62{bottom:692.580914px;}
.y30{bottom:692.809064px;}
.y7f{bottom:694.266014px;}
.yf8{bottom:695.348113px;}
.ya9{bottom:695.348263px;}
.ycc{bottom:695.354113px;}
.y4{bottom:721.606353px;}
.y15{bottom:721.969202px;}
.yeb{bottom:723.013352px;}
.yf7{bottom:723.049802px;}
.ya8{bottom:723.049952px;}
.ycb{bottom:723.055802px;}
.y61{bottom:726.162901px;}
.y7e{bottom:727.848000px;}
.y2f{bottom:743.182344px;}
.y14{bottom:747.157192px;}
.ya7{bottom:750.751641px;}
.yca{bottom:750.757491px;}
.y60{bottom:759.744887px;}
.y7d{bottom:761.429987px;}
.y2e{bottom:768.226334px;}
.y13{bottom:772.343082px;}
.y89{bottom:778.423030px;}
.yf6{bottom:778.453930px;}
.ya6{bottom:778.455430px;}
.yc9{bottom:778.461280px;}
.yea{bottom:778.462180px;}
.y5f{bottom:793.326874px;}
.y7c{bottom:795.011973px;}
.y12{bottom:797.528972px;}
.yf5{bottom:806.155619px;}
.ya5{bottom:806.157869px;}
.yc8{bottom:806.162969px;}
.ye9{bottom:806.163869px;}
.y11{bottom:822.714862px;}
.y5e{bottom:826.908860px;}
.y7b{bottom:828.593960px;}
.y88{bottom:833.834808px;}
.yf4{bottom:833.857308px;}
.ya4{bottom:833.860308px;}
.yc7{bottom:833.864658px;}
.ye8{bottom:833.865558px;}
.y10{bottom:847.900752px;}
.y5d{bottom:860.490847px;}
.yf3{bottom:861.560347px;}
.ya3{bottom:861.562747px;}
.yc6{bottom:861.566347px;}
.ye7{bottom:861.567247px;}
.y7a{bottom:862.175946px;}
.yf{bottom:873.086642px;}
.yf2{bottom:889.262036px;}
.ya2{bottom:889.265186px;}
.yc5{bottom:889.268036px;}
.ye6{bottom:889.268936px;}
.y5c{bottom:894.072834px;}
.y79{bottom:895.757933px;}
.ye{bottom:898.272532px;}
.yf1{bottom:916.963724px;}
.ya1{bottom:916.967624px;}
.yc4{bottom:916.969724px;}
.ye5{bottom:916.970624px;}
.yd{bottom:923.458422px;}
.y5b{bottom:927.654820px;}
.y78{bottom:929.339920px;}
.yf0{bottom:944.665413px;}
.ya0{bottom:944.670063px;}
.yc3{bottom:944.672163px;}
.ye4{bottom:944.672313px;}
.yc{bottom:948.644312px;}
.y5a{bottom:961.236807px;}
.y77{bottom:962.921906px;}
.yef{bottom:972.367852px;}
.y9f{bottom:972.372502px;}
.yc2{bottom:972.373852px;}
.ye3{bottom:972.374002px;}
.yb{bottom:973.830202px;}
.y59{bottom:994.820143px;}
.y76{bottom:996.505243px;}
.ya{bottom:999.016092px;}
.yee{bottom:1000.069541px;}
.y9e{bottom:1000.074941px;}
.yc1{bottom:1000.075541px;}
.ye2{bottom:1000.075691px;}
.y9{bottom:1024.204082px;}
.yed{bottom:1027.771230px;}
.y9d{bottom:1027.776630px;}
.yc0{bottom:1027.777230px;}
.ye1{bottom:1027.777380px;}
.y58{bottom:1028.402130px;}
.y75{bottom:1030.087229px;}
.y8{bottom:1049.390722px;}
.ybf{bottom:1055.478919px;}
.y9c{bottom:1055.479069px;}
.y57{bottom:1061.984116px;}
.y74{bottom:1063.669216px;}
.y7{bottom:1074.406211px;}
.yec{bottom:1083.181208px;}
.ybe{bottom:1083.181358px;}
.y9b{bottom:1083.181508px;}
.y56{bottom:1095.566703px;}
.y73{bottom:1097.251202px;}
.y9a{bottom:1147.165182px;}
.y98{bottom:1147.486182px;}
.y99{bottom:1147.666182px;}
.y87{bottom:1147.937682px;}
.y86{bottom:1148.386182px;}
.h4{height:0.684000px;}
.h12{height:46.897484px;}
.h10{height:50.882534px;}
.he{height:57.509563px;}
.h17{height:58.332142px;}
.h13{height:61.539430px;}
.h7{height:61.791297px;}
.h6{height:61.875252px;}
.hd{height:63.123503px;}
.h8{height:63.260273px;}
.h1a{height:64.528117px;}
.h19{height:64.792576px;}
.h15{height:64.968882px;}
.hf{height:66.996542px;}
.hb{height:67.164453px;}
.ha{height:67.970162px;}
.h9{height:68.062512px;}
.h1{height:69.536880px;}
.h18{height:75.761413px;}
.h16{height:80.219380px;}
.hc{height:80.395755px;}
.h2{height:89.723957px;}
.h5{height:123.145840px;}
.h11{height:129.733717px;}
.h14{height:134.328426px;}
.h3{height:1249.416000px;}
.h0{height:1263.000000px;}
.w1{width:269.913600px;}
.w2{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1a{left:67.926838px;}
.xd{left:71.819971px;}
.xf{left:80.358718px;}
.x2{left:87.342441px;}
.x19{left:90.480264px;}
.xe{left:92.889863px;}
.x1e{left:99.089960px;}
.x10{left:119.225352px;}
.x6{left:125.279950px;}
.x21{left:130.890848px;}
.x23{left:146.567641px;}
.x1c{left:158.315637px;}
.x4{left:162.748435px;}
.x28{left:166.594133px;}
.x16{left:169.625887px;}
.x11{left:172.552431px;}
.x13{left:179.626428px;}
.x15{left:180.863928px;}
.x22{left:183.778426px;}
.x12{left:185.222926px;}
.x3{left:208.799916px;}
.x17{left:210.034416px;}
.x27{left:216.494913px;}
.x5{left:222.168061px;}
.x24{left:231.320907px;}
.x1b{left:232.886907px;}
.xa{left:303.900988px;}
.x1{left:311.261400px;}
.x7{left:312.479875px;}
.x1f{left:313.969374px;}
.x8{left:363.362855px;}
.x20{left:367.966353px;}
.x9{left:375.032610px;}
.x18{left:377.129849px;}
.xc{left:415.651334px;}
.xb{left:420.053832px;}
.x29{left:562.904775px;}
.x1d{left:588.610265px;}
.x25{left:723.599711px;}
.x26{left:748.799700px;}
.x14{left:863.894654px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:55.766378pt;}
.ls0{letter-spacing:0.000000pt;}
.wsd{word-spacing:-44.776249pt;}
.wsa{word-spacing:-43.209132pt;}
.ws0{word-spacing:-32.090620pt;}
.ws6{word-spacing:-26.865749pt;}
.ws7{word-spacing:-22.659719pt;}
.ws5{word-spacing:-20.522392pt;}
.wsb{word-spacing:-19.589592pt;}
.ws4{word-spacing:-18.656793pt;}
.ws9{word-spacing:-15.671674pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.128008pt;}
.ws3{word-spacing:0.255937pt;}
.wsc{word-spacing:0.512031pt;}
.ws1{word-spacing:0.640000pt;}
._18{margin-left:-22.239403pt;}
._19{margin-left:-21.229723pt;}
._14{margin-left:-19.329910pt;}
._10{margin-left:-18.361295pt;}
._1b{margin-left:-17.164264pt;}
._15{margin-left:-15.445888pt;}
._17{margin-left:-14.403389pt;}
._16{margin-left:-13.353119pt;}
._13{margin-left:-11.762635pt;}
._11{margin-left:-10.588272pt;}
._1a{margin-left:-9.406620pt;}
._12{margin-left:-8.210556pt;}
._e{margin-left:-7.124351pt;}
._a{margin-left:-6.129281pt;}
._d{margin-left:-5.223902pt;}
._3{margin-left:-4.253118pt;}
._9{margin-left:-3.286649pt;}
._0{margin-left:-2.235924pt;}
._2{margin-left:-1.088000pt;}
._4{width:1.343987pt;}
._6{width:2.468969pt;}
._8{width:3.557580pt;}
._b{width:4.514920pt;}
._21{width:5.430477pt;}
._1c{width:6.350373pt;}
._26{width:7.280638pt;}
._22{width:8.462438pt;}
._1d{width:9.795099pt;}
._1e{width:11.126888pt;}
._20{width:12.217094pt;}
._27{width:13.440691pt;}
._23{width:14.370180pt;}
._1f{width:15.828390pt;}
._25{width:16.731546pt;}
._24{width:17.824416pt;}
._5{width:20.668067pt;}
._7{width:21.597047pt;}
._c{width:22.597892pt;}
._1{width:42.047983pt;}
._f{width:121.448392pt;}
.fs1{font-size:0.640000pt;}
.fs8{font-size:52.238912pt;}
.fs7{font-size:56.677844pt;}
.fsb{font-size:67.164240pt;}
.fs3{font-size:74.627170pt;}
.fsa{font-size:78.358369pt;}
.fs4{font-size:82.089567pt;}
.fs6{font-size:83.002633pt;}
.fs5{font-size:89.552498pt;}
.fs0{font-size:117.980219pt;}
.fs2{font-size:141.791410pt;}
.fs9{font-size:149.253807pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:6.091872pt;}
.y2{bottom:34.609284pt;}
.y1{bottom:89.134400pt;}
.y97{bottom:125.545409pt;}
.ybd{bottom:125.603809pt;}
.ye0{bottom:125.613675pt;}
.y47{bottom:127.006741pt;}
.y55{bottom:131.483673pt;}
.y72{bottom:138.014604pt;}
.y46{bottom:149.677399pt;}
.y96{bottom:150.169799pt;}
.ybc{bottom:150.229399pt;}
.ydf{bottom:150.239265pt;}
.y2b{bottom:157.678729pt;}
.y54{bottom:161.334328pt;}
.y71{bottom:167.865258pt;}
.y95{bottom:174.794189pt;}
.ybb{bottom:174.853789pt;}
.yde{bottom:174.862989pt;}
.y53{bottom:191.186182pt;}
.y70{bottom:197.715913pt;}
.y94{bottom:199.418579pt;}
.yba{bottom:199.478179pt;}
.ydd{bottom:199.486712pt;}
.y45{bottom:200.688045pt;}
.y2a{bottom:219.936038pt;}
.y52{bottom:221.036837pt;}
.y93{bottom:224.042303pt;}
.y105{bottom:224.101236pt;}
.yb9{bottom:224.102569pt;}
.ydc{bottom:224.110436pt;}
.y6f{bottom:227.566568pt;}
.y25{bottom:236.496164pt;}
.y92{bottom:248.666026pt;}
.y104{bottom:248.726826pt;}
.yb8{bottom:248.726959pt;}
.ydb{bottom:248.734826pt;}
.y51{bottom:250.887492pt;}
.y44{bottom:257.365089pt;}
.y6e{bottom:257.417223pt;}
.y24{bottom:258.886822pt;}
.y91{bottom:273.291616pt;}
.yb7{bottom:273.351350pt;}
.yda{bottom:273.358550pt;}
.y43{bottom:274.367616pt;}
.y50{bottom:280.738147pt;}
.y23{bottom:281.276146pt;}
.y6d{bottom:287.267877pt;}
.y42{bottom:291.372009pt;}
.y90{bottom:297.916006pt;}
.y103{bottom:297.974940pt;}
.yb6{bottom:297.975740pt;}
.yd9{bottom:297.982273pt;}
.y22{bottom:303.666804pt;}
.y41{bottom:308.948135pt;}
.y4f{bottom:310.588801pt;}
.y6c{bottom:317.118532pt;}
.y8f{bottom:322.540397pt;}
.y102{bottom:322.598663pt;}
.yb5{bottom:322.600130pt;}
.yd8{bottom:322.605997pt;}
.y21{bottom:326.056128pt;}
.y40{bottom:340.309323pt;}
.y4e{bottom:340.439456pt;}
.y6b{bottom:346.970387pt;}
.y48{bottom:347.157320pt;}
.y8e{bottom:347.164787pt;}
.y101{bottom:347.222387pt;}
.yb4{bottom:347.223853pt;}
.yd7{bottom:347.229720pt;}
.y3f{bottom:348.047986pt;}
.y20{bottom:348.446786pt;}
.y29{bottom:360.214915pt;}
.y4d{bottom:370.290111pt;}
.y1f{bottom:370.836111pt;}
.y8d{bottom:371.789177pt;}
.y100{bottom:371.846777pt;}
.yb3{bottom:371.847577pt;}
.yd6{bottom:371.853443pt;}
.y3d{bottom:376.387975pt;}
.y6a{bottom:376.821042pt;}
.y28{bottom:391.932369pt;}
.y1e{bottom:393.226768pt;}
.y8c{bottom:396.413567pt;}
.yb2{bottom:396.473167pt;}
.yd5{bottom:396.479034pt;}
.y4c{bottom:400.140766pt;}
.y3e{bottom:403.041298pt;}
.y3c{bottom:403.045431pt;}
.y69{bottom:406.671696pt;}
.y1d{bottom:415.615559pt;}
.y8b{bottom:421.037957pt;}
.yff{bottom:421.094890pt;}
.yb1{bottom:421.096890pt;}
.yd4{bottom:421.102757pt;}
.y27{bottom:423.647956pt;}
.y4b{bottom:429.991420pt;}
.y3a{bottom:433.065286pt;}
.y3b{bottom:434.407952pt;}
.y68{bottom:436.522351pt;}
.y1c{bottom:438.006750pt;}
.y85{bottom:438.019017pt;}
.y8a{bottom:445.662347pt;}
.yfe{bottom:445.718614pt;}
.yb0{bottom:445.720614pt;}
.yd3{bottom:445.726481pt;}
.y26{bottom:455.347943pt;}
.y4a{bottom:459.843942pt;}
.y1b{bottom:460.395541pt;}
.y39{bottom:461.405274pt;}
.y67{bottom:466.373006pt;}
.y84{bottom:467.869672pt;}
.yfd{bottom:470.342337pt;}
.yaf{bottom:470.344337pt;}
.yd2{bottom:470.350204pt;}
.y37{bottom:478.407934pt;}
.y1a{bottom:482.786199pt;}
.y49{bottom:489.694596pt;}
.yfc{bottom:494.967928pt;}
.yae{bottom:494.968061pt;}
.yd1{bottom:494.973928pt;}
.y66{bottom:496.223660pt;}
.y83{bottom:497.720326pt;}
.y19{bottom:505.175523pt;}
.y38{bottom:515.957253pt;}
.y36{bottom:515.965253pt;}
.yfb{bottom:519.591651pt;}
.yad{bottom:519.591784pt;}
.yd0{bottom:519.597651pt;}
.y65{bottom:526.074315pt;}
.y82{bottom:527.570981pt;}
.yac{bottom:544.215508pt;}
.ycf{bottom:544.221375pt;}
.y35{bottom:547.326707pt;}
.y33{bottom:548.665906pt;}
.y18{bottom:549.955506pt;}
.y64{bottom:555.924970pt;}
.y2d{bottom:556.353503pt;}
.y6{bottom:556.353636pt;}
.y81{bottom:557.421636pt;}
.yab{bottom:568.839231pt;}
.yfa{bottom:568.839765pt;}
.yce{bottom:568.845098pt;}
.y32{bottom:571.054030pt;}
.y17{bottom:572.346163pt;}
.y34{bottom:578.687894pt;}
.y63{bottom:585.775625pt;}
.y80{bottom:587.273491pt;}
.y31{bottom:593.442155pt;}
.yf9{bottom:593.463488pt;}
.yaa{bottom:593.463622pt;}
.ycd{bottom:593.468822pt;}
.y16{bottom:594.735488pt;}
.y2c{bottom:598.890419pt;}
.y5{bottom:598.890553pt;}
.y62{bottom:615.627479pt;}
.y30{bottom:615.830279pt;}
.y7f{bottom:617.125345pt;}
.yf8{bottom:618.087212pt;}
.ya9{bottom:618.087345pt;}
.ycc{bottom:618.092545pt;}
.y4{bottom:641.427869pt;}
.y15{bottom:641.750402pt;}
.yeb{bottom:642.678535pt;}
.yf7{bottom:642.710935pt;}
.ya8{bottom:642.711068pt;}
.ycb{bottom:642.716268pt;}
.y61{bottom:645.478134pt;}
.y7e{bottom:646.976000pt;}
.y2f{bottom:660.606528pt;}
.y14{bottom:664.139727pt;}
.ya7{bottom:667.334792pt;}
.yca{bottom:667.339992pt;}
.y60{bottom:675.328789pt;}
.y7d{bottom:676.826655pt;}
.y2e{bottom:682.867852pt;}
.y13{bottom:686.527184pt;}
.y89{bottom:691.931582pt;}
.yf6{bottom:691.959049pt;}
.ya6{bottom:691.960382pt;}
.yc9{bottom:691.965582pt;}
.yea{bottom:691.966382pt;}
.y5f{bottom:705.179443pt;}
.y7c{bottom:706.677310pt;}
.y12{bottom:708.914642pt;}
.yf5{bottom:716.582772pt;}
.ya5{bottom:716.584772pt;}
.yc8{bottom:716.589306pt;}
.ye9{bottom:716.590106pt;}
.y11{bottom:731.302100pt;}
.y5e{bottom:735.030098pt;}
.y7b{bottom:736.527964pt;}
.y88{bottom:741.186496pt;}
.yf4{bottom:741.206496pt;}
.ya4{bottom:741.209162pt;}
.yc7{bottom:741.213029pt;}
.ye8{bottom:741.213829pt;}
.y10{bottom:753.689557pt;}
.y5d{bottom:764.880753pt;}
.yf3{bottom:765.831419pt;}
.ya3{bottom:765.833553pt;}
.yc6{bottom:765.836753pt;}
.ye7{bottom:765.837553pt;}
.y7a{bottom:766.378619pt;}
.yf{bottom:776.077015pt;}
.yf2{bottom:790.455143pt;}
.ya2{bottom:790.457943pt;}
.yc5{bottom:790.460476pt;}
.ye6{bottom:790.461276pt;}
.y5c{bottom:794.731408pt;}
.y79{bottom:796.229274pt;}
.ye{bottom:798.464473pt;}
.yf1{bottom:815.078866pt;}
.ya1{bottom:815.082333pt;}
.yc4{bottom:815.084200pt;}
.ye5{bottom:815.085000pt;}
.yd{bottom:820.851931pt;}
.y5b{bottom:824.582062pt;}
.y78{bottom:826.079928pt;}
.yf0{bottom:839.702590pt;}
.ya0{bottom:839.706723pt;}
.yc3{bottom:839.708590pt;}
.ye4{bottom:839.708723pt;}
.yc{bottom:843.239388pt;}
.y5a{bottom:854.432717pt;}
.y77{bottom:855.930583pt;}
.yef{bottom:864.326980pt;}
.y9f{bottom:864.331113pt;}
.yc2{bottom:864.332313pt;}
.ye3{bottom:864.332446pt;}
.yb{bottom:865.626846pt;}
.y59{bottom:884.284572pt;}
.y76{bottom:885.782438pt;}
.ya{bottom:888.014304pt;}
.yee{bottom:888.950703pt;}
.y9e{bottom:888.955503pt;}
.yc1{bottom:888.956037pt;}
.ye2{bottom:888.956170pt;}
.y9{bottom:910.403628pt;}
.yed{bottom:913.574427pt;}
.y9d{bottom:913.579227pt;}
.yc0{bottom:913.579760pt;}
.ye1{bottom:913.579893pt;}
.y58{bottom:914.135227pt;}
.y75{bottom:915.633093pt;}
.y8{bottom:932.791752pt;}
.ybf{bottom:938.203484pt;}
.y9c{bottom:938.203617pt;}
.y57{bottom:943.985881pt;}
.y74{bottom:945.483747pt;}
.y7{bottom:955.027744pt;}
.yec{bottom:962.827740pt;}
.ybe{bottom:962.827874pt;}
.y9b{bottom:962.828007pt;}
.y56{bottom:973.837069pt;}
.y73{bottom:975.334402pt;}
.y9a{bottom:1019.702384pt;}
.y98{bottom:1019.987718pt;}
.y99{bottom:1020.147718pt;}
.y87{bottom:1020.389051pt;}
.y86{bottom:1020.787717pt;}
.h4{height:0.608000pt;}
.h12{height:41.686652pt;}
.h10{height:45.228920pt;}
.he{height:51.119612pt;}
.h17{height:51.850793pt;}
.h13{height:54.701716pt;}
.h7{height:54.925597pt;}
.h6{height:55.000224pt;}
.hd{height:56.109780pt;}
.h8{height:56.231354pt;}
.h1a{height:57.358326pt;}
.h19{height:57.593401pt;}
.h15{height:57.750118pt;}
.hf{height:59.552482pt;}
.hb{height:59.701736pt;}
.ha{height:60.417921pt;}
.h9{height:60.500011pt;}
.h1{height:61.810560pt;}
.h18{height:67.343478pt;}
.h16{height:71.306115pt;}
.hc{height:71.462893pt;}
.h2{height:79.754628pt;}
.h5{height:109.462968pt;}
.h11{height:115.318859pt;}
.h14{height:119.403046pt;}
.h3{height:1110.592000pt;}
.h0{height:1122.666667pt;}
.w1{width:239.923200pt;}
.w2{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1a{left:60.379412pt;}
.xd{left:63.839974pt;}
.xf{left:71.429971pt;}
.x2{left:77.637725pt;}
.x19{left:80.426901pt;}
.xe{left:82.568767pt;}
.x1e{left:88.079965pt;}
.x10{left:105.978091pt;}
.x6{left:111.359955pt;}
.x21{left:116.347420pt;}
.x23{left:130.282348pt;}
.x1c{left:140.725010pt;}
.x4{left:144.665275pt;}
.x28{left:148.083674pt;}
.x16{left:150.778566pt;}
.x11{left:153.379939pt;}
.x13{left:159.667936pt;}
.x15{left:160.767936pt;}
.x22{left:163.358601pt;}
.x12{left:164.642601pt;}
.x3{left:185.599926pt;}
.x17{left:186.697259pt;}
.x27{left:192.439923pt;}
.x5{left:197.482721pt;}
.x24{left:205.618584pt;}
.x1b{left:207.010584pt;}
.xa{left:270.134212pt;}
.x1{left:276.676800pt;}
.x7{left:277.759889pt;}
.x1f{left:279.083888pt;}
.x8{left:322.989204pt;}
.x20{left:327.081203pt;}
.x9{left:333.362320pt;}
.x18{left:335.226533pt;}
.xc{left:369.467852pt;}
.xb{left:373.381184pt;}
.x29{left:500.359800pt;}
.x1d{left:523.209124pt;}
.x25{left:643.199743pt;}
.x26{left:665.599734pt;}
.x14{left:767.906360pt;}
}




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