
    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_2320b4e5545a7cdcd0ea5122.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_82d9a87aafad5b34d994ee4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7f366859643af1efcc00007b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_50b39a51aced57347969742e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_e72e225d8dcd58bccc9d5284.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_551757203f598a42f71129a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.133789;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_75a084e8fe23826b2d5a3b37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947266;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_47d4dc99eca4915eb2c87158.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_ddfc099032fb7a57cf95acd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.145020;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_3d299c31d8bfa7fcaf157886.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917480;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:57.599977px;}
.v1{vertical-align:172.799931px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.106523px;}
.ls5{letter-spacing:0.331172px;}
.ls2{letter-spacing:29.917428px;}
.ls3{letter-spacing:37.837425px;}
.ls1{letter-spacing:43.599823px;}
.ls6{letter-spacing:66.525813px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(192,0,0),0 0.015em rgb(192,0,0),0.015em 0 rgb(192,0,0),0 -0.015em  rgb(192,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(192,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4c{word-spacing:-88.977564px;}
.ws4e{word-spacing:-79.919968px;}
.ws2d{word-spacing:-74.879970px;}
.ws53{word-spacing:-62.337575px;}
.ws25{word-spacing:-59.039976px;}
.ws64{word-spacing:-58.003149px;}
.ws63{word-spacing:-57.671977px;}
.ws13{word-spacing:-53.442699px;}
.ws42{word-spacing:-49.276737px;}
.ws66{word-spacing:-46.637261px;}
.ws65{word-spacing:-43.199983px;}
.ws1{word-spacing:-40.031984px;}
.ws6f{word-spacing:-36.071986px;}
.ws51{word-spacing:-35.884794px;}
.ws50{word-spacing:-35.856152px;}
.ws59{word-spacing:-35.539157px;}
.ws57{word-spacing:-35.409596px;}
.ws54{word-spacing:-35.395191px;}
.ws55{word-spacing:-35.135985px;}
.ws4f{word-spacing:-33.710392px;}
.ws41{word-spacing:-33.426707px;}
.ws31{word-spacing:-30.239988px;}
.ws2e{word-spacing:-30.023988px;}
.ws30{word-spacing:-28.805604px;}
.ws28{word-spacing:-28.799988px;}
.ws72{word-spacing:-28.641589px;}
.ws27{word-spacing:-28.079989px;}
.ws48{word-spacing:-26.870383px;}
.ws58{word-spacing:-26.495997px;}
.ws4b{word-spacing:-26.409623px;}
.ws4a{word-spacing:-26.179123px;}
.ws3c{word-spacing:-26.121528px;}
.ws49{word-spacing:-25.963172px;}
.ws67{word-spacing:-23.418711px;}
.ws26{word-spacing:-20.879992px;}
.ws2b{word-spacing:-18.719993px;}
.ws68{word-spacing:-16.613273px;}
.ws3b{word-spacing:-14.889554px;}
.ws6a{word-spacing:-13.410715px;}
.ws35{word-spacing:-11.059190px;}
.ws56{word-spacing:-7.315146px;}
.ws2a{word-spacing:-5.759998px;}
.ws1d{word-spacing:-3.080187px;}
.ws1c{word-spacing:-2.826721px;}
.wsd{word-spacing:-2.430673px;}
.ws5e{word-spacing:-2.106724px;}
.ws43{word-spacing:-2.095663px;}
.ws45{word-spacing:-1.944040px;}
.ws16{word-spacing:-1.640193px;}
.ws1e{word-spacing:-1.639990px;}
.ws44{word-spacing:-1.396519px;}
.ws11{word-spacing:-1.295999px;}
.ws62{word-spacing:-1.133243px;}
.ws23{word-spacing:-0.920196px;}
.wsa{word-spacing:-0.812160px;}
.ws1f{word-spacing:-0.791964px;}
.ws5a{word-spacing:-0.576000px;}
.ws12{word-spacing:-0.098633px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.144000px;}
.ws14{word-spacing:0.325454px;}
.wse{word-spacing:0.627886px;}
.ws71{word-spacing:0.720000px;}
.ws61{word-spacing:1.239794px;}
.ws17{word-spacing:3.023999px;}
.ws38{word-spacing:3.110367px;}
.ws39{word-spacing:3.556818px;}
.ws29{word-spacing:3.599999px;}
.wsf{word-spacing:6.209324px;}
.ws21{word-spacing:10.599873px;}
.ws6e{word-spacing:11.059190px;}
.ws3e{word-spacing:11.217666px;}
.ws24{word-spacing:11.319870px;}
.ws9{word-spacing:11.427882px;}
.ws46{word-spacing:12.470446px;}
.ws2c{word-spacing:12.959995px;}
.ws3a{word-spacing:13.636653px;}
.ws6d{word-spacing:16.488029px;}
.ws10{word-spacing:17.009319px;}
.ws7{word-spacing:19.007992px;}
.ws22{word-spacing:19.239835px;}
.ws20{word-spacing:20.679829px;}
.ws6c{word-spacing:20.808028px;}
.wsc{word-spacing:23.667784px;}
.ws8{word-spacing:26.927989px;}
.ws5d{word-spacing:27.879797px;}
.ws52{word-spacing:28.209438px;}
.ws5b{word-spacing:28.599794px;}
.ws6b{word-spacing:35.928022px;}
.ws70{word-spacing:38.879984px;}
.ws40{word-spacing:39.399867px;}
.ws15{word-spacing:41.183984px;}
.ws18{word-spacing:41.903983px;}
.ws2{word-spacing:44.783982px;}
.ws60{word-spacing:49.479822px;}
.wsb{word-spacing:50.129260px;}
.ws5f{word-spacing:50.199819px;}
.ws1b{word-spacing:51.639813px;}
.ws47{word-spacing:59.255451px;}
.ws5{word-spacing:60.335976px;}
.ws5c{word-spacing:61.719769px;}
.ws4{word-spacing:66.383973px;}
.ws3f{word-spacing:66.759867px;}
.ws3d{word-spacing:66.800279px;}
.ws6{word-spacing:85.103966px;}
.ws37{word-spacing:87.076571px;}
.ws3{word-spacing:89.423964px;}
.ws34{word-spacing:102.959959px;}
.ws32{word-spacing:109.439956px;}
.ws36{word-spacing:126.950544px;}
.ws19{word-spacing:149.903940px;}
.ws2f{word-spacing:166.319933px;}
.ws33{word-spacing:234.719906px;}
.ws69{word-spacing:360.071856px;}
.ws4d{word-spacing:2331.215068px;}
._24{margin-left:-9.971747px;}
._3{margin-left:-8.207997px;}
._36{margin-left:-7.071856px;}
._13{margin-left:-5.183998px;}
._1a{margin-left:-3.178443px;}
._5{margin-left:-2.159999px;}
._1{margin-left:-1.008000px;}
._2{width:1.871999px;}
._7{width:2.879999px;}
._35{width:4.186270px;}
._2b{width:27.475537px;}
._6{width:28.980958px;}
._19{width:30.546372px;}
._18{width:32.279664px;}
._11{width:33.292648px;}
._c{width:34.934436px;}
._4{width:38.016019px;}
._0{width:39.023984px;}
._10{width:40.031984px;}
._16{width:41.759983px;}
._1d{width:43.293556px;}
._12{width:44.351982px;}
._1c{width:45.754495px;}
._b{width:48.407227px;}
._34{width:49.824478px;}
._2c{width:53.740833px;}
._1b{width:55.171657px;}
._f{width:56.448289px;}
._a{width:57.743977px;}
._2d{width:59.728590px;}
._e{width:60.779716px;}
._22{width:62.182156px;}
._1f{width:67.206453px;}
._20{width:71.786040px;}
._21{width:73.959824px;}
._14{width:83.231967px;}
._17{width:86.211578px;}
._d{width:90.397594px;}
._8{width:98.639961px;}
._23{width:120.167778px;}
._9{width:126.143950px;}
._1e{width:148.132798px;}
._15{width:191.087924px;}
._33{width:239.877984px;}
._32{width:321.710271px;}
._30{width:388.439845px;}
._2e{width:391.618288px;}
._31{width:392.968163px;}
._2f{width:438.551825px;}
._25{width:739.871704px;}
._26{width:1171.151532px;}
._2a{width:1286.408125px;}
._28{width:1419.263398px;}
._29{width:2293.199083px;}
._27{width:2347.775061px;}
.fca{color:rgb(0,153,153);}
.fc9{color:rgb(255,255,0);}
.fc7{color:rgb(38,38,114);}
.fc6{color:transparent;}
.fc5{color:rgb(255,192,0);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,176,80);}
.fs9{font-size:48.239981px;}
.fs7{font-size:59.759976px;}
.fs8{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs1{font-size:107.999957px;}
.fs5{font-size:120.239952px;}
.fs2{font-size:138.239945px;}
.fs0{font-size:143.999942px;}
.fs3{font-size:167.759933px;}
.fs4{font-size:192.239923px;}
.fsa{font-size:287.999885px;}
.y0{bottom:0.000000px;}
.y53{bottom:78.540326px;}
.y6e{bottom:96.000319px;}
.ye2{bottom:108.420314px;}
.ycf{bottom:113.280312px;}
.y3a{bottom:117.420310px;}
.y52{bottom:119.040309px;}
.yce{bottom:145.680299px;}
.y6d{bottom:150.360297px;}
.y51{bottom:151.440296px;}
.y39{bottom:153.420296px;}
.yc4{bottom:157.200294px;}
.y78{bottom:169.620289px;}
.yc3{bottom:171.600288px;}
.y2f{bottom:176.460286px;}
.ycd{bottom:178.080286px;}
.y50{bottom:183.840283px;}
.yc2{bottom:186.000283px;}
.y15{bottom:187.440282px;}
.ye1{bottom:198.060278px;}
.y85{bottom:209.040273px;}
.ycc{bottom:210.480273px;}
.y2e{bottom:212.460272px;}
.y77{bottom:212.820272px;}
.y4f{bottom:216.240271px;}
.y38{bottom:225.420267px;}
.y14{bottom:230.640265px;}
.y4e{bottom:248.640258px;}
.y76{bottom:256.020255px;}
.y8e{bottom:257.640254px;}
.y6c{bottom:257.820254px;}
.y84{bottom:259.440253px;}
.y37{bottom:261.420252px;}
.y2d{bottom:267.720250px;}
.y13{bottom:273.840247px;}
.y4d{bottom:281.040245px;}
.ye0{bottom:284.460243px;}
.y8d{bottom:293.640240px;}
.yb8{bottom:295.080239px;}
.y36{bottom:297.420238px;}
.y24{bottom:304.440235px;}
.y83{bottom:309.840233px;}
.y2c{bottom:310.920233px;}
.y6b{bottom:312.360232px;}
.y4c{bottom:313.440232px;}
.y12{bottom:317.040230px;}
.y6{bottom:317.760230px;}
.y75{bottom:329.460225px;}
.y8c{bottom:329.640225px;}
.y96{bottom:331.620224px;}
.y35{bottom:333.420224px;}
.y82{bottom:335.040223px;}
.y23{bottom:345.840219px;}
.y99{bottom:348.180218px;}
.y2b{bottom:354.120215px;}
.y5{bottom:360.960213px;}
.y9e{bottom:376.980206px;}
.yb0{bottom:377.520206px;}
.y4b{bottom:378.240206px;}
.y62{bottom:381.300204px;}
.y81{bottom:385.440203px;}
.y93{bottom:393.180200px;}
.yd2{bottom:393.360200px;}
.y2a{bottom:397.320198px;}
.y8b{bottom:401.640196px;}
.y74{bottom:403.080196px;}
.y34{bottom:405.420195px;}
.y98{bottom:405.780195px;}
.y22{bottom:407.940194px;}
.y4a{bottom:410.640193px;}
.y61{bottom:417.300190px;}
.y95{bottom:418.020190px;}
.y6a{bottom:420.360189px;}
.yb7{bottom:427.560186px;}
.ya2{bottom:428.280186px;}
.yd1{bottom:429.540185px;}
.ybf{bottom:430.800185px;}
.y80{bottom:435.840183px;}
.y8a{bottom:437.640182px;}
.y33{bottom:441.420180px;}
.y49{bottom:443.040180px;}
.ybe{bottom:445.200179px;}
.yb6{bottom:445.560179px;}
.y11{bottom:446.640178px;}
.y4{bottom:447.360178px;}
.y21{bottom:449.340177px;}
.yc8{bottom:450.780177px;}
.y60{bottom:453.300176px;}
.y69{bottom:456.360174px;}
.y97{bottom:463.380172px;}
.yda{bottom:471.300168px;}
.ydf{bottom:472.200168px;}
.ye{bottom:474.540167px;}
.y48{bottom:475.440167px;}
.y73{bottom:476.700166px;}
.y32{bottom:477.420166px;}
.yae{bottom:478.320166px;}
.y92{bottom:479.580165px;}
.y7f{bottom:486.240163px;}
.y5f{bottom:489.300161px;}
.y10{bottom:489.840161px;}
.y3{bottom:490.560161px;}
.y20{bottom:490.740161px;}
.y68{bottom:492.360160px;}
.ya1{bottom:496.140159px;}
.y29{bottom:501.540156px;}
.y47{bottom:507.840154px;}
.yd5{bottom:508.740154px;}
.y89{bottom:509.640153px;}
.yd9{bottom:512.520152px;}
.y31{bottom:513.420152px;}
.ycb{bottom:513.600152px;}
.y5a{bottom:515.220151px;}
.y9d{bottom:517.020150px;}
.yb5{bottom:519.900149px;}
.yab{bottom:520.080149px;}
.yc1{bottom:522.420148px;}
.y1a{bottom:524.400147px;}
.y5e{bottom:525.300147px;}
.y67{bottom:528.360146px;}
.yad{bottom:528.720146px;}
.y41{bottom:534.480143px;}
.y7e{bottom:536.640142px;}
.y91{bottom:537.180142px;}
.ya6{bottom:538.620142px;}
.yd{bottom:539.340141px;}
.y46{bottom:540.240141px;}
.y88{bottom:545.640139px;}
.y72{bottom:550.320137px;}
.y1f{bottom:552.840136px;}
.yf{bottom:554.640135px;}
.y59{bottom:558.420134px;}
.y5d{bottom:561.300132px;}
.y7d{bottom:561.840132px;}
.y28{bottom:566.340130px;}
.y45{bottom:572.640128px;}
.yde{bottom:573.000128px;}
.ybd{bottom:573.720128px;}
.y9c{bottom:574.620127px;}
.yd8{bottom:577.320126px;}
.y40{bottom:577.860126px;}
.yac{bottom:579.120125px;}
.y87{bottom:581.640124px;}
.y30{bottom:581.820124px;}
.y66{bottom:582.000124px;}
.y8{bottom:582.360124px;}
.ya0{bottom:582.540124px;}
.yb4{bottom:584.700123px;}
.yc{bottom:587.940122px;}
.ybc{bottom:588.120122px;}
.y19{bottom:589.200121px;}
.y94{bottom:590.820121px;}
.y1e{bottom:594.240119px;}
.y5c{bottom:597.300118px;}
.yca{bottom:600.000117px;}
.y58{bottom:601.620116px;}
.ybb{bottom:602.520116px;}
.yb3{bottom:602.700116px;}
.y44{bottom:605.040115px;}
.yaa{bottom:606.480114px;}
.y27{bottom:609.540113px;}
.y7c{bottom:612.240112px;}
.yba{bottom:616.920110px;}
.y3f{bottom:620.880109px;}
.ydd{bottom:623.400108px;}
.y90{bottom:623.580108px;}
.y71{bottom:623.760107px;}
.ya5{bottom:625.020107px;}
.y7{bottom:625.560107px;}
.y5b{bottom:633.120104px;}
.ya4{bottom:635.460103px;}
.y1d{bottom:635.640103px;}
.y43{bottom:637.440102px;}
.yd7{bottom:642.120100px;}
.y57{bottom:644.820099px;}
.yb{bottom:652.740096px;}
.y18{bottom:654.000095px;}
.yc9{bottom:657.600094px;}
.y9b{bottom:661.020093px;}
.y86{bottom:662.100092px;}
.y7b{bottom:662.640092px;}
.y65{bottom:663.000092px;}
.yb2{bottom:663.900091px;}
.y42{bottom:669.840089px;}
.ydc{bottom:673.800087px;}
.yc0{bottom:680.100085px;}
.y3e{bottom:685.860083px;}
.ya8{bottom:686.400082px;}
.yb1{bottom:689.100081px;}
.ya9{bottom:692.880080px;}
.ya3{bottom:693.060080px;}
.yc7{bottom:697.560078px;}
.y1c{bottom:697.740078px;}
.y64{bottom:699.000077px;}
.y70{bottom:699.720077px;}
.yd6{bottom:706.920074px;}
.y8f{bottom:709.980073px;}
.y7a{bottom:713.040072px;}
.ya{bottom:713.580072px;}
.y9a{bottom:718.620070px;}
.y17{bottom:718.800069px;}
.y55{bottom:720.420069px;}
.y2{bottom:723.840067px;}
.y3d{bottom:728.880065px;}
.y56{bottom:731.220065px;}
.y63{bottom:735.180063px;}
.yd4{bottom:737.160062px;}
.y1b{bottom:739.500061px;}
.yc6{bottom:740.760061px;}
.y26{bottom:741.480060px;}
.y6f{bottom:742.920060px;}
.ya7{bottom:744.000059px;}
.y9{bottom:756.780054px;}
.y54{bottom:763.620052px;}
.y3b{bottom:771.720048px;}
.y79{bottom:771.900048px;}
.y3c{bottom:772.080048px;}
.yaf{bottom:774.240047px;}
.ydb{bottom:774.600047px;}
.yd3{bottom:780.360045px;}
.yd0{bottom:780.720045px;}
.y9f{bottom:783.420044px;}
.y16{bottom:783.600044px;}
.yc5{bottom:783.960043px;}
.y1{bottom:788.640042px;}
.yb9{bottom:788.820041px;}
.y25{bottom:810.780033px;}
.h14{height:50.312792px;}
.hf{height:62.327788px;}
.h13{height:75.093720px;}
.hd{height:76.712665px;}
.h17{height:77.000594px;}
.h9{height:86.128911px;}
.h12{height:87.859652px;}
.hc{height:98.349570px;}
.h8{height:103.148396px;}
.h15{height:107.912769px;}
.ha{height:109.495855px;}
.h2{height:112.640580px;}
.h5{height:125.406512px;}
.h7{height:131.132760px;}
.h16{height:131.624947px;}
.he{height:137.703109px;}
.h3{height:144.179942px;}
.h1{height:150.187440px;}
.h10{height:153.343064px;}
.h11{height:174.968368px;}
.h18{height:191.953048px;}
.h4{height:200.500232px;}
.hb{height:322.987371px;}
.h0{height:892.500000px;}
.h6{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x65{left:102.225859px;}
.x6c{left:113.170755px;}
.x5a{left:137.865845px;}
.xf{left:140.205844px;}
.xe{left:146.685841px;}
.xc{left:148.845840px;}
.x33{left:157.486437px;}
.x30{left:163.246435px;}
.x16{left:165.946434px;}
.xb{left:174.406430px;}
.x4{left:182.866427px;}
.x5{left:188.086425px;}
.x58{left:189.886424px;}
.x10{left:191.506423px;}
.x15{left:195.646422px;}
.x25{left:198.886420px;}
.x62{left:199.966420px;}
.x67{left:201.946419px;}
.x63{left:204.466418px;}
.xd{left:208.606417px;}
.x29{left:221.026412px;}
.x6a{left:225.346410px;}
.x51{left:228.406409px;}
.x6b{left:229.486408px;}
.x34{left:231.826407px;}
.x31{left:236.866405px;}
.x2b{left:246.586401px;}
.x69{left:253.066399px;}
.x2a{left:254.506398px;}
.x4d{left:257.926397px;}
.xa{left:259.546396px;}
.x6{left:262.426395px;}
.x39{left:266.206394px;}
.x4a{left:271.606391px;}
.x4c{left:273.046391px;}
.x8{left:275.026390px;}
.x27{left:280.786388px;}
.x4f{left:283.666387px;}
.x61{left:289.066384px;}
.x2{left:296.266381px;}
.x2e{left:315.526374px;}
.x5e{left:326.326369px;}
.x28{left:329.026368px;}
.x37{left:331.186368px;}
.x3b{left:333.526367px;}
.x11{left:334.606366px;}
.x3c{left:337.306365px;}
.x2c{left:338.926364px;}
.x42{left:340.186364px;}
.x3{left:344.506362px;}
.x7{left:350.266360px;}
.x1d{left:353.146359px;}
.x50{left:354.586358px;}
.x1f{left:357.646357px;}
.x3e{left:359.266356px;}
.x23{left:363.766354px;}
.x48{left:367.726353px;}
.x40{left:371.326351px;}
.x49{left:373.306351px;}
.x52{left:377.806349px;}
.x5d{left:379.426348px;}
.x66{left:381.766347px;}
.x22{left:383.926346px;}
.x5f{left:385.906346px;}
.x1e{left:404.266338px;}
.x14{left:407.866337px;}
.x3f{left:423.166331px;}
.x68{left:426.046330px;}
.x2d{left:427.846329px;}
.x12{left:430.186328px;}
.x19{left:431.986327px;}
.x38{left:434.686326px;}
.x47{left:436.126326px;}
.x17{left:445.306322px;}
.x18{left:447.646321px;}
.x44{left:451.785719px;}
.x9{left:453.586319px;}
.x46{left:456.106318px;}
.x1{left:469.066312px;}
.x20{left:471.766311px;}
.x36{left:482.566307px;}
.x4e{left:493.186303px;}
.x43{left:497.686301px;}
.x21{left:507.586297px;}
.x1a{left:511.546295px;}
.x3d{left:514.786294px;}
.x45{left:518.745693px;}
.x41{left:523.066291px;}
.x60{left:528.826288px;}
.x4b{left:542.866283px;}
.x1c{left:554.206278px;}
.x24{left:555.466278px;}
.x32{left:565.006274px;}
.x1b{left:568.426273px;}
.x53{left:570.406272px;}
.x54{left:572.566271px;}
.x26{left:584.806266px;}
.x3a{left:598.126261px;}
.x35{left:604.246258px;}
.x13{left:619.546252px;}
.x64{left:633.766246px;}
.x57{left:735.646206px;}
.x56{left:738.346205px;}
.x55{left:744.106202px;}
.x5b{left:748.786200px;}
.x2f{left:897.106141px;}
.x59{left:905.926138px;}
.x5c{left:971.266111px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:51.199980pt;}
.v1{vertical-align:153.599939pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.094688pt;}
.ls5{letter-spacing:0.294375pt;}
.ls2{letter-spacing:26.593269pt;}
.ls3{letter-spacing:33.633267pt;}
.ls1{letter-spacing:38.755398pt;}
.ls6{letter-spacing:59.134056pt;}
.ws4c{word-spacing:-79.091168pt;}
.ws4e{word-spacing:-71.039972pt;}
.ws2d{word-spacing:-66.559973pt;}
.ws53{word-spacing:-55.411178pt;}
.ws25{word-spacing:-52.479979pt;}
.ws64{word-spacing:-51.558354pt;}
.ws63{word-spacing:-51.263979pt;}
.ws13{word-spacing:-47.504621pt;}
.ws42{word-spacing:-43.801544pt;}
.ws66{word-spacing:-41.455343pt;}
.ws65{word-spacing:-38.399985pt;}
.ws1{word-spacing:-35.583986pt;}
.ws6f{word-spacing:-32.063987pt;}
.ws51{word-spacing:-31.897594pt;}
.ws50{word-spacing:-31.872135pt;}
.ws59{word-spacing:-31.590362pt;}
.ws57{word-spacing:-31.475196pt;}
.ws54{word-spacing:-31.462392pt;}
.ws55{word-spacing:-31.231986pt;}
.ws4f{word-spacing:-29.964792pt;}
.ws41{word-spacing:-29.712628pt;}
.ws31{word-spacing:-26.879989pt;}
.ws2e{word-spacing:-26.687989pt;}
.ws30{word-spacing:-25.604982pt;}
.ws28{word-spacing:-25.599990pt;}
.ws72{word-spacing:-25.459190pt;}
.ws27{word-spacing:-24.959990pt;}
.ws48{word-spacing:-23.884785pt;}
.ws58{word-spacing:-23.551997pt;}
.ws4b{word-spacing:-23.475221pt;}
.ws4a{word-spacing:-23.270332pt;}
.ws3c{word-spacing:-23.219136pt;}
.ws49{word-spacing:-23.078375pt;}
.ws67{word-spacing:-20.816632pt;}
.ws26{word-spacing:-18.559993pt;}
.ws2b{word-spacing:-16.639993pt;}
.ws68{word-spacing:-14.767354pt;}
.ws3b{word-spacing:-13.235159pt;}
.ws6a{word-spacing:-11.920635pt;}
.ws35{word-spacing:-9.830391pt;}
.ws56{word-spacing:-6.502352pt;}
.ws2a{word-spacing:-5.119998pt;}
.ws1d{word-spacing:-2.737944pt;}
.ws1c{word-spacing:-2.512641pt;}
.wsd{word-spacing:-2.160598pt;}
.ws5e{word-spacing:-1.872644pt;}
.ws43{word-spacing:-1.862812pt;}
.ws45{word-spacing:-1.728035pt;}
.ws16{word-spacing:-1.457949pt;}
.ws1e{word-spacing:-1.457769pt;}
.ws44{word-spacing:-1.241350pt;}
.ws11{word-spacing:-1.152000pt;}
.ws62{word-spacing:-1.007327pt;}
.ws23{word-spacing:-0.817952pt;}
.wsa{word-spacing:-0.721920pt;}
.ws1f{word-spacing:-0.703968pt;}
.ws5a{word-spacing:-0.512000pt;}
.ws12{word-spacing:-0.087674pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.128000pt;}
.ws14{word-spacing:0.289293pt;}
.wse{word-spacing:0.558121pt;}
.ws71{word-spacing:0.640000pt;}
.ws61{word-spacing:1.102039pt;}
.ws17{word-spacing:2.687999pt;}
.ws38{word-spacing:2.764771pt;}
.ws39{word-spacing:3.161616pt;}
.ws29{word-spacing:3.199999pt;}
.wsf{word-spacing:5.519399pt;}
.ws21{word-spacing:9.422110pt;}
.ws6e{word-spacing:9.830391pt;}
.ws3e{word-spacing:9.971259pt;}
.ws24{word-spacing:10.062107pt;}
.ws9{word-spacing:10.158117pt;}
.ws46{word-spacing:11.084841pt;}
.ws2c{word-spacing:11.519995pt;}
.ws3a{word-spacing:12.121470pt;}
.ws6d{word-spacing:14.656026pt;}
.ws10{word-spacing:15.119395pt;}
.ws7{word-spacing:16.895993pt;}
.ws22{word-spacing:17.102076pt;}
.ws20{word-spacing:18.382070pt;}
.ws6c{word-spacing:18.496025pt;}
.wsc{word-spacing:21.038031pt;}
.ws8{word-spacing:23.935990pt;}
.ws5d{word-spacing:24.782042pt;}
.ws52{word-spacing:25.075056pt;}
.ws5b{word-spacing:25.422039pt;}
.ws6b{word-spacing:31.936019pt;}
.ws70{word-spacing:34.559986pt;}
.ws40{word-spacing:35.022104pt;}
.ws15{word-spacing:36.607985pt;}
.ws18{word-spacing:37.247985pt;}
.ws2{word-spacing:39.807984pt;}
.ws60{word-spacing:43.982064pt;}
.wsb{word-spacing:44.559342pt;}
.ws5f{word-spacing:44.622062pt;}
.ws1b{word-spacing:45.902056pt;}
.ws47{word-spacing:52.671512pt;}
.ws5{word-spacing:53.631979pt;}
.ws5c{word-spacing:54.862016pt;}
.ws4{word-spacing:59.007976pt;}
.ws3f{word-spacing:59.342104pt;}
.ws3d{word-spacing:59.378026pt;}
.ws6{word-spacing:75.647970pt;}
.ws37{word-spacing:77.401396pt;}
.ws3{word-spacing:79.487968pt;}
.ws34{word-spacing:91.519963pt;}
.ws32{word-spacing:97.279961pt;}
.ws36{word-spacing:112.844928pt;}
.ws19{word-spacing:133.247947pt;}
.ws2f{word-spacing:147.839941pt;}
.ws33{word-spacing:208.639917pt;}
.ws69{word-spacing:320.063872pt;}
.ws4d{word-spacing:2072.191171pt;}
._24{margin-left:-8.863775pt;}
._3{margin-left:-7.295997pt;}
._36{margin-left:-6.286094pt;}
._13{margin-left:-4.607998pt;}
._1a{margin-left:-2.825283pt;}
._5{margin-left:-1.919999pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.663999pt;}
._7{width:2.559999pt;}
._35{width:3.721129pt;}
._2b{width:24.422700pt;}
._6{width:25.760852pt;}
._19{width:27.152331pt;}
._18{width:28.693035pt;}
._11{width:29.593465pt;}
._c{width:31.052832pt;}
._4{width:33.792017pt;}
._0{width:34.687986pt;}
._10{width:35.583986pt;}
._16{width:37.119985pt;}
._1d{width:38.483161pt;}
._12{width:39.423984pt;}
._1c{width:40.670663pt;}
._b{width:43.028646pt;}
._34{width:44.288425pt;}
._2c{width:47.769630pt;}
._1b{width:49.041473pt;}
._f{width:50.176257pt;}
._a{width:51.327979pt;}
._2d{width:53.092080pt;}
._e{width:54.026414pt;}
._22{width:55.273027pt;}
._1f{width:59.739069pt;}
._20{width:63.809813pt;}
._21{width:65.742066pt;}
._14{width:73.983970pt;}
._17{width:76.632513pt;}
._d{width:80.353417pt;}
._8{width:87.679965pt;}
._23{width:106.815803pt;}
._9{width:112.127955pt;}
._1e{width:131.673598pt;}
._15{width:169.855932pt;}
._33{width:213.224875pt;}
._32{width:285.964686pt;}
._30{width:345.279862pt;}
._2e{width:348.105145pt;}
._31{width:349.305034pt;}
._2f{width:389.823844pt;}
._25{width:657.663737pt;}
._26{width:1041.023584pt;}
._2a{width:1143.473889pt;}
._28{width:1261.567465pt;}
._29{width:2038.399185pt;}
._27{width:2086.911165pt;}
.fs9{font-size:42.879983pt;}
.fs7{font-size:53.119979pt;}
.fs8{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs1{font-size:95.999962pt;}
.fs5{font-size:106.879957pt;}
.fs2{font-size:122.879951pt;}
.fs0{font-size:127.999949pt;}
.fs3{font-size:149.119940pt;}
.fs4{font-size:170.879932pt;}
.fsa{font-size:255.999898pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:69.813623pt;}
.y6e{bottom:85.333617pt;}
.ye2{bottom:96.373612pt;}
.ycf{bottom:100.693610pt;}
.y3a{bottom:104.373609pt;}
.y52{bottom:105.813608pt;}
.yce{bottom:129.493599pt;}
.y6d{bottom:133.653597pt;}
.y51{bottom:134.613597pt;}
.y39{bottom:136.373596pt;}
.yc4{bottom:139.733595pt;}
.y78{bottom:150.773590pt;}
.yc3{bottom:152.533590pt;}
.y2f{bottom:156.853588pt;}
.ycd{bottom:158.293587pt;}
.y50{bottom:163.413585pt;}
.yc2{bottom:165.333585pt;}
.y15{bottom:166.613584pt;}
.ye1{bottom:176.053580pt;}
.y85{bottom:185.813576pt;}
.ycc{bottom:187.093576pt;}
.y2e{bottom:188.853575pt;}
.y77{bottom:189.173575pt;}
.y4f{bottom:192.213574pt;}
.y38{bottom:200.373571pt;}
.y14{bottom:205.013569pt;}
.y4e{bottom:221.013562pt;}
.y76{bottom:227.573560pt;}
.y8e{bottom:229.013559pt;}
.y6c{bottom:229.173559pt;}
.y84{bottom:230.613558pt;}
.y37{bottom:232.373558pt;}
.y2d{bottom:237.973555pt;}
.y13{bottom:243.413553pt;}
.y4d{bottom:249.813551pt;}
.ye0{bottom:252.853550pt;}
.y8d{bottom:261.013546pt;}
.yb8{bottom:262.293546pt;}
.y36{bottom:264.373545pt;}
.y24{bottom:270.613542pt;}
.y83{bottom:275.413541pt;}
.y2c{bottom:276.373540pt;}
.y6b{bottom:277.653540pt;}
.y4c{bottom:278.613539pt;}
.y12{bottom:281.813538pt;}
.y6{bottom:282.453538pt;}
.y75{bottom:292.853534pt;}
.y8c{bottom:293.013533pt;}
.y96{bottom:294.773533pt;}
.y35{bottom:296.373532pt;}
.y82{bottom:297.813532pt;}
.y23{bottom:307.413528pt;}
.y99{bottom:309.493527pt;}
.y2b{bottom:314.773525pt;}
.y5{bottom:320.853522pt;}
.y9e{bottom:335.093517pt;}
.yb0{bottom:335.573516pt;}
.y4b{bottom:336.213516pt;}
.y62{bottom:338.933515pt;}
.y81{bottom:342.613514pt;}
.y93{bottom:349.493511pt;}
.yd2{bottom:349.653511pt;}
.y2a{bottom:353.173509pt;}
.y8b{bottom:357.013508pt;}
.y74{bottom:358.293507pt;}
.y34{bottom:360.373507pt;}
.y98{bottom:360.693506pt;}
.y22{bottom:362.613506pt;}
.y4a{bottom:365.013505pt;}
.y61{bottom:370.933502pt;}
.y95{bottom:371.573502pt;}
.y6a{bottom:373.653501pt;}
.yb7{bottom:380.053499pt;}
.ya2{bottom:380.693498pt;}
.yd1{bottom:381.813498pt;}
.ybf{bottom:382.933497pt;}
.y80{bottom:387.413496pt;}
.y8a{bottom:389.013495pt;}
.y33{bottom:392.373494pt;}
.y49{bottom:393.813493pt;}
.ybe{bottom:395.733492pt;}
.yb6{bottom:396.053492pt;}
.y11{bottom:397.013492pt;}
.y4{bottom:397.653492pt;}
.y21{bottom:399.413491pt;}
.yc8{bottom:400.693490pt;}
.y60{bottom:402.933489pt;}
.y69{bottom:405.653488pt;}
.y97{bottom:411.893486pt;}
.yda{bottom:418.933483pt;}
.ydf{bottom:419.733483pt;}
.ye{bottom:421.813482pt;}
.y48{bottom:422.613482pt;}
.y73{bottom:423.733481pt;}
.y32{bottom:424.373481pt;}
.yae{bottom:425.173481pt;}
.y92{bottom:426.293480pt;}
.y7f{bottom:432.213478pt;}
.y5f{bottom:434.933477pt;}
.y10{bottom:435.413477pt;}
.y3{bottom:436.053476pt;}
.y20{bottom:436.213476pt;}
.y68{bottom:437.653476pt;}
.ya1{bottom:441.013474pt;}
.y29{bottom:445.813472pt;}
.y47{bottom:451.413470pt;}
.yd5{bottom:452.213470pt;}
.y89{bottom:453.013469pt;}
.yd9{bottom:455.573468pt;}
.y31{bottom:456.373468pt;}
.ycb{bottom:456.533468pt;}
.y5a{bottom:457.973467pt;}
.y9d{bottom:459.573467pt;}
.yb5{bottom:462.133466pt;}
.yab{bottom:462.293466pt;}
.yc1{bottom:464.373465pt;}
.y1a{bottom:466.133464pt;}
.y5e{bottom:466.933464pt;}
.y67{bottom:469.653463pt;}
.yad{bottom:469.973463pt;}
.y41{bottom:475.093461pt;}
.y7e{bottom:477.013460pt;}
.y91{bottom:477.493460pt;}
.ya6{bottom:478.773459pt;}
.yd{bottom:479.413459pt;}
.y46{bottom:480.213459pt;}
.y88{bottom:485.013457pt;}
.y72{bottom:489.173455pt;}
.y1f{bottom:491.413454pt;}
.yf{bottom:493.013453pt;}
.y59{bottom:496.373452pt;}
.y5d{bottom:498.933451pt;}
.y7d{bottom:499.413451pt;}
.y28{bottom:503.413449pt;}
.y45{bottom:509.013447pt;}
.yde{bottom:509.333447pt;}
.ybd{bottom:509.973447pt;}
.y9c{bottom:510.773446pt;}
.yd8{bottom:513.173445pt;}
.y40{bottom:513.653445pt;}
.yac{bottom:514.773445pt;}
.y87{bottom:517.013444pt;}
.y30{bottom:517.173444pt;}
.y66{bottom:517.333444pt;}
.y8{bottom:517.653444pt;}
.ya0{bottom:517.813444pt;}
.yb4{bottom:519.733443pt;}
.yc{bottom:522.613442pt;}
.ybc{bottom:522.773442pt;}
.y19{bottom:523.733441pt;}
.y94{bottom:525.173441pt;}
.y1e{bottom:528.213439pt;}
.y5c{bottom:530.933438pt;}
.yca{bottom:533.333437pt;}
.y58{bottom:534.773437pt;}
.ybb{bottom:535.573436pt;}
.yb3{bottom:535.733436pt;}
.y44{bottom:537.813436pt;}
.yaa{bottom:539.093435pt;}
.y27{bottom:541.813434pt;}
.y7c{bottom:544.213433pt;}
.yba{bottom:548.373431pt;}
.y3f{bottom:551.893430pt;}
.ydd{bottom:554.133429pt;}
.y90{bottom:554.293429pt;}
.y71{bottom:554.453429pt;}
.ya5{bottom:555.573428pt;}
.y7{bottom:556.053428pt;}
.y5b{bottom:562.773426pt;}
.ya4{bottom:564.853425pt;}
.y1d{bottom:565.013425pt;}
.y43{bottom:566.613424pt;}
.yd7{bottom:570.773422pt;}
.y57{bottom:573.173421pt;}
.yb{bottom:580.213419pt;}
.y18{bottom:581.333418pt;}
.yc9{bottom:584.533417pt;}
.y9b{bottom:587.573416pt;}
.y86{bottom:588.533415pt;}
.y7b{bottom:589.013415pt;}
.y65{bottom:589.333415pt;}
.yb2{bottom:590.133415pt;}
.y42{bottom:595.413413pt;}
.ydc{bottom:598.933411pt;}
.yc0{bottom:604.533409pt;}
.y3e{bottom:609.653407pt;}
.ya8{bottom:610.133407pt;}
.yb1{bottom:612.533406pt;}
.ya9{bottom:615.893404pt;}
.ya3{bottom:616.053404pt;}
.yc7{bottom:620.053403pt;}
.y1c{bottom:620.213403pt;}
.y64{bottom:621.333402pt;}
.y70{bottom:621.973402pt;}
.yd6{bottom:628.373399pt;}
.y8f{bottom:631.093398pt;}
.y7a{bottom:633.813397pt;}
.ya{bottom:634.293397pt;}
.y9a{bottom:638.773395pt;}
.y17{bottom:638.933395pt;}
.y55{bottom:640.373395pt;}
.y2{bottom:643.413393pt;}
.y3d{bottom:647.893392pt;}
.y56{bottom:649.973391pt;}
.y63{bottom:653.493389pt;}
.yd4{bottom:655.253389pt;}
.y1b{bottom:657.333388pt;}
.yc6{bottom:658.453387pt;}
.y26{bottom:659.093387pt;}
.y6f{bottom:660.373387pt;}
.ya7{bottom:661.333386pt;}
.y9{bottom:672.693382pt;}
.y54{bottom:678.773379pt;}
.y3b{bottom:685.973376pt;}
.y79{bottom:686.133376pt;}
.y3c{bottom:686.293376pt;}
.yaf{bottom:688.213375pt;}
.ydb{bottom:688.533375pt;}
.yd3{bottom:693.653373pt;}
.yd0{bottom:693.973373pt;}
.y9f{bottom:696.373372pt;}
.y16{bottom:696.533372pt;}
.yc5{bottom:696.853372pt;}
.y1{bottom:701.013370pt;}
.yb9{bottom:701.173370pt;}
.y25{bottom:720.693362pt;}
.h14{height:44.722482pt;}
.hf{height:55.402478pt;}
.h13{height:66.749973pt;}
.hd{height:68.189035pt;}
.h17{height:68.444973pt;}
.h9{height:76.559032pt;}
.h12{height:78.097469pt;}
.hc{height:87.421840pt;}
.h8{height:91.687463pt;}
.h15{height:95.922462pt;}
.ha{height:97.329649pt;}
.h2{height:100.124960pt;}
.h5{height:111.472455pt;}
.h7{height:116.562453pt;}
.h16{height:116.999953pt;}
.he{height:122.402764pt;}
.h3{height:128.159949pt;}
.h1{height:133.499947pt;}
.h10{height:136.304945pt;}
.h11{height:155.527438pt;}
.h18{height:170.624932pt;}
.h4{height:178.222429pt;}
.hb{height:287.099885pt;}
.h0{height:793.333333pt;}
.h6{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x65{left:90.867430pt;}
.x6c{left:100.596226pt;}
.x5a{left:122.547418pt;}
.xf{left:124.627417pt;}
.xe{left:130.387415pt;}
.xc{left:132.307414pt;}
.x33{left:139.987944pt;}
.x30{left:145.107942pt;}
.x16{left:147.507941pt;}
.xb{left:155.027938pt;}
.x4{left:162.547935pt;}
.x5{left:167.187933pt;}
.x58{left:168.787932pt;}
.x10{left:170.227932pt;}
.x15{left:173.907930pt;}
.x25{left:176.787929pt;}
.x62{left:177.747929pt;}
.x67{left:179.507928pt;}
.x63{left:181.747927pt;}
.xd{left:185.427926pt;}
.x29{left:196.467921pt;}
.x6a{left:200.307920pt;}
.x51{left:203.027919pt;}
.x6b{left:203.987918pt;}
.x34{left:206.067918pt;}
.x31{left:210.547916pt;}
.x2b{left:219.187912pt;}
.x69{left:224.947910pt;}
.x2a{left:226.227910pt;}
.x4d{left:229.267908pt;}
.xa{left:230.707908pt;}
.x6{left:233.267907pt;}
.x39{left:236.627905pt;}
.x4a{left:241.427903pt;}
.x4c{left:242.707903pt;}
.x8{left:244.467902pt;}
.x27{left:249.587900pt;}
.x4f{left:252.147899pt;}
.x61{left:256.947897pt;}
.x2{left:263.347895pt;}
.x2e{left:280.467888pt;}
.x5e{left:290.067884pt;}
.x28{left:292.467883pt;}
.x37{left:294.387882pt;}
.x3b{left:296.467881pt;}
.x11{left:297.427881pt;}
.x3c{left:299.827880pt;}
.x2c{left:301.267879pt;}
.x42{left:302.387879pt;}
.x3{left:306.227878pt;}
.x7{left:311.347875pt;}
.x1d{left:313.907874pt;}
.x50{left:315.187874pt;}
.x1f{left:317.907873pt;}
.x3e{left:319.347872pt;}
.x23{left:323.347871pt;}
.x48{left:326.867869pt;}
.x40{left:330.067868pt;}
.x49{left:331.827867pt;}
.x52{left:335.827866pt;}
.x5d{left:337.267865pt;}
.x66{left:339.347864pt;}
.x22{left:341.267863pt;}
.x5f{left:343.027863pt;}
.x1e{left:359.347856pt;}
.x14{left:362.547855pt;}
.x3f{left:376.147850pt;}
.x68{left:378.707849pt;}
.x2d{left:380.307848pt;}
.x12{left:382.387847pt;}
.x19{left:383.987846pt;}
.x38{left:386.387845pt;}
.x47{left:387.667845pt;}
.x17{left:395.827842pt;}
.x18{left:397.907841pt;}
.x44{left:401.587306pt;}
.x9{left:403.187839pt;}
.x46{left:405.427838pt;}
.x1{left:416.947833pt;}
.x20{left:419.347832pt;}
.x36{left:428.947828pt;}
.x4e{left:438.387825pt;}
.x43{left:442.387823pt;}
.x21{left:451.187820pt;}
.x1a{left:454.707818pt;}
.x3d{left:457.587817pt;}
.x45{left:461.107282pt;}
.x41{left:464.947814pt;}
.x60{left:470.067812pt;}
.x4b{left:482.547807pt;}
.x1c{left:492.627803pt;}
.x24{left:493.747803pt;}
.x32{left:502.227799pt;}
.x1b{left:505.267798pt;}
.x53{left:507.027797pt;}
.x54{left:508.947796pt;}
.x26{left:519.827792pt;}
.x3a{left:531.667787pt;}
.x35{left:537.107785pt;}
.x13{left:550.707780pt;}
.x64{left:563.347775pt;}
.x57{left:653.907738pt;}
.x56{left:656.307737pt;}
.x55{left:661.427735pt;}
.x5b{left:665.587734pt;}
.x2f{left:797.427681pt;}
.x59{left:805.267678pt;}
.x5c{left:863.347655pt;}
}




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