
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_13b0e5a06f83a6126c62c35f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.688000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b965a7ba0d53658819b66661.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.106000;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_8f8fbd9d2b33385427a724ee.woff2')format("woff");}.ff9{font-family:ff9;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff10;src:url('chunks/assets/font_063e3ea53c2d7f240e2b172b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909000;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_24539b5ccf8f19776ac06ebe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.818000;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_011ad763f47dd2dd843b93b4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.704000;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_8fc609b6f94641bf3a0b5127.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_62e3925ea13ffbe3a6150905.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.046000;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;}
.ff15{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2d3a5de84b3cb35a61eab48e.woff2')format("woff");}.ff16{font-family:ff16;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.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);}
.va{vertical-align:-18.930000px;}
.v5{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:10.164000px;}
.v2{vertical-align:17.730000px;}
.v8{vertical-align:20.922000px;}
.v1{vertical-align:29.616000px;}
.v3{vertical-align:48.528000px;}
.v7{vertical-align:83.766000px;}
.v4{vertical-align:92.286000px;}
.v6{vertical-align:102.696000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000545px;}
.ls14{letter-spacing:0.000760px;}
.lsd{letter-spacing:0.001223px;}
.lse{letter-spacing:0.001641px;}
.ls1a{letter-spacing:0.002400px;}
.ls0{letter-spacing:0.002712px;}
.ls18{letter-spacing:0.002759px;}
.ls13{letter-spacing:0.003056px;}
.ls9{letter-spacing:0.003744px;}
.lsc{letter-spacing:0.004381px;}
.ls5{letter-spacing:2.573587px;}
.ls1{letter-spacing:15.680700px;}
.ls2{letter-spacing:15.683412px;}
.ls1b{letter-spacing:15.937473px;}
.ls3{letter-spacing:18.179412px;}
.ls15{letter-spacing:18.929236px;}
.lsb{letter-spacing:19.919518px;}
.ls10{letter-spacing:19.924800px;}
.ls16{letter-spacing:20.287473px;}
.lsa{letter-spacing:22.910915px;}
.lsf{letter-spacing:22.913236px;}
.ls6{letter-spacing:22.914499px;}
.ls11{letter-spacing:22.916915px;}
.ls1c{letter-spacing:25.691464px;}
.ls12{letter-spacing:27.095518px;}
.ls8{letter-spacing:27.553809px;}
.ls19{letter-spacing:29.686765px;}
.ls7{letter-spacing:31.775518px;}
.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;}
}
.ws3e{word-spacing:-55.806874px;}
.ws2f{word-spacing:-51.789926px;}
.ws33{word-spacing:-45.664082px;}
.ws3c{word-spacing:-33.684972px;}
.ws35{word-spacing:-33.211407px;}
.ws3a{word-spacing:-26.133958px;}
.ws39{word-spacing:-25.722808px;}
.ws2e{word-spacing:-19.510886px;}
.ws38{word-spacing:-14.111859px;}
.ws3b{word-spacing:-7.603507px;}
.ws34{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.065455px;}
.ws30{word-spacing:-0.047821px;}
.ws1b{word-spacing:0.000000px;}
.ws36{word-spacing:1.356112px;}
.ws37{word-spacing:4.818112px;}
.ws19{word-spacing:14.661830px;}
.ws16{word-spacing:15.185467px;}
.ws53{word-spacing:15.709133px;}
.ws1c{word-spacing:16.232741px;}
.ws3d{word-spacing:17.000294px;}
.ws24{word-spacing:17.287219px;}
.ws15{word-spacing:18.130924px;}
.ws45{word-spacing:18.650112px;}
.ws58{word-spacing:19.008768px;}
.ws57{word-spacing:19.726080px;}
.ws4f{word-spacing:20.084736px;}
.ws1f{word-spacing:20.228198px;}
.ws21{word-spacing:20.371661px;}
.ws5a{word-spacing:20.658586px;}
.ws14{word-spacing:20.814563px;}
.ws9{word-spacing:21.469109px;}
.ws17{word-spacing:21.665473px;}
.ws7{word-spacing:21.730927px;}
.ws4{word-spacing:21.927291px;}
.ws1e{word-spacing:22.451866px;}
.ws49{word-spacing:22.595328px;}
.ws48{word-spacing:23.169178px;}
.wsd{word-spacing:23.170928px;}
.ws59{word-spacing:23.312640px;}
.ws29{word-spacing:23.384371px;}
.wsa{word-spacing:23.432747px;}
.ws2a{word-spacing:23.456102px;}
.wsc{word-spacing:23.825474px;}
.ws4e{word-spacing:24.029952px;}
.ws56{word-spacing:24.101683px;}
.ws8{word-spacing:24.676384px;}
.ws22{word-spacing:24.890726px;}
.ws13{word-spacing:25.003657px;}
.ws28{word-spacing:25.034189px;}
.ws18{word-spacing:25.134566px;}
.ws4c{word-spacing:25.751501px;}
.ws1a{word-spacing:26.312749px;}
.ws50{word-spacing:26.397082px;}
.ws20{word-spacing:26.540366px;}
.ws52{word-spacing:26.540544px;}
.ws46{word-spacing:26.827469px;}
.ws26{word-spacing:26.899200px;}
.ws2{word-spacing:27.286472px;}
.ws4d{word-spacing:27.616512px;}
.ws41{word-spacing:27.831706px;}
.ws31{word-spacing:27.903437px;}
.ws5c{word-spacing:27.975168px;}
.ws12{word-spacing:28.276387px;}
.ws5{word-spacing:28.538206px;}
.ws51{word-spacing:28.549018px;}
.ws10{word-spacing:28.930933px;}
.ws23{word-spacing:29.194598px;}
.ws1{word-spacing:29.438402px;}
.ws3{word-spacing:29.524480px;}
.ws4b{word-spacing:29.553254px;}
.ws2b{word-spacing:31.504255px;}
.ws27{word-spacing:31.590332px;}
.ws44{word-spacing:31.705190px;}
.ws25{word-spacing:31.992115px;}
.ws6{word-spacing:32.334572px;}
.wsf{word-spacing:33.250937px;}
.ws11{word-spacing:33.709119px;}
.ws4a{word-spacing:33.785395px;}
.ws54{word-spacing:34.646170px;}
.wse{word-spacing:36.720031px;}
.ws47{word-spacing:36.869837px;}
.ws2d{word-spacing:37.081972px;}
.ws32{word-spacing:37.185264px;}
.ws55{word-spacing:37.515418px;}
.ws0{word-spacing:38.184300px;}
.ws5b{word-spacing:40.169472px;}
.ws40{word-spacing:71.731200px;}
.ws3f{word-spacing:94.684920px;}
.ws1d{word-spacing:111.452500px;}
.ws42{word-spacing:173.948160px;}
.ws43{word-spacing:251.274394px;}
.ws2c{word-spacing:390.361190px;}
._21{margin-left:-39.473601px;}
._20{margin-left:-11.675374px;}
._1{margin-left:-9.546075px;}
._15{margin-left:-7.818701px;}
._2{margin-left:-6.283636px;}
._4{margin-left:-5.126138px;}
._0{margin-left:-3.223350px;}
._5{margin-left:-1.338742px;}
._8{width:1.832729px;}
._7{width:3.223350px;}
._23{width:4.630193px;}
._12{width:15.673299px;}
._13{width:17.345469px;}
._11{width:19.344912px;}
._14{width:21.490655px;}
._22{width:23.189101px;}
._49{width:24.411060px;}
._10{width:26.669672px;}
._b{width:28.800024px;}
._6{width:30.518912px;}
._18{width:31.676480px;}
._a{width:34.232756px;}
._e{width:36.720031px;}
._3{width:37.873968px;}
._c{width:39.348134px;}
._d{width:43.461854px;}
._f{width:48.632768px;}
._9{width:50.314857px;}
._48{width:52.005120px;}
._16{width:56.954573px;}
._4a{width:65.452160px;}
._47{width:70.989737px;}
._1a{width:90.237850px;}
._17{width:94.684920px;}
._25{width:106.291268px;}
._1c{width:108.505154px;}
._1f{width:111.452500px;}
._32{width:117.782630px;}
._30{width:130.880730px;}
._1e{width:134.424269px;}
._29{width:136.074086px;}
._2b{width:153.648230px;}
._35{width:159.573215px;}
._2f{width:171.222374px;}
._3e{width:173.732966px;}
._26{width:177.606451px;}
._46{width:178.969344px;}
._27{width:186.572851px;}
._45{width:187.624668px;}
._31{width:188.796518px;}
._37{width:198.843440px;}
._28{width:204.864307px;}
._2e{width:222.366720px;}
._44{width:231.978701px;}
._3a{width:234.919680px;}
._2d{width:236.038669px;}
._2c{width:237.502003px;}
._2a{width:271.287398px;}
._36{width:277.886669px;}
._24{width:283.585716px;}
._3d{width:298.760448px;}
._40{width:314.971699px;}
._39{width:316.908442px;}
._43{width:324.225024px;}
._3f{width:329.963520px;}
._3c{width:361.740442px;}
._3b{width:371.926272px;}
._41{width:380.892672px;}
._34{width:382.901146px;}
._1d{width:398.610278px;}
._1b{width:432.586716px;}
._42{width:467.974349px;}
._33{width:545.978446px;}
._38{width:578.483418px;}
._19{width:716.374940px;}
.fc3{color:rgb(0,255,0);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:63.168000px;}
.y29{bottom:108.000000px;}
.y28{bottom:113.422500px;}
.y67{bottom:113.679000px;}
.yb9{bottom:120.265500px;}
.y9b{bottom:121.425000px;}
.y27{bottom:138.802500px;}
.yd8{bottom:140.500500px;}
.yb8{bottom:141.934500px;}
.y49{bottom:144.426000px;}
.y66{bottom:150.291000px;}
.y9a{bottom:158.037000px;}
.y26{bottom:160.471500px;}
.yd7{bottom:162.169500px;}
.yb7{bottom:163.603500px;}
.y48{bottom:180.853500px;}
.yb6{bottom:185.271000px;}
.y65{bottom:186.904500px;}
.y99{bottom:194.650500px;}
.y25{bottom:199.894500px;}
.yd6{bottom:201.592500px;}
.yb5{bottom:206.940000px;}
.y47{bottom:216.907500px;}
.y64{bottom:223.516500px;}
.y98{bottom:227.898000px;}
.yb4{bottom:228.609000px;}
.y7e{bottom:245.290500px;}
.y46{bottom:250.155000px;}
.yb3{bottom:250.278000px;}
.y24{bottom:258.562500px;}
.y63{bottom:260.130000px;}
.yd5{bottom:261.486000px;}
.yb2{bottom:271.947000px;}
.y7d{bottom:278.538000px;}
.y23{bottom:278.886000px;}
.y97{bottom:279.883500px;}
.yd4{bottom:283.155000px;}
.y62{bottom:296.742000px;}
.y45{bottom:302.044500px;}
.yb1{bottom:305.194500px;}
.y22{bottom:305.803500px;}
.y96{bottom:319.306500px;}
.yd3{bottom:319.767000px;}
.y21{bottom:326.128500px;}
.y61{bottom:329.989500px;}
.y7c{bottom:330.525000px;}
.y44{bottom:340.995000px;}
.y20{bottom:346.452000px;}
.y7b{bottom:352.192500px;}
.yd2{bottom:356.380500px;}
.y43{bottom:362.547000px;}
.yb0{bottom:366.558000px;}
.y1f{bottom:366.775500px;}
.y42{bottom:370.414500px;}
.y60{bottom:374.643000px;}
.y41{bottom:374.847000px;}
.y95{bottom:379.201500px;}
.y1e{bottom:387.099000px;}
.yd1{bottom:392.992500px;}
.y7a{bottom:400.398000px;}
.yaf{bottom:403.170000px;}
.y1d{bottom:407.422500px;}
.y79{bottom:422.067000px;}
.y40{bottom:424.449000px;}
.y1c{bottom:427.747500px;}
.y94{bottom:428.601000px;}
.yd0{bottom:429.606000px;}
.y5f{bottom:431.847000px;}
.y5e{bottom:434.536500px;}
.yae{bottom:439.783500px;}
.y1b{bottom:448.071000px;}
.y93{bottom:450.268500px;}
.ycf{bottom:451.273500px;}
.y78{bottom:452.718000px;}
.y3f{bottom:457.696500px;}
.y1a{bottom:468.394500px;}
.y92{bottom:471.937500px;}
.yce{bottom:472.942500px;}
.y5d{bottom:474.138000px;}
.y77{bottom:474.387000px;}
.yad{bottom:476.395500px;}
.y19{bottom:488.718000px;}
.ycd{bottom:494.611500px;}
.y76{bottom:496.056000px;}
.y3e{bottom:502.350000px;}
.y91{bottom:502.590000px;}
.y5c{bottom:507.385500px;}
.y18{bottom:509.041500px;}
.yac{bottom:513.009000px;}
.ycc{bottom:516.280500px;}
.y75{bottom:517.723500px;}
.y90{bottom:529.159500px;}
.y17{bottom:529.366500px;}
.ycb{bottom:537.949500px;}
.ye9{bottom:546.855000px;}
.y74{bottom:548.376000px;}
.yab{bottom:549.621000px;}
.y16{bottom:549.690000px;}
.y5b{bottom:559.372500px;}
.yca{bottom:559.618500px;}
.ye8{bottom:568.524000px;}
.y15{bottom:570.013500px;}
.y73{bottom:575.941500px;}
.y5a{bottom:581.040000px;}
.yc9{bottom:581.286000px;}
.yaa{bottom:586.234500px;}
.y3d{bottom:589.506000px;}
.ye7{bottom:590.193000px;}
.y14{bottom:590.337000px;}
.y8f{bottom:593.137500px;}
.yc8{bottom:602.955000px;}
.y13{bottom:610.660500px;}
.y3c{bottom:611.175000px;}
.y59{bottom:614.287500px;}
.ya9{bottom:622.846500px;}
.ye6{bottom:626.805000px;}
.y12{bottom:630.984000px;}
.y3b{bottom:632.842500px;}
.y72{bottom:642.211500px;}
.yc7{bottom:642.378000px;}
.y8e{bottom:645.124500px;}
.y11{bottom:651.309000px;}
.y3a{bottom:654.511500px;}
.ya8{bottom:659.460000px;}
.ye5{bottom:663.418500px;}
.y58{bottom:663.585000px;}
.y57{bottom:666.274500px;}
.y10{bottom:671.632500px;}
.y8d{bottom:681.736500px;}
.ye4{bottom:685.086000px;}
.y39{bottom:685.164000px;}
.y71{bottom:686.863500px;}
.yf{bottom:691.956000px;}
.ya7{bottom:696.072000px;}
.yc6{bottom:702.271500px;}
.y56{bottom:705.876000px;}
.y38{bottom:711.733500px;}
.ye{bottom:712.279500px;}
.y8c{bottom:718.350000px;}
.ye3{bottom:721.699500px;}
.ya6{bottom:732.684000px;}
.yd{bottom:733.194000px;}
.yc5{bottom:738.885000px;}
.y55{bottom:739.123500px;}
.ye2{bottom:743.368500px;}
.y70{bottom:746.758500px;}
.y8b{bottom:754.962000px;}
.ya5{bottom:765.264000px;}
.y37{bottom:775.339500px;}
.yc4{bottom:775.497000px;}
.ye1{bottom:779.980500px;}
.y6f{bottom:783.370500px;}
.y54{bottom:791.110500px;}
.y8a{bottom:791.575500px;}
.yc{bottom:799.726500px;}
.ye0{bottom:801.649500px;}
.ya4{bottom:808.287000px;}
.yc3{bottom:812.110500px;}
.y6e{bottom:819.984000px;}
.y53{bottom:823.983000px;}
.y36{bottom:827.230500px;}
.y89{bottom:828.187500px;}
.yc2{bottom:833.779500px;}
.ydf{bottom:838.261500px;}
.y50{bottom:841.515000px;}
.yb{bottom:841.665000px;}
.y52{bottom:842.664000px;}
.y51{bottom:848.508000px;}
.ya{bottom:849.475500px;}
.y88{bottom:849.856500px;}
.y6d{bottom:853.231500px;}
.yde{bottom:859.930500px;}
.y35{bottom:863.656500px;}
.ya3{bottom:868.180500px;}
.y9{bottom:868.564500px;}
.yc1{bottom:870.391500px;}
.y8{bottom:876.373500px;}
.y87{bottom:883.104000px;}
.ya2{bottom:889.849500px;}
.y4f{bottom:894.070500px;}
.ydd{bottom:896.544000px;}
.y34{bottom:900.082500px;}
.y6c{bottom:905.217000px;}
.y6{bottom:905.706000px;}
.yc0{bottom:911.487000px;}
.y7{bottom:913.515000px;}
.ydc{bottom:918.213000px;}
.y33{bottom:921.751500px;}
.ya1{bottom:923.097000px;}
.y4e{bottom:927.318000px;}
.y4{bottom:932.605500px;}
.y5{bottom:940.414500px;}
.y6b{bottom:941.830500px;}
.y86{bottom:941.917500px;}
.ybf{bottom:950.910000px;}
.ydb{bottom:954.825000px;}
.y32{bottom:954.999000px;}
.y85{bottom:972.568500px;}
.ya0{bottom:975.082500px;}
.yda{bottom:976.494000px;}
.y6a{bottom:978.442500px;}
.y4d{bottom:979.303500px;}
.y3{bottom:985.836000px;}
.y84{bottom:994.237500px;}
.y9f{bottom:996.751500px;}
.y31{bottom:1006.890000px;}
.ybe{bottom:1010.803500px;}
.y69{bottom:1011.690000px;}
.y83{bottom:1015.906500px;}
.yd9{bottom:1015.917000px;}
.y4c{bottom:1018.726500px;}
.y2{bottom:1027.072500px;}
.y30{bottom:1028.557500px;}
.y9e{bottom:1029.999000px;}
.ybd{bottom:1032.472500px;}
.y82{bottom:1037.575500px;}
.y2f{bottom:1050.226500px;}
.ybc{bottom:1054.141500px;}
.y68{bottom:1063.677000px;}
.y1{bottom:1064.433000px;}
.y81{bottom:1068.226500px;}
.y2e{bottom:1071.895500px;}
.ybb{bottom:1075.810500px;}
.y4b{bottom:1078.620000px;}
.y9d{bottom:1081.986000px;}
.y2d{bottom:1093.564500px;}
.yba{bottom:1097.479500px;}
.y80{bottom:1098.877500px;}
.y4a{bottom:1100.289000px;}
.y9c{bottom:1103.655000px;}
.y2c{bottom:1115.233500px;}
.y7f{bottom:1126.444500px;}
.y2b{bottom:1136.902500px;}
.h11{height:13.731470px;}
.ha{height:39.750660px;}
.h5{height:39.810550px;}
.h14{height:45.429570px;}
.h7{height:49.090950px;}
.h13{height:49.781453px;}
.hb{height:53.798400px;}
.h4{height:56.786820px;}
.h6{height:62.181870px;}
.hc{height:63.759908px;}
.h9{height:68.144640px;}
.h10{height:74.720400px;}
.h12{height:75.789908px;}
.h3{height:81.773340px;}
.h8{height:98.127780px;}
.he{height:102.998400px;}
.h2{height:117.776250px;}
.hf{height:117.909908px;}
.hd{height:126.429908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:108.000000px;}
.x5e{left:116.778000px;}
.x54{left:126.451500px;}
.x1a{left:128.190000px;}
.x1f{left:129.463500px;}
.x4e{left:131.386500px;}
.x1b{left:134.892000px;}
.x55{left:144.903000px;}
.xf{left:151.897500px;}
.x1d{left:158.226000px;}
.x44{left:169.096500px;}
.x5d{left:173.343000px;}
.x50{left:175.282500px;}
.xe{left:176.304000px;}
.x43{left:178.534500px;}
.x8{left:182.413500px;}
.x1{left:186.006000px;}
.x3{left:188.688000px;}
.x9{left:190.632000px;}
.x41{left:196.453500px;}
.x51{left:201.369000px;}
.x56{left:210.118500px;}
.x52{left:221.167500px;}
.x57{left:222.246000px;}
.x13{left:223.315500px;}
.x23{left:229.852500px;}
.x40{left:232.351500px;}
.x2e{left:235.386000px;}
.x49{left:239.598000px;}
.x18{left:244.428000px;}
.x22{left:245.586000px;}
.x2{left:247.963500px;}
.x2f{left:253.375500px;}
.x42{left:258.810000px;}
.x35{left:268.576500px;}
.x14{left:270.538500px;}
.x48{left:283.228500px;}
.xa{left:308.227500px;}
.xb{left:316.446000px;}
.x33{left:329.386500px;}
.x3b{left:332.365500px;}
.x30{left:333.988500px;}
.x5a{left:338.946000px;}
.x27{left:341.950500px;}
.x58{left:349.447500px;}
.x4{left:352.023000px;}
.x4f{left:356.320500px;}
.x59{left:358.704000px;}
.x2c{left:361.476000px;}
.x24{left:365.707500px;}
.x4a{left:369.034500px;}
.xc{left:378.319500px;}
.x6{left:379.542000px;}
.x34{left:384.640500px;}
.x3c{left:386.895000px;}
.x25{left:389.491500px;}
.x31{left:394.485000px;}
.x5b{left:409.210500px;}
.xd{left:410.724000px;}
.x32{left:412.114500px;}
.x28{left:430.695000px;}
.x2d{left:432.417000px;}
.x3d{left:438.538500px;}
.x29{left:440.674500px;}
.x1c{left:442.068000px;}
.x4b{left:444.501000px;}
.x15{left:452.958000px;}
.x46{left:456.849000px;}
.x3e{left:463.989000px;}
.x5c{left:465.778500px;}
.x2a{left:473.985000px;}
.x16{left:476.391000px;}
.x4c{left:478.635000px;}
.x47{left:480.634500px;}
.x7{left:505.152000px;}
.x36{left:510.105000px;}
.x11{left:515.481000px;}
.x17{left:520.693500px;}
.x37{left:525.072000px;}
.x5{left:532.671000px;}
.x3f{left:534.208500px;}
.x53{left:542.644500px;}
.x38{left:547.690500px;}
.x20{left:562.359000px;}
.x10{left:564.517500px;}
.x39{left:566.121000px;}
.x21{left:586.144500px;}
.x4d{left:588.798000px;}
.x26{left:597.799500px;}
.x12{left:600.082500px;}
.x3a{left:610.680000px;}
.x61{left:616.345500px;}
.x62{left:626.430000px;}
.x45{left:633.849000px;}
.x1e{left:701.377500px;}
.x5f{left:722.857500px;}
.x60{left:753.111000px;}
.x2b{left:762.481500px;}
@media print{
.va{vertical-align:-16.826667pt;}
.v5{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:9.034667pt;}
.v2{vertical-align:15.760000pt;}
.v8{vertical-align:18.597333pt;}
.v1{vertical-align:26.325333pt;}
.v3{vertical-align:43.136000pt;}
.v7{vertical-align:74.458667pt;}
.v4{vertical-align:82.032000pt;}
.v6{vertical-align:91.285333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000485pt;}
.ls14{letter-spacing:0.000676pt;}
.lsd{letter-spacing:0.001087pt;}
.lse{letter-spacing:0.001458pt;}
.ls1a{letter-spacing:0.002133pt;}
.ls0{letter-spacing:0.002411pt;}
.ls18{letter-spacing:0.002452pt;}
.ls13{letter-spacing:0.002717pt;}
.ls9{letter-spacing:0.003328pt;}
.lsc{letter-spacing:0.003895pt;}
.ls5{letter-spacing:2.287633pt;}
.ls1{letter-spacing:13.938400pt;}
.ls2{letter-spacing:13.940811pt;}
.ls1b{letter-spacing:14.166642pt;}
.ls3{letter-spacing:16.159477pt;}
.ls15{letter-spacing:16.825987pt;}
.lsb{letter-spacing:17.706238pt;}
.ls10{letter-spacing:17.710933pt;}
.ls16{letter-spacing:18.033309pt;}
.lsa{letter-spacing:20.365258pt;}
.lsf{letter-spacing:20.367321pt;}
.ls6{letter-spacing:20.368444pt;}
.ls11{letter-spacing:20.370591pt;}
.ls1c{letter-spacing:22.836857pt;}
.ls12{letter-spacing:24.084905pt;}
.ls8{letter-spacing:24.492274pt;}
.ls19{letter-spacing:26.388236pt;}
.ls7{letter-spacing:28.244905pt;}
.ws3e{word-spacing:-49.606110pt;}
.ws2f{word-spacing:-46.035490pt;}
.ws33{word-spacing:-40.590295pt;}
.ws3c{word-spacing:-29.942197pt;}
.ws35{word-spacing:-29.521250pt;}
.ws3a{word-spacing:-23.230185pt;}
.ws39{word-spacing:-22.864719pt;}
.ws2e{word-spacing:-17.343010pt;}
.ws38{word-spacing:-12.543875pt;}
.ws3b{word-spacing:-6.758673pt;}
.ws34{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.058182pt;}
.ws30{word-spacing:-0.042507pt;}
.ws1b{word-spacing:0.000000pt;}
.ws36{word-spacing:1.205433pt;}
.ws37{word-spacing:4.282767pt;}
.ws19{word-spacing:13.032738pt;}
.ws16{word-spacing:13.498193pt;}
.ws53{word-spacing:13.963674pt;}
.ws1c{word-spacing:14.429103pt;}
.ws3d{word-spacing:15.111373pt;}
.ws24{word-spacing:15.366417pt;}
.ws15{word-spacing:16.116377pt;}
.ws45{word-spacing:16.577877pt;}
.ws58{word-spacing:16.896683pt;}
.ws57{word-spacing:17.534293pt;}
.ws4f{word-spacing:17.853099pt;}
.ws1f{word-spacing:17.980621pt;}
.ws21{word-spacing:18.108143pt;}
.ws5a{word-spacing:18.363187pt;}
.ws14{word-spacing:18.501834pt;}
.ws9{word-spacing:19.083652pt;}
.ws17{word-spacing:19.258198pt;}
.ws7{word-spacing:19.316380pt;}
.ws4{word-spacing:19.490925pt;}
.ws1e{word-spacing:19.957214pt;}
.ws49{word-spacing:20.084736pt;}
.ws48{word-spacing:20.594825pt;}
.wsd{word-spacing:20.596381pt;}
.ws59{word-spacing:20.722347pt;}
.ws29{word-spacing:20.786108pt;}
.wsa{word-spacing:20.829108pt;}
.ws2a{word-spacing:20.849869pt;}
.wsc{word-spacing:21.178199pt;}
.ws4e{word-spacing:21.359957pt;}
.ws56{word-spacing:21.423718pt;}
.ws8{word-spacing:21.934564pt;}
.ws22{word-spacing:22.125090pt;}
.ws13{word-spacing:22.225473pt;}
.ws28{word-spacing:22.252612pt;}
.ws18{word-spacing:22.341837pt;}
.ws4c{word-spacing:22.890223pt;}
.ws1a{word-spacing:23.389110pt;}
.ws50{word-spacing:23.464073pt;}
.ws20{word-spacing:23.591437pt;}
.ws52{word-spacing:23.591595pt;}
.ws46{word-spacing:23.846639pt;}
.ws26{word-spacing:23.910400pt;}
.ws2{word-spacing:24.254642pt;}
.ws4d{word-spacing:24.548011pt;}
.ws41{word-spacing:24.739294pt;}
.ws31{word-spacing:24.803055pt;}
.ws5c{word-spacing:24.866816pt;}
.ws12{word-spacing:25.134566pt;}
.ws5{word-spacing:25.367294pt;}
.ws51{word-spacing:25.376905pt;}
.ws10{word-spacing:25.716385pt;}
.ws23{word-spacing:25.950754pt;}
.ws1{word-spacing:26.167469pt;}
.ws3{word-spacing:26.243982pt;}
.ws4b{word-spacing:26.269559pt;}
.ws2b{word-spacing:28.003782pt;}
.ws27{word-spacing:28.080295pt;}
.ws44{word-spacing:28.182391pt;}
.ws25{word-spacing:28.437436pt;}
.ws6{word-spacing:28.741842pt;}
.wsf{word-spacing:29.556388pt;}
.ws11{word-spacing:29.963661pt;}
.ws4a{word-spacing:30.031462pt;}
.ws54{word-spacing:30.796595pt;}
.wse{word-spacing:32.640027pt;}
.ws47{word-spacing:32.773188pt;}
.ws2d{word-spacing:32.961753pt;}
.ws32{word-spacing:33.053568pt;}
.ws55{word-spacing:33.347038pt;}
.ws0{word-spacing:33.941600pt;}
.ws5b{word-spacing:35.706197pt;}
.ws40{word-spacing:63.761067pt;}
.ws3f{word-spacing:84.164373pt;}
.ws1d{word-spacing:99.068889pt;}
.ws42{word-spacing:154.620587pt;}
.ws43{word-spacing:223.355017pt;}
.ws2c{word-spacing:346.987725pt;}
._21{margin-left:-35.087645pt;}
._20{margin-left:-10.378110pt;}
._1{margin-left:-8.485400pt;}
._15{margin-left:-6.949956pt;}
._2{margin-left:-5.585454pt;}
._4{margin-left:-4.556567pt;}
._0{margin-left:-2.865200pt;}
._5{margin-left:-1.189993pt;}
._8{width:1.629092pt;}
._7{width:2.865200pt;}
._23{width:4.115727pt;}
._12{width:13.931821pt;}
._13{width:15.418195pt;}
._11{width:17.195477pt;}
._14{width:19.102804pt;}
._22{width:20.612534pt;}
._49{width:21.698720pt;}
._10{width:23.706375pt;}
._b{width:25.600021pt;}
._6{width:27.127922pt;}
._18{width:28.156871pt;}
._a{width:30.429116pt;}
._e{width:32.640027pt;}
._3{width:33.665749pt;}
._c{width:34.976119pt;}
._d{width:38.632759pt;}
._f{width:43.229127pt;}
._9{width:44.724317pt;}
._48{width:46.226773pt;}
._16{width:50.626287pt;}
._4a{width:58.179698pt;}
._47{width:63.101988pt;}
._1a{width:80.211422pt;}
._17{width:84.164373pt;}
._25{width:94.481127pt;}
._1c{width:96.449026pt;}
._1f{width:99.068889pt;}
._32{width:104.695671pt;}
._30{width:116.338427pt;}
._1e{width:119.488239pt;}
._29{width:120.954743pt;}
._2b{width:136.576205pt;}
._35{width:141.842858pt;}
._2f{width:152.197666pt;}
._3e{width:154.429303pt;}
._26{width:157.872401pt;}
._46{width:159.083861pt;}
._27{width:165.842534pt;}
._45{width:166.777483pt;}
._31{width:167.819127pt;}
._37{width:176.749725pt;}
._28{width:182.101606pt;}
._2e{width:197.659307pt;}
._44{width:206.203290pt;}
._3a{width:208.817493pt;}
._2d{width:209.812150pt;}
._2c{width:211.112892pt;}
._2a{width:241.144354pt;}
._36{width:247.010372pt;}
._24{width:252.076192pt;}
._3d{width:265.564843pt;}
._40{width:279.974844pt;}
._39{width:281.696393pt;}
._43{width:288.200021pt;}
._3f{width:293.300907pt;}
._3c{width:321.547059pt;}
._3b{width:330.601131pt;}
._41{width:338.571264pt;}
._34{width:340.356574pt;}
._1d{width:354.320247pt;}
._1b{width:384.521525pt;}
._42{width:415.977199pt;}
._33{width:485.314174pt;}
._38{width:514.207483pt;}
._19{width:636.777725pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:56.149333pt;}
.y29{bottom:96.000000pt;}
.y28{bottom:100.820000pt;}
.y67{bottom:101.048000pt;}
.yb9{bottom:106.902667pt;}
.y9b{bottom:107.933333pt;}
.y27{bottom:123.380000pt;}
.yd8{bottom:124.889333pt;}
.yb8{bottom:126.164000pt;}
.y49{bottom:128.378667pt;}
.y66{bottom:133.592000pt;}
.y9a{bottom:140.477333pt;}
.y26{bottom:142.641333pt;}
.yd7{bottom:144.150667pt;}
.yb7{bottom:145.425333pt;}
.y48{bottom:160.758667pt;}
.yb6{bottom:164.685333pt;}
.y65{bottom:166.137333pt;}
.y99{bottom:173.022667pt;}
.y25{bottom:177.684000pt;}
.yd6{bottom:179.193333pt;}
.yb5{bottom:183.946667pt;}
.y47{bottom:192.806667pt;}
.y64{bottom:198.681333pt;}
.y98{bottom:202.576000pt;}
.yb4{bottom:203.208000pt;}
.y7e{bottom:218.036000pt;}
.y46{bottom:222.360000pt;}
.yb3{bottom:222.469333pt;}
.y24{bottom:229.833333pt;}
.y63{bottom:231.226667pt;}
.yd5{bottom:232.432000pt;}
.yb2{bottom:241.730667pt;}
.y7d{bottom:247.589333pt;}
.y23{bottom:247.898667pt;}
.y97{bottom:248.785333pt;}
.yd4{bottom:251.693333pt;}
.y62{bottom:263.770667pt;}
.y45{bottom:268.484000pt;}
.yb1{bottom:271.284000pt;}
.y22{bottom:271.825333pt;}
.y96{bottom:283.828000pt;}
.yd3{bottom:284.237333pt;}
.y21{bottom:289.892000pt;}
.y61{bottom:293.324000pt;}
.y7c{bottom:293.800000pt;}
.y44{bottom:303.106667pt;}
.y20{bottom:307.957333pt;}
.y7b{bottom:313.060000pt;}
.yd2{bottom:316.782667pt;}
.y43{bottom:322.264000pt;}
.yb0{bottom:325.829333pt;}
.y1f{bottom:326.022667pt;}
.y42{bottom:329.257333pt;}
.y60{bottom:333.016000pt;}
.y41{bottom:333.197333pt;}
.y95{bottom:337.068000pt;}
.y1e{bottom:344.088000pt;}
.yd1{bottom:349.326667pt;}
.y7a{bottom:355.909333pt;}
.yaf{bottom:358.373333pt;}
.y1d{bottom:362.153333pt;}
.y79{bottom:375.170667pt;}
.y40{bottom:377.288000pt;}
.y1c{bottom:380.220000pt;}
.y94{bottom:380.978667pt;}
.yd0{bottom:381.872000pt;}
.y5f{bottom:383.864000pt;}
.y5e{bottom:386.254667pt;}
.yae{bottom:390.918667pt;}
.y1b{bottom:398.285333pt;}
.y93{bottom:400.238667pt;}
.ycf{bottom:401.132000pt;}
.y78{bottom:402.416000pt;}
.y3f{bottom:406.841333pt;}
.y1a{bottom:416.350667pt;}
.y92{bottom:419.500000pt;}
.yce{bottom:420.393333pt;}
.y5d{bottom:421.456000pt;}
.y77{bottom:421.677333pt;}
.yad{bottom:423.462667pt;}
.y19{bottom:434.416000pt;}
.ycd{bottom:439.654667pt;}
.y76{bottom:440.938667pt;}
.y3e{bottom:446.533333pt;}
.y91{bottom:446.746667pt;}
.y5c{bottom:451.009333pt;}
.y18{bottom:452.481333pt;}
.yac{bottom:456.008000pt;}
.ycc{bottom:458.916000pt;}
.y75{bottom:460.198667pt;}
.y90{bottom:470.364000pt;}
.y17{bottom:470.548000pt;}
.ycb{bottom:478.177333pt;}
.ye9{bottom:486.093333pt;}
.y74{bottom:487.445333pt;}
.yab{bottom:488.552000pt;}
.y16{bottom:488.613333pt;}
.y5b{bottom:497.220000pt;}
.yca{bottom:497.438667pt;}
.ye8{bottom:505.354667pt;}
.y15{bottom:506.678667pt;}
.y73{bottom:511.948000pt;}
.y5a{bottom:516.480000pt;}
.yc9{bottom:516.698667pt;}
.yaa{bottom:521.097333pt;}
.y3d{bottom:524.005333pt;}
.ye7{bottom:524.616000pt;}
.y14{bottom:524.744000pt;}
.y8f{bottom:527.233333pt;}
.yc8{bottom:535.960000pt;}
.y13{bottom:542.809333pt;}
.y3c{bottom:543.266667pt;}
.y59{bottom:546.033333pt;}
.ya9{bottom:553.641333pt;}
.ye6{bottom:557.160000pt;}
.y12{bottom:560.874667pt;}
.y3b{bottom:562.526667pt;}
.y72{bottom:570.854667pt;}
.yc7{bottom:571.002667pt;}
.y8e{bottom:573.444000pt;}
.y11{bottom:578.941333pt;}
.y3a{bottom:581.788000pt;}
.ya8{bottom:586.186667pt;}
.ye5{bottom:589.705333pt;}
.y58{bottom:589.853333pt;}
.y57{bottom:592.244000pt;}
.y10{bottom:597.006667pt;}
.y8d{bottom:605.988000pt;}
.ye4{bottom:608.965333pt;}
.y39{bottom:609.034667pt;}
.y71{bottom:610.545333pt;}
.yf{bottom:615.072000pt;}
.ya7{bottom:618.730667pt;}
.yc6{bottom:624.241333pt;}
.y56{bottom:627.445333pt;}
.y38{bottom:632.652000pt;}
.ye{bottom:633.137333pt;}
.y8c{bottom:638.533333pt;}
.ye3{bottom:641.510667pt;}
.ya6{bottom:651.274667pt;}
.yd{bottom:651.728000pt;}
.yc5{bottom:656.786667pt;}
.y55{bottom:656.998667pt;}
.ye2{bottom:660.772000pt;}
.y70{bottom:663.785333pt;}
.y8b{bottom:671.077333pt;}
.ya5{bottom:680.234667pt;}
.y37{bottom:689.190667pt;}
.yc4{bottom:689.330667pt;}
.ye1{bottom:693.316000pt;}
.y6f{bottom:696.329333pt;}
.y54{bottom:703.209333pt;}
.y8a{bottom:703.622667pt;}
.yc{bottom:710.868000pt;}
.ye0{bottom:712.577333pt;}
.ya4{bottom:718.477333pt;}
.yc3{bottom:721.876000pt;}
.y6e{bottom:728.874667pt;}
.y53{bottom:732.429333pt;}
.y36{bottom:735.316000pt;}
.y89{bottom:736.166667pt;}
.yc2{bottom:741.137333pt;}
.ydf{bottom:745.121333pt;}
.y50{bottom:748.013333pt;}
.yb{bottom:748.146667pt;}
.y52{bottom:749.034667pt;}
.y51{bottom:754.229333pt;}
.ya{bottom:755.089333pt;}
.y88{bottom:755.428000pt;}
.y6d{bottom:758.428000pt;}
.yde{bottom:764.382667pt;}
.y35{bottom:767.694667pt;}
.ya3{bottom:771.716000pt;}
.y9{bottom:772.057333pt;}
.yc1{bottom:773.681333pt;}
.y8{bottom:778.998667pt;}
.y87{bottom:784.981333pt;}
.ya2{bottom:790.977333pt;}
.y4f{bottom:794.729333pt;}
.ydd{bottom:796.928000pt;}
.y34{bottom:800.073333pt;}
.y6c{bottom:804.637333pt;}
.y6{bottom:805.072000pt;}
.yc0{bottom:810.210667pt;}
.y7{bottom:812.013333pt;}
.ydc{bottom:816.189333pt;}
.y33{bottom:819.334667pt;}
.ya1{bottom:820.530667pt;}
.y4e{bottom:824.282667pt;}
.y4{bottom:828.982667pt;}
.y5{bottom:835.924000pt;}
.y6b{bottom:837.182667pt;}
.y86{bottom:837.260000pt;}
.ybf{bottom:845.253333pt;}
.ydb{bottom:848.733333pt;}
.y32{bottom:848.888000pt;}
.y85{bottom:864.505333pt;}
.ya0{bottom:866.740000pt;}
.yda{bottom:867.994667pt;}
.y6a{bottom:869.726667pt;}
.y4d{bottom:870.492000pt;}
.y3{bottom:876.298667pt;}
.y84{bottom:883.766667pt;}
.y9f{bottom:886.001333pt;}
.y31{bottom:895.013333pt;}
.ybe{bottom:898.492000pt;}
.y69{bottom:899.280000pt;}
.y83{bottom:903.028000pt;}
.yd9{bottom:903.037333pt;}
.y4c{bottom:905.534667pt;}
.y2{bottom:912.953333pt;}
.y30{bottom:914.273333pt;}
.y9e{bottom:915.554667pt;}
.ybd{bottom:917.753333pt;}
.y82{bottom:922.289333pt;}
.y2f{bottom:933.534667pt;}
.ybc{bottom:937.014667pt;}
.y68{bottom:945.490667pt;}
.y1{bottom:946.162667pt;}
.y81{bottom:949.534667pt;}
.y2e{bottom:952.796000pt;}
.ybb{bottom:956.276000pt;}
.y4b{bottom:958.773333pt;}
.y9d{bottom:961.765333pt;}
.y2d{bottom:972.057333pt;}
.yba{bottom:975.537333pt;}
.y80{bottom:976.780000pt;}
.y4a{bottom:978.034667pt;}
.y9c{bottom:981.026667pt;}
.y2c{bottom:991.318667pt;}
.y7f{bottom:1001.284000pt;}
.y2b{bottom:1010.580000pt;}
.h11{height:12.205751pt;}
.ha{height:35.333920pt;}
.h5{height:35.387155pt;}
.h14{height:40.381840pt;}
.h7{height:43.636400pt;}
.h13{height:44.250180pt;}
.hb{height:47.820800pt;}
.h4{height:50.477173pt;}
.h6{height:55.272773pt;}
.hc{height:56.675474pt;}
.h9{height:60.573013pt;}
.h10{height:66.418133pt;}
.h12{height:67.368807pt;}
.h3{height:72.687413pt;}
.h8{height:87.224693pt;}
.he{height:91.554133pt;}
.h2{height:104.690000pt;}
.hf{height:104.808807pt;}
.hd{height:112.382141pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:96.000000pt;}
.x5e{left:103.802667pt;}
.x54{left:112.401333pt;}
.x1a{left:113.946667pt;}
.x1f{left:115.078667pt;}
.x4e{left:116.788000pt;}
.x1b{left:119.904000pt;}
.x55{left:128.802667pt;}
.xf{left:135.020000pt;}
.x1d{left:140.645333pt;}
.x44{left:150.308000pt;}
.x5d{left:154.082667pt;}
.x50{left:155.806667pt;}
.xe{left:156.714667pt;}
.x43{left:158.697333pt;}
.x8{left:162.145333pt;}
.x1{left:165.338667pt;}
.x3{left:167.722667pt;}
.x9{left:169.450667pt;}
.x41{left:174.625333pt;}
.x51{left:178.994667pt;}
.x56{left:186.772000pt;}
.x52{left:196.593333pt;}
.x57{left:197.552000pt;}
.x13{left:198.502667pt;}
.x23{left:204.313333pt;}
.x40{left:206.534667pt;}
.x2e{left:209.232000pt;}
.x49{left:212.976000pt;}
.x18{left:217.269333pt;}
.x22{left:218.298667pt;}
.x2{left:220.412000pt;}
.x2f{left:225.222667pt;}
.x42{left:230.053333pt;}
.x35{left:238.734667pt;}
.x14{left:240.478667pt;}
.x48{left:251.758667pt;}
.xa{left:273.980000pt;}
.xb{left:281.285333pt;}
.x33{left:292.788000pt;}
.x3b{left:295.436000pt;}
.x30{left:296.878667pt;}
.x5a{left:301.285333pt;}
.x27{left:303.956000pt;}
.x58{left:310.620000pt;}
.x4{left:312.909333pt;}
.x4f{left:316.729333pt;}
.x59{left:318.848000pt;}
.x2c{left:321.312000pt;}
.x24{left:325.073333pt;}
.x4a{left:328.030667pt;}
.xc{left:336.284000pt;}
.x6{left:337.370667pt;}
.x34{left:341.902667pt;}
.x3c{left:343.906667pt;}
.x25{left:346.214667pt;}
.x31{left:350.653333pt;}
.x5b{left:363.742667pt;}
.xd{left:365.088000pt;}
.x32{left:366.324000pt;}
.x28{left:382.840000pt;}
.x2d{left:384.370667pt;}
.x3d{left:389.812000pt;}
.x29{left:391.710667pt;}
.x1c{left:392.949333pt;}
.x4b{left:395.112000pt;}
.x15{left:402.629333pt;}
.x46{left:406.088000pt;}
.x3e{left:412.434667pt;}
.x5c{left:414.025333pt;}
.x2a{left:421.320000pt;}
.x16{left:423.458667pt;}
.x4c{left:425.453333pt;}
.x47{left:427.230667pt;}
.x7{left:449.024000pt;}
.x36{left:453.426667pt;}
.x11{left:458.205333pt;}
.x17{left:462.838667pt;}
.x37{left:466.730667pt;}
.x5{left:473.485333pt;}
.x3f{left:474.852000pt;}
.x53{left:482.350667pt;}
.x38{left:486.836000pt;}
.x20{left:499.874667pt;}
.x10{left:501.793333pt;}
.x39{left:503.218667pt;}
.x21{left:521.017333pt;}
.x4d{left:523.376000pt;}
.x26{left:531.377333pt;}
.x12{left:533.406667pt;}
.x3a{left:542.826667pt;}
.x61{left:547.862667pt;}
.x62{left:556.826667pt;}
.x45{left:563.421333pt;}
.x1e{left:623.446667pt;}
.x5f{left:642.540000pt;}
.x60{left:669.432000pt;}
.x2b{left:677.761333pt;}
}




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