
    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_96c34716c8de9ca736aa4a22.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_8ebe950783a7b905537cb725.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_f2b67ec5a0e4e362974ffa3d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m7{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-1.566000px;}
.ls1a{letter-spacing:-1.211040px;}
.ls3c{letter-spacing:-0.662400px;}
.ls24{letter-spacing:-0.463680px;}
.ls21{letter-spacing:-0.450000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.334080px;}
.ls1c{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.264960px;}
.ls18{letter-spacing:-0.250560px;}
.ls1b{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.198720px;}
.ls25{letter-spacing:-0.162000px;}
.ls1f{letter-spacing:-0.066240px;}
.ls17{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.066240px;}
.ls10{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.264960px;}
.ls13{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.282240px;}
.ls15{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.406080px;}
.ls35{letter-spacing:0.728640px;}
.ls20{letter-spacing:0.927360px;}
.ls14{letter-spacing:0.993600px;}
.ls2b{letter-spacing:29.543040px;}
.ls36{letter-spacing:30.205440px;}
.ls2d{letter-spacing:149.768640px;}
.ls2c{letter-spacing:160.499520px;}
.ls3a{letter-spacing:191.499840px;}
.ls0{letter-spacing:232.740000px;}
.ls39{letter-spacing:242.438400px;}
.ls30{letter-spacing:332.591040px;}
.ls2a{letter-spacing:334.114560px;}
.lsf{letter-spacing:349.879680px;}
.ls3{letter-spacing:389.557440px;}
.lsb{letter-spacing:433.342080px;}
.ls1{letter-spacing:444.205440px;}
.ls7{letter-spacing:454.406400px;}
.ls27{letter-spacing:472.489920px;}
.lsd{letter-spacing:473.682240px;}
.ls2f{letter-spacing:489.646080px;}
.ls31{letter-spacing:578.805120px;}
.lse{letter-spacing:643.654080px;}
.ls37{letter-spacing:667.434240px;}
.ls26{letter-spacing:750.234240px;}
.ls29{letter-spacing:804.882240px;}
.ls3b{letter-spacing:847.408320px;}
.ls6{letter-spacing:974.125440px;}
.lsa{letter-spacing:1025.064000px;}
.ls38{letter-spacing:1029.568320px;}
.ls28{letter-spacing:1036.059840px;}
.ls5{letter-spacing:1076.201280px;}
.ls32{letter-spacing:1088.521920px;}
.ls2e{letter-spacing:1096.536960px;}
.lsc{letter-spacing:1151.979840px;}
.ls4{letter-spacing:1278.763200px;}
.ls2{letter-spacing:1390.311360px;}
.ls8{letter-spacing:1437.143040px;}
.ls9{letter-spacing:1566.774720px;}
.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;}
}
.ws2d{word-spacing:-17.288640px;}
.ws1{word-spacing:-16.891200px;}
.ws2c{word-spacing:-16.824960px;}
.ws2a{word-spacing:-16.560000px;}
.ws2b{word-spacing:-16.361280px;}
.ws0{word-spacing:-13.770000px;}
.ws10{word-spacing:-4.371840px;}
.ws3e{word-spacing:-4.106880px;}
.wsf{word-spacing:-3.643200px;}
.ws3d{word-spacing:-3.510720px;}
.ws25{word-spacing:-3.312000px;}
.ws34{word-spacing:-2.914560px;}
.wsc{word-spacing:-2.782080px;}
.ws1e{word-spacing:-2.252160px;}
.ws37{word-spacing:-2.185920px;}
.ws13{word-spacing:-1.987200px;}
.ws12{word-spacing:-1.523520px;}
.ws1a{word-spacing:-1.391040px;}
.ws2e{word-spacing:-1.258560px;}
.ws3b{word-spacing:-0.794880px;}
.wsa{word-spacing:-0.662400px;}
.ws6{word-spacing:-0.596160px;}
.ws32{word-spacing:-0.529920px;}
.ws23{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.264960px;}
.ws27{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:0.066240px;}
.ws29{word-spacing:0.162000px;}
.wse{word-spacing:0.198720px;}
.ws40{word-spacing:0.264960px;}
.ws4{word-spacing:0.334080px;}
.ws26{word-spacing:0.463680px;}
.ws7{word-spacing:0.662400px;}
.ws28{word-spacing:0.728640px;}
.ws1b{word-spacing:0.794880px;}
.ws8{word-spacing:0.927360px;}
.ws5{word-spacing:1.188000px;}
.ws3{word-spacing:1.296000px;}
.ws1f{word-spacing:1.391040px;}
.ws14{word-spacing:1.523520px;}
.ws15{word-spacing:1.656000px;}
.ws30{word-spacing:1.722240px;}
.ws3f{word-spacing:1.920960px;}
.ws21{word-spacing:2.119680px;}
.ws20{word-spacing:2.252160px;}
.ws17{word-spacing:2.384640px;}
.ws31{word-spacing:2.848320px;}
.ws22{word-spacing:2.980800px;}
.wsb{word-spacing:3.113280px;}
.ws1c{word-spacing:3.510720px;}
.ws19{word-spacing:3.643200px;}
.ws18{word-spacing:3.775680px;}
.ws33{word-spacing:4.239360px;}
.ws36{word-spacing:4.504320px;}
.ws39{word-spacing:4.769280px;}
.ws9{word-spacing:4.968000px;}
.ws1d{word-spacing:5.100480px;}
.ws24{word-spacing:5.232960px;}
.wsd{word-spacing:5.696640px;}
.ws3a{word-spacing:5.829120px;}
.ws2f{word-spacing:6.425280px;}
.ws35{word-spacing:6.690240px;}
.ws16{word-spacing:8.147520px;}
.ws38{word-spacing:9.273600px;}
._45{margin-left:-2.175840px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._46{width:3.725064px;}
._48{width:5.825184px;}
._47{width:7.627200px;}
._f{width:27.317376px;}
._27{width:33.848640px;}
._14{width:41.724576px;}
._41{width:44.579520px;}
._78{width:47.931264px;}
._16{width:50.362272px;}
._3c{width:55.469376px;}
._34{width:58.695264px;}
._13{width:60.444000px;}
._2f{width:62.663040px;}
._6b{width:64.040832px;}
._11{width:65.484864px;}
._6f{width:72.671904px;}
._a{width:75.566592px;}
._d{width:77.010624px;}
._4f{width:89.298144px;}
._10{width:92.126592px;}
._64{width:94.292640px;}
._54{width:101.506176px;}
._58{width:106.513920px;}
._39{width:109.315872px;}
._76{width:112.343040px;}
._26{width:113.734080px;}
._22{width:115.893504px;}
._5e{width:117.330912px;}
._2b{width:130.320576px;}
._6a{width:132.413760px;}
._6c{width:144.654912px;}
._67{width:149.755392px;}
._61{width:154.054368px;}
._40{width:164.871360px;}
._52{width:172.031904px;}
._38{width:174.125088px;}
._5d{width:177.847776px;}
._42{width:182.073888px;}
._73{width:184.981824px;}
._b{width:187.167744px;}
._43{width:189.241056px;}
._2e{width:193.023360px;}
._63{width:195.116544px;}
._6e{width:197.183232px;}
._7b{width:205.158528px;}
._19{width:208.026720px;}
._18{width:213.113952px;}
._c{width:215.240256px;}
._79{width:218.108448px;}
._7e{width:226.746144px;}
._12{width:228.196800px;}
._36{width:232.886592px;}
._72{width:240.431328px;}
._3b{width:249.863904px;}
._e{width:251.261568px;}
._17{width:255.534048px;}
._62{width:258.488352px;}
._70{width:260.561664px;}
._1f{width:263.489472px;}
._23{width:266.390784px;}
._66{width:272.882304px;}
._53{width:274.273344px;}
._6d{width:275.651136px;}
._3d{width:289.435680px;}
._4e{width:290.793600px;}
._44{width:298.795392px;}
._49{width:306.717696px;}
._37{width:309.122208px;}
._2c{width:326.867904px;}
._4c{width:329.067072px;}
._55{width:339.884064px;}
._29{width:350.608320px;}
._33{width:355.775040px;}
._69{width:363.591360px;}
._82{width:378.031680px;}
._51{width:405.322560px;}
._1e{width:412.608960px;}
._28{width:414.596160px;}
._3e{width:416.848320px;}
._7c{width:431.288640px;}
._5f{width:446.503968px;}
._5a{width:451.425600px;}
._21{width:452.882880px;}
._71{width:473.019840px;}
._7a{width:486.784512px;}
._2a{width:488.056320px;}
._59{width:493.223040px;}
._35{width:500.900256px;}
._4d{width:509.716800px;}
._74{width:532.728576px;}
._1c{width:544.294080px;}
._4a{width:550.096704px;}
._60{width:567.378720px;}
._7f{width:591.119136px;}
._65{width:619.940160px;}
._81{width:628.551360px;}
._31{width:654.517440px;}
._77{width:671.011200px;}
._15{width:679.781376px;}
._24{width:707.045760px;}
._8{width:716.253120px;}
._20{width:720.108288px;}
._3f{width:721.552320px;}
._25{width:734.469120px;}
._30{width:737.251200px;}
._56{width:780.439680px;}
._7d{width:784.149120px;}
._3a{width:817.931520px;}
._5c{width:865.359360px;}
._57{width:881.256960px;}
._1d{width:891.259200px;}
._9{width:907.951680px;}
._3{width:913.750560px;}
._4b{width:955.512000px;}
._4{width:995.182560px;}
._2d{width:996.448320px;}
._7{width:999.959040px;}
._32{width:1125.947520px;}
._0{width:1141.551360px;}
._75{width:1185.099840px;}
._1{width:1193.876640px;}
._1a{width:1441.581120px;}
._83{width:1449.331200px;}
._68{width:1451.596608px;}
._80{width:1461.585600px;}
._1b{width:1470.130560px;}
._50{width:1685.602656px;}
._5b{width:1859.688000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:65.694240px;}
.y5{bottom:65.700000px;}
.y99{bottom:65.707200px;}
.y28{bottom:97.935120px;}
.y54{bottom:100.080000px;}
.y53{bottom:100.128240px;}
.y7f{bottom:100.140480px;}
.y27{bottom:118.088640px;}
.y52{bottom:120.463920px;}
.y7e{bottom:120.476160px;}
.y26{bottom:138.242160px;}
.y51{bottom:140.799600px;}
.y7d{bottom:140.811840px;}
.y7c{bottom:161.147520px;}
.y25{bottom:171.180000px;}
.y31{bottom:171.190800px;}
.y50{bottom:181.470960px;}
.y7b{bottom:181.483200px;}
.y24{bottom:191.526480px;}
.y4f{bottom:201.806640px;}
.y7a{bottom:201.818880px;}
.y23{bottom:211.680000px;}
.y4e{bottom:221.960160px;}
.y79{bottom:221.972400px;}
.y30{bottom:231.865920px;}
.y22{bottom:231.875280px;}
.y4d{bottom:242.295840px;}
.y78{bottom:242.308080px;}
.y2f{bottom:252.019440px;}
.y21{bottom:252.028800px;}
.y4c{bottom:262.631520px;}
.y77{bottom:262.643760px;}
.y2e{bottom:272.172960px;}
.y20{bottom:272.182320px;}
.y4b{bottom:282.967200px;}
.y76{bottom:282.979440px;}
.y2d{bottom:292.326480px;}
.y1f{bottom:292.335840px;}
.y75{bottom:303.315120px;}
.y2c{bottom:312.480000px;}
.y2b{bottom:312.486480px;}
.y1e{bottom:312.489360px;}
.y4a{bottom:323.638560px;}
.y74{bottom:323.650800px;}
.y1d{bottom:332.642880px;}
.y2a{bottom:332.644500px;}
.y49{bottom:343.974240px;}
.y73{bottom:343.986480px;}
.y29{bottom:352.800000px;}
.y1c{bottom:352.912320px;}
.y48{bottom:364.309920px;}
.y72{bottom:364.322160px;}
.y1b{bottom:373.065840px;}
.y71{bottom:397.260000px;}
.y47{bottom:397.280880px;}
.y70{bottom:397.298880px;}
.y1a{bottom:406.003680px;}
.y6f{bottom:417.452400px;}
.y19{bottom:426.157200px;}
.y46{bottom:437.587920px;}
.y6e{bottom:437.605920px;}
.y18{bottom:446.310720px;}
.y45{bottom:457.741440px;}
.y6d{bottom:457.759440px;}
.y17{bottom:466.464240px;}
.y44{bottom:477.894960px;}
.y6c{bottom:477.912960px;}
.y16{bottom:486.799920px;}
.y43{bottom:498.048480px;}
.y6b{bottom:498.066480px;}
.y15{bottom:506.953440px;}
.y42{bottom:518.218560px;}
.y6a{bottom:518.220000px;}
.y69{bottom:518.232960px;}
.y14{bottom:527.106960px;}
.y41{bottom:538.372080px;}
.y68{bottom:538.386480px;}
.y8d{bottom:545.625360px;}
.y13{bottom:547.260480px;}
.y67{bottom:558.540000px;}
.y40{bottom:558.542160px;}
.y66{bottom:558.550800px;}
.y8c{bottom:563.990400px;}
.y12{bottom:567.414000px;}
.y65{bottom:578.704320px;}
.y11{bottom:587.567520px;}
.y8b{bottom:597.822480px;}
.y64{bottom:599.040000px;}
.y3f{bottom:599.064480px;}
.y63{bottom:599.065920px;}
.y3e{bottom:619.218000px;}
.y62{bottom:619.219440px;}
.y10{bottom:620.505360px;}
.y8a{bottom:631.836720px;}
.y3d{bottom:639.371520px;}
.y61{bottom:639.372960px;}
.yf{bottom:640.658880px;}
.y3c{bottom:659.525040px;}
.y60{bottom:659.526480px;}
.ye{bottom:660.812400px;}
.y98{bottom:665.659440px;}
.y89{bottom:665.668800px;}
.y3b{bottom:679.678560px;}
.y5f{bottom:679.680000px;}
.yd{bottom:680.965920px;}
.y97{bottom:685.812960px;}
.y88{bottom:685.822320px;}
.y5e{bottom:699.840000px;}
.y3a{bottom:699.865200px;}
.y5d{bottom:699.865770px;}
.yc{bottom:701.119440px;}
.y96{bottom:706.148640px;}
.y87{bottom:706.158000px;}
.y39{bottom:720.018720px;}
.y5c{bottom:720.019290px;}
.yb{bottom:721.272960px;}
.y95{bottom:726.484320px;}
.y86{bottom:726.493680px;}
.y38{bottom:740.172240px;}
.y5b{bottom:740.172810px;}
.ya{bottom:741.426480px;}
.y94{bottom:746.820000px;}
.y93{bottom:746.837280px;}
.y85{bottom:746.845920px;}
.y5a{bottom:760.326330px;}
.y9{bottom:761.580000px;}
.y92{bottom:767.172960px;}
.y84{bottom:767.181600px;}
.y59{bottom:780.495810px;}
.y37{bottom:780.495840px;}
.y91{bottom:787.508640px;}
.y83{bottom:787.517280px;}
.y8{bottom:799.380000px;}
.y58{bottom:800.649330px;}
.y36{bottom:800.649360px;}
.y90{bottom:820.628640px;}
.y82{bottom:820.637280px;}
.y57{bottom:820.802850px;}
.y35{bottom:820.802880px;}
.y7{bottom:828.900000px;}
.y8f{bottom:840.964320px;}
.y81{bottom:840.972960px;}
.y56{bottom:841.138530px;}
.y34{bottom:841.138560px;}
.y6{bottom:858.060000px;}
.y55{bottom:861.292050px;}
.y33{bottom:861.292080px;}
.y8e{bottom:861.300000px;}
.y80{bottom:861.308640px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.ha{height:55.451531px;}
.h6{height:55.469531px;}
.hb{height:55.501875px;}
.h8{height:55.555695px;}
.h9{height:56.019375px;}
.hc{height:65.010937px;}
.h7{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x39{left:107.682510px;}
.x20{left:111.600750px;}
.xa{left:124.382700px;}
.x10{left:126.155520px;}
.x17{left:129.782160px;}
.x21{left:132.850542px;}
.xb{left:138.420000px;}
.x18{left:148.345920px;}
.x4a{left:150.307950px;}
.x50{left:152.344830px;}
.x3e{left:153.540000px;}
.x1{left:154.977000px;}
.x25{left:161.822880px;}
.x35{left:163.473150px;}
.x31{left:168.159630px;}
.x6{left:170.280000px;}
.x36{left:178.062510px;}
.x2f{left:179.105790px;}
.xc{left:180.190800px;}
.x1d{left:181.267200px;}
.x2c{left:183.229230px;}
.x11{left:188.073360px;}
.x26{left:193.320000px;}
.xe{left:196.535520px;}
.x38{left:202.521630px;}
.x4c{left:205.038750px;}
.x51{left:207.180000px;}
.x32{left:210.271710px;}
.x1f{left:222.501600px;}
.x1b{left:228.231360px;}
.x3a{left:234.051870px;}
.x4f{left:261.259950px;}
.x16{left:262.262160px;}
.x19{left:263.934720px;}
.x4d{left:264.985950px;}
.x13{left:266.037840px;}
.x12{left:267.660720px;}
.x14{left:269.118000px;}
.x15{left:270.177840px;}
.x22{left:276.120000px;}
.x2a{left:280.260000px;}
.x27{left:297.900000px;}
.xd{left:309.772800px;}
.x34{left:317.365230px;}
.x30{left:328.725390px;}
.x52{left:333.360000px;}
.x2b{left:349.736370px;}
.x7{left:351.180000px;}
.x2e{left:355.519470px;}
.x23{left:366.256080px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x28{left:377.280000px;}
.x1c{left:380.136240px;}
.x4b{left:386.486670px;}
.x2d{left:389.020350px;}
.x45{left:399.240000px;}
.xf{left:402.293520px;}
.x29{left:429.484350px;}
.x24{left:448.807680px;}
.x4e{left:450.457950px;}
.x33{left:455.078190px;}
.x3f{left:458.820000px;}
.x44{left:461.516400px;}
.x1e{left:468.533520px;}
.x37{left:480.116910px;}
.x46{left:486.540000px;}
.x9{left:494.638800px;}
.x47{left:497.700000px;}
.x3{left:503.287500px;}
.x1a{left:507.731040px;}
.x49{left:516.600000px;}
.x40{left:533.700000px;}
.x3c{left:539.100000px;}
.x48{left:561.960000px;}
.x42{left:565.920000px;}
.x41{left:581.033550px;}
.x43{left:607.500000px;}
.x3b{left:615.057450px;}
.x3d{left:626.766450px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-1.392000pt;}
.ls1a{letter-spacing:-1.076480pt;}
.ls3c{letter-spacing:-0.588800pt;}
.ls24{letter-spacing:-0.412160pt;}
.ls21{letter-spacing:-0.400000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.296960pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.235520pt;}
.ls18{letter-spacing:-0.222720pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.176640pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls1f{letter-spacing:-0.058880pt;}
.ls17{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.058880pt;}
.ls10{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.235520pt;}
.ls13{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.250880pt;}
.ls15{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.360960pt;}
.ls35{letter-spacing:0.647680pt;}
.ls20{letter-spacing:0.824320pt;}
.ls14{letter-spacing:0.883200pt;}
.ls2b{letter-spacing:26.260480pt;}
.ls36{letter-spacing:26.849280pt;}
.ls2d{letter-spacing:133.127680pt;}
.ls2c{letter-spacing:142.666240pt;}
.ls3a{letter-spacing:170.222080pt;}
.ls0{letter-spacing:206.880000pt;}
.ls39{letter-spacing:215.500800pt;}
.ls30{letter-spacing:295.636480pt;}
.ls2a{letter-spacing:296.990720pt;}
.lsf{letter-spacing:311.004160pt;}
.ls3{letter-spacing:346.273280pt;}
.lsb{letter-spacing:385.192960pt;}
.ls1{letter-spacing:394.849280pt;}
.ls7{letter-spacing:403.916800pt;}
.ls27{letter-spacing:419.991040pt;}
.lsd{letter-spacing:421.050880pt;}
.ls2f{letter-spacing:435.240960pt;}
.ls31{letter-spacing:514.493440pt;}
.lse{letter-spacing:572.136960pt;}
.ls37{letter-spacing:593.274880pt;}
.ls26{letter-spacing:666.874880pt;}
.ls29{letter-spacing:715.450880pt;}
.ls3b{letter-spacing:753.251840pt;}
.ls6{letter-spacing:865.889280pt;}
.lsa{letter-spacing:911.168000pt;}
.ls38{letter-spacing:915.171840pt;}
.ls28{letter-spacing:920.942080pt;}
.ls5{letter-spacing:956.623360pt;}
.ls32{letter-spacing:967.575040pt;}
.ls2e{letter-spacing:974.699520pt;}
.lsc{letter-spacing:1023.982080pt;}
.ls4{letter-spacing:1136.678400pt;}
.ls2{letter-spacing:1235.832320pt;}
.ls8{letter-spacing:1277.460480pt;}
.ls9{letter-spacing:1392.688640pt;}
.ws2d{word-spacing:-15.367680pt;}
.ws1{word-spacing:-15.014400pt;}
.ws2c{word-spacing:-14.955520pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.543360pt;}
.ws0{word-spacing:-12.240000pt;}
.ws10{word-spacing:-3.886080pt;}
.ws3e{word-spacing:-3.650560pt;}
.wsf{word-spacing:-3.238400pt;}
.ws3d{word-spacing:-3.120640pt;}
.ws25{word-spacing:-2.944000pt;}
.ws34{word-spacing:-2.590720pt;}
.wsc{word-spacing:-2.472960pt;}
.ws1e{word-spacing:-2.001920pt;}
.ws37{word-spacing:-1.943040pt;}
.ws13{word-spacing:-1.766400pt;}
.ws12{word-spacing:-1.354240pt;}
.ws1a{word-spacing:-1.236480pt;}
.ws2e{word-spacing:-1.118720pt;}
.ws3b{word-spacing:-0.706560pt;}
.wsa{word-spacing:-0.588800pt;}
.ws6{word-spacing:-0.529920pt;}
.ws32{word-spacing:-0.471040pt;}
.ws23{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.235520pt;}
.ws27{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:0.058880pt;}
.ws29{word-spacing:0.144000pt;}
.wse{word-spacing:0.176640pt;}
.ws40{word-spacing:0.235520pt;}
.ws4{word-spacing:0.296960pt;}
.ws26{word-spacing:0.412160pt;}
.ws7{word-spacing:0.588800pt;}
.ws28{word-spacing:0.647680pt;}
.ws1b{word-spacing:0.706560pt;}
.ws8{word-spacing:0.824320pt;}
.ws5{word-spacing:1.056000pt;}
.ws3{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.236480pt;}
.ws14{word-spacing:1.354240pt;}
.ws15{word-spacing:1.472000pt;}
.ws30{word-spacing:1.530880pt;}
.ws3f{word-spacing:1.707520pt;}
.ws21{word-spacing:1.884160pt;}
.ws20{word-spacing:2.001920pt;}
.ws17{word-spacing:2.119680pt;}
.ws31{word-spacing:2.531840pt;}
.ws22{word-spacing:2.649600pt;}
.wsb{word-spacing:2.767360pt;}
.ws1c{word-spacing:3.120640pt;}
.ws19{word-spacing:3.238400pt;}
.ws18{word-spacing:3.356160pt;}
.ws33{word-spacing:3.768320pt;}
.ws36{word-spacing:4.003840pt;}
.ws39{word-spacing:4.239360pt;}
.ws9{word-spacing:4.416000pt;}
.ws1d{word-spacing:4.533760pt;}
.ws24{word-spacing:4.651520pt;}
.wsd{word-spacing:5.063680pt;}
.ws3a{word-spacing:5.181440pt;}
.ws2f{word-spacing:5.711360pt;}
.ws35{word-spacing:5.946880pt;}
.ws16{word-spacing:7.242240pt;}
.ws38{word-spacing:8.243200pt;}
._45{margin-left:-1.934080pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._46{width:3.311168pt;}
._48{width:5.177941pt;}
._47{width:6.779733pt;}
._f{width:24.282112pt;}
._27{width:30.087680pt;}
._14{width:37.088512pt;}
._41{width:39.626240pt;}
._78{width:42.605568pt;}
._16{width:44.766464pt;}
._3c{width:49.306112pt;}
._34{width:52.173568pt;}
._13{width:53.728000pt;}
._2f{width:55.700480pt;}
._6b{width:56.925184pt;}
._11{width:58.208768pt;}
._6f{width:64.597248pt;}
._a{width:67.170304pt;}
._d{width:68.453888pt;}
._4f{width:79.376128pt;}
._10{width:81.890304pt;}
._64{width:83.815680pt;}
._54{width:90.227712pt;}
._58{width:94.679040pt;}
._39{width:97.169664pt;}
._76{width:99.860480pt;}
._26{width:101.096960pt;}
._22{width:103.016448pt;}
._5e{width:104.294144pt;}
._2b{width:115.840512pt;}
._6a{width:117.701120pt;}
._6c{width:128.582144pt;}
._67{width:133.115904pt;}
._61{width:136.937216pt;}
._40{width:146.552320pt;}
._52{width:152.917248pt;}
._38{width:154.777856pt;}
._5d{width:158.086912pt;}
._42{width:161.843456pt;}
._73{width:164.428288pt;}
._b{width:166.371328pt;}
._43{width:168.214272pt;}
._2e{width:171.576320pt;}
._63{width:173.436928pt;}
._6e{width:175.273984pt;}
._7b{width:182.363136pt;}
._19{width:184.912640pt;}
._18{width:189.434624pt;}
._c{width:191.324672pt;}
._79{width:193.874176pt;}
._7e{width:201.552128pt;}
._12{width:202.841600pt;}
._36{width:207.010304pt;}
._72{width:213.716736pt;}
._3b{width:222.101248pt;}
._e{width:223.343616pt;}
._17{width:227.141376pt;}
._62{width:229.767424pt;}
._70{width:231.610368pt;}
._1f{width:234.212864pt;}
._23{width:236.791808pt;}
._66{width:242.562048pt;}
._53{width:243.798528pt;}
._6d{width:245.023232pt;}
._3d{width:257.276160pt;}
._4e{width:258.483200pt;}
._44{width:265.595904pt;}
._49{width:272.637952pt;}
._37{width:274.775296pt;}
._2c{width:290.549248pt;}
._4c{width:292.504064pt;}
._55{width:302.119168pt;}
._29{width:311.651840pt;}
._33{width:316.244480pt;}
._69{width:323.192320pt;}
._82{width:336.028160pt;}
._51{width:360.286720pt;}
._1e{width:366.763520pt;}
._28{width:368.529920pt;}
._3e{width:370.531840pt;}
._7c{width:383.367680pt;}
._5f{width:396.892416pt;}
._5a{width:401.267200pt;}
._21{width:402.562560pt;}
._71{width:420.462080pt;}
._7a{width:432.697344pt;}
._2a{width:433.827840pt;}
._59{width:438.420480pt;}
._35{width:445.244672pt;}
._4d{width:453.081600pt;}
._74{width:473.536512pt;}
._1c{width:483.816960pt;}
._4a{width:488.974848pt;}
._60{width:504.336640pt;}
._7f{width:525.439232pt;}
._65{width:551.057920pt;}
._81{width:558.712320pt;}
._31{width:581.793280pt;}
._77{width:596.454400pt;}
._15{width:604.250112pt;}
._24{width:628.485120pt;}
._8{width:636.669440pt;}
._20{width:640.096256pt;}
._3f{width:641.379840pt;}
._25{width:652.861440pt;}
._30{width:655.334400pt;}
._56{width:693.724160pt;}
._7d{width:697.021440pt;}
._3a{width:727.050240pt;}
._5c{width:769.208320pt;}
._57{width:783.339520pt;}
._1d{width:792.230400pt;}
._9{width:807.068160pt;}
._3{width:812.222720pt;}
._4b{width:849.344000pt;}
._4{width:884.606720pt;}
._2d{width:885.731840pt;}
._7{width:888.852480pt;}
._32{width:1000.842240pt;}
._0{width:1014.712320pt;}
._75{width:1053.422080pt;}
._1{width:1061.223680pt;}
._1a{width:1281.405440pt;}
._83{width:1288.294400pt;}
._68{width:1290.308096pt;}
._80{width:1299.187200pt;}
._1b{width:1306.782720pt;}
._50{width:1498.313472pt;}
._5b{width:1653.056000pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:58.394880pt;}
.y5{bottom:58.400000pt;}
.y99{bottom:58.406400pt;}
.y28{bottom:87.053440pt;}
.y54{bottom:88.960000pt;}
.y53{bottom:89.002880pt;}
.y7f{bottom:89.013760pt;}
.y27{bottom:104.967680pt;}
.y52{bottom:107.079040pt;}
.y7e{bottom:107.089920pt;}
.y26{bottom:122.881920pt;}
.y51{bottom:125.155200pt;}
.y7d{bottom:125.166080pt;}
.y7c{bottom:143.242240pt;}
.y25{bottom:152.160000pt;}
.y31{bottom:152.169600pt;}
.y50{bottom:161.307520pt;}
.y7b{bottom:161.318400pt;}
.y24{bottom:170.245760pt;}
.y4f{bottom:179.383680pt;}
.y7a{bottom:179.394560pt;}
.y23{bottom:188.160000pt;}
.y4e{bottom:197.297920pt;}
.y79{bottom:197.308800pt;}
.y30{bottom:206.103040pt;}
.y22{bottom:206.111360pt;}
.y4d{bottom:215.374080pt;}
.y78{bottom:215.384960pt;}
.y2f{bottom:224.017280pt;}
.y21{bottom:224.025600pt;}
.y4c{bottom:233.450240pt;}
.y77{bottom:233.461120pt;}
.y2e{bottom:241.931520pt;}
.y20{bottom:241.939840pt;}
.y4b{bottom:251.526400pt;}
.y76{bottom:251.537280pt;}
.y2d{bottom:259.845760pt;}
.y1f{bottom:259.854080pt;}
.y75{bottom:269.613440pt;}
.y2c{bottom:277.760000pt;}
.y2b{bottom:277.765760pt;}
.y1e{bottom:277.768320pt;}
.y4a{bottom:287.678720pt;}
.y74{bottom:287.689600pt;}
.y1d{bottom:295.682560pt;}
.y2a{bottom:295.684000pt;}
.y49{bottom:305.754880pt;}
.y73{bottom:305.765760pt;}
.y29{bottom:313.600000pt;}
.y1c{bottom:313.699840pt;}
.y48{bottom:323.831040pt;}
.y72{bottom:323.841920pt;}
.y1b{bottom:331.614080pt;}
.y71{bottom:353.120000pt;}
.y47{bottom:353.138560pt;}
.y70{bottom:353.154560pt;}
.y1a{bottom:360.892160pt;}
.y6f{bottom:371.068800pt;}
.y19{bottom:378.806400pt;}
.y46{bottom:388.967040pt;}
.y6e{bottom:388.983040pt;}
.y18{bottom:396.720640pt;}
.y45{bottom:406.881280pt;}
.y6d{bottom:406.897280pt;}
.y17{bottom:414.634880pt;}
.y44{bottom:424.795520pt;}
.y6c{bottom:424.811520pt;}
.y16{bottom:432.711040pt;}
.y43{bottom:442.709760pt;}
.y6b{bottom:442.725760pt;}
.y15{bottom:450.625280pt;}
.y42{bottom:460.638720pt;}
.y6a{bottom:460.640000pt;}
.y69{bottom:460.651520pt;}
.y14{bottom:468.539520pt;}
.y41{bottom:478.552960pt;}
.y68{bottom:478.565760pt;}
.y8d{bottom:485.000320pt;}
.y13{bottom:486.453760pt;}
.y67{bottom:496.480000pt;}
.y40{bottom:496.481920pt;}
.y66{bottom:496.489600pt;}
.y8c{bottom:501.324800pt;}
.y12{bottom:504.368000pt;}
.y65{bottom:514.403840pt;}
.y11{bottom:522.282240pt;}
.y8b{bottom:531.397760pt;}
.y64{bottom:532.480000pt;}
.y3f{bottom:532.501760pt;}
.y63{bottom:532.503040pt;}
.y3e{bottom:550.416000pt;}
.y62{bottom:550.417280pt;}
.y10{bottom:551.560320pt;}
.y8a{bottom:561.632640pt;}
.y3d{bottom:568.330240pt;}
.y61{bottom:568.331520pt;}
.yf{bottom:569.474560pt;}
.y3c{bottom:586.244480pt;}
.y60{bottom:586.245760pt;}
.ye{bottom:587.388800pt;}
.y98{bottom:591.697280pt;}
.y89{bottom:591.705600pt;}
.y3b{bottom:604.158720pt;}
.y5f{bottom:604.160000pt;}
.yd{bottom:605.303040pt;}
.y97{bottom:609.611520pt;}
.y88{bottom:609.619840pt;}
.y5e{bottom:622.080000pt;}
.y3a{bottom:622.102400pt;}
.y5d{bottom:622.102907pt;}
.yc{bottom:623.217280pt;}
.y96{bottom:627.687680pt;}
.y87{bottom:627.696000pt;}
.y39{bottom:640.016640pt;}
.y5c{bottom:640.017147pt;}
.yb{bottom:641.131520pt;}
.y95{bottom:645.763840pt;}
.y86{bottom:645.772160pt;}
.y38{bottom:657.930880pt;}
.y5b{bottom:657.931387pt;}
.ya{bottom:659.045760pt;}
.y94{bottom:663.840000pt;}
.y93{bottom:663.855360pt;}
.y85{bottom:663.863040pt;}
.y5a{bottom:675.845627pt;}
.y9{bottom:676.960000pt;}
.y92{bottom:681.931520pt;}
.y84{bottom:681.939200pt;}
.y59{bottom:693.774053pt;}
.y37{bottom:693.774080pt;}
.y91{bottom:700.007680pt;}
.y83{bottom:700.015360pt;}
.y8{bottom:710.560000pt;}
.y58{bottom:711.688293pt;}
.y36{bottom:711.688320pt;}
.y90{bottom:729.447680pt;}
.y82{bottom:729.455360pt;}
.y57{bottom:729.602533pt;}
.y35{bottom:729.602560pt;}
.y7{bottom:736.800000pt;}
.y8f{bottom:747.523840pt;}
.y81{bottom:747.531520pt;}
.y56{bottom:747.678693pt;}
.y34{bottom:747.678720pt;}
.y6{bottom:762.720000pt;}
.y55{bottom:765.592933pt;}
.y33{bottom:765.592960pt;}
.y8e{bottom:765.600000pt;}
.y80{bottom:765.607680pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.ha{height:49.290250pt;}
.h6{height:49.306250pt;}
.hb{height:49.335000pt;}
.h8{height:49.382840pt;}
.h9{height:49.795000pt;}
.hc{height:57.787500pt;}
.h7{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x39{left:95.717787pt;}
.x20{left:99.200667pt;}
.xa{left:110.562400pt;}
.x10{left:112.138240pt;}
.x17{left:115.361920pt;}
.x21{left:118.089371pt;}
.xb{left:123.040000pt;}
.x18{left:131.863040pt;}
.x4a{left:133.607067pt;}
.x50{left:135.417627pt;}
.x3e{left:136.480000pt;}
.x1{left:137.757333pt;}
.x25{left:143.842560pt;}
.x35{left:145.309467pt;}
.x31{left:149.475227pt;}
.x6{left:151.360000pt;}
.x36{left:158.277787pt;}
.x2f{left:159.205147pt;}
.xc{left:160.169600pt;}
.x1d{left:161.126400pt;}
.x2c{left:162.870427pt;}
.x11{left:167.176320pt;}
.x26{left:171.840000pt;}
.xe{left:174.698240pt;}
.x38{left:180.019227pt;}
.x4c{left:182.256667pt;}
.x51{left:184.160000pt;}
.x32{left:186.908187pt;}
.x1f{left:197.779200pt;}
.x1b{left:202.872320pt;}
.x3a{left:208.046107pt;}
.x4f{left:232.231067pt;}
.x16{left:233.121920pt;}
.x19{left:234.608640pt;}
.x4d{left:235.543067pt;}
.x13{left:236.478080pt;}
.x12{left:237.920640pt;}
.x14{left:239.216000pt;}
.x15{left:240.158080pt;}
.x22{left:245.440000pt;}
.x2a{left:249.120000pt;}
.x27{left:264.800000pt;}
.xd{left:275.353600pt;}
.x34{left:282.102427pt;}
.x30{left:292.200347pt;}
.x52{left:296.320000pt;}
.x2b{left:310.876773pt;}
.x7{left:312.160000pt;}
.x2e{left:316.017307pt;}
.x23{left:325.560960pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x28{left:335.360000pt;}
.x1c{left:337.898880pt;}
.x4b{left:343.543707pt;}
.x2d{left:345.795867pt;}
.x45{left:354.880000pt;}
.xf{left:357.594240pt;}
.x29{left:381.763867pt;}
.x24{left:398.940160pt;}
.x4e{left:400.407067pt;}
.x33{left:404.513947pt;}
.x3f{left:407.840000pt;}
.x44{left:410.236800pt;}
.x1e{left:416.474240pt;}
.x37{left:426.770587pt;}
.x46{left:432.480000pt;}
.x9{left:439.678933pt;}
.x47{left:442.400000pt;}
.x3{left:447.366667pt;}
.x1a{left:451.316480pt;}
.x49{left:459.200000pt;}
.x40{left:474.400000pt;}
.x3c{left:479.200000pt;}
.x48{left:499.520000pt;}
.x42{left:503.040000pt;}
.x41{left:516.474267pt;}
.x43{left:540.000000pt;}
.x3b{left:546.717733pt;}
.x3d{left:557.125733pt;}
.x2{left:563.200000pt;}
}




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