
    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_39db71d524c07afcccda1135.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_8b3892400c15a2b770850e08.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_6435feb167dad469b2c1a12d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_eaed12ed6c622b84efd455f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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;}
.m9{transform:matrix(0.000000,-0.249525,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249525,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249525,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249532,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249531,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.046500px;}
.ls17{letter-spacing:0.049014px;}
.ls11{letter-spacing:0.205740px;}
.ls9{letter-spacing:0.383940px;}
.lsb{letter-spacing:0.771124px;}
.ls16{letter-spacing:0.927120px;}
.ls5{letter-spacing:1.105320px;}
.lsf{letter-spacing:3.269459px;}
.ls19{letter-spacing:3.812518px;}
.ls7{letter-spacing:3.990838px;}
.lsc{letter-spacing:4.712218px;}
.ls18{letter-spacing:5.976598px;}
.ls14{letter-spacing:6.154978px;}
.ls1a{letter-spacing:7.419297px;}
.lse{letter-spacing:7.597737px;}
.ls15{letter-spacing:9.761876px;}
.lsa{letter-spacing:11.204636px;}
.ls8{letter-spacing:15.532854px;}
.lsd{letter-spacing:23.468031px;}
.ls2{letter-spacing:68.107173px;}
.ls10{letter-spacing:143.754482px;}
.ls4{letter-spacing:224.651310px;}
.ls12{letter-spacing:294.517022px;}
.ls13{letter-spacing:352.224999px;}
.ls1{letter-spacing:353.858858px;}
.ls3{letter-spacing:568.038373px;}
.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;}
}
.ws3{word-spacing:-61.081176px;}
.ws4{word-spacing:-57.170248px;}
.ws6{word-spacing:-48.864940px;}
.ws5c{word-spacing:-40.941840px;}
.ws7f{word-spacing:-40.604401px;}
.ws8{word-spacing:-40.557901px;}
.ws12{word-spacing:-39.440504px;}
.ws1{word-spacing:-36.648705px;}
.ws6f{word-spacing:-32.943691px;}
.ws5{word-spacing:-32.737951px;}
.ws22{word-spacing:-31.517404px;}
.ws21{word-spacing:-30.796024px;}
.ws1f{word-spacing:-30.074645px;}
.wsd{word-spacing:-29.353265px;}
.ws9{word-spacing:-28.631885px;}
.ws1c{word-spacing:-28.133689px;}
.ws7{word-spacing:-28.087189px;}
.ws1e{word-spacing:-27.910506px;}
.ws2b{word-spacing:-27.189186px;}
.ws32{word-spacing:-26.467806px;}
.ws5d{word-spacing:-26.386028px;}
.ws35{word-spacing:-25.746427px;}
.ws2{word-spacing:-25.379990px;}
.ws69{word-spacing:-25.318654px;}
.ws1d{word-spacing:-25.025047px;}
.ws74{word-spacing:-24.597334px;}
.ws3b{word-spacing:-24.303667px;}
.ws83{word-spacing:-23.875954px;}
.ws6c{word-spacing:-23.154634px;}
.ws3c{word-spacing:-22.860908px;}
.ws19{word-spacing:-22.671711px;}
.ws6e{word-spacing:-22.433255px;}
.ws1a{word-spacing:-22.139528px;}
.ws85{word-spacing:-21.711935px;}
.wsb{word-spacing:-21.418148px;}
.ws68{word-spacing:-20.990555px;}
.ws45{word-spacing:-20.696769px;}
.ws86{word-spacing:-20.521715px;}
.ws7a{word-spacing:-20.269236px;}
.ws2e{word-spacing:-19.975389px;}
.ws50{word-spacing:-19.768072px;}
.ws67{word-spacing:-19.547856px;}
.ws3a{word-spacing:-19.254009px;}
.ws2f{word-spacing:-19.046692px;}
.ws65{word-spacing:-18.826536px;}
.ws46{word-spacing:-18.532629px;}
.ws2c{word-spacing:-18.325313px;}
.ws7b{word-spacing:-18.105156px;}
.ws40{word-spacing:-17.811250px;}
.ws20{word-spacing:-17.603933px;}
.ws80{word-spacing:-17.383837px;}
.ws2d{word-spacing:-17.089870px;}
.ws23{word-spacing:-16.882553px;}
.ws44{word-spacing:-16.368490px;}
.wsa{word-spacing:-16.161174px;}
.ws7c{word-spacing:-15.973794px;}
.ws6a{word-spacing:-15.941077px;}
.ws29{word-spacing:-15.647111px;}
.ws33{word-spacing:-15.439794px;}
.ws6d{word-spacing:-15.252414px;}
.ws8c{word-spacing:-15.219758px;}
.ws48{word-spacing:-14.925731px;}
.ws2a{word-spacing:-14.718474px;}
.ws84{word-spacing:-14.531094px;}
.ws63{word-spacing:-14.498378px;}
.ws7e{word-spacing:-14.211714px;}
.ws39{word-spacing:-14.204351px;}
.ws31{word-spacing:-13.997094px;}
.ws7d{word-spacing:-13.809714px;}
.ws81{word-spacing:-13.777058px;}
.ws41{word-spacing:-13.482971px;}
.ws36{word-spacing:-13.275715px;}
.ws87{word-spacing:-13.088395px;}
.ws77{word-spacing:-13.055678px;}
.ws26{word-spacing:-12.761592px;}
.ws4c{word-spacing:-12.554335px;}
.ws73{word-spacing:-12.367015px;}
.ws88{word-spacing:-12.334359px;}
.ws27{word-spacing:-12.040212px;}
.ws3d{word-spacing:-11.832955px;}
.ws72{word-spacing:-11.645695px;}
.ws60{word-spacing:-11.318832px;}
.ws43{word-spacing:-11.111576px;}
.ws8b{word-spacing:-10.924316px;}
.ws4e{word-spacing:-10.597453px;}
.ws4f{word-spacing:-9.876073px;}
.ws1b{word-spacing:-9.668816px;}
.ws66{word-spacing:-9.481616px;}
.ws62{word-spacing:-9.154693px;}
.ws30{word-spacing:-8.947436px;}
.ws82{word-spacing:-8.760296px;}
.ws76{word-spacing:-8.727580px;}
.ws5f{word-spacing:-8.433373px;}
.wsc{word-spacing:-8.226057px;}
.ws5e{word-spacing:-7.711994px;}
.ws5b{word-spacing:-7.504677px;}
.ws70{word-spacing:-7.284881px;}
.ws6b{word-spacing:-6.596217px;}
.ws38{word-spacing:-6.269234px;}
.ws47{word-spacing:-6.061918px;}
.ws3f{word-spacing:-5.340538px;}
.ws79{word-spacing:-5.153518px;}
.ws64{word-spacing:-4.432138px;}
.ws8a{word-spacing:-4.399482px;}
.ws4a{word-spacing:-4.105095px;}
.ws37{word-spacing:-3.897778px;}
.ws78{word-spacing:-3.710819px;}
.ws89{word-spacing:-2.989439px;}
.ws28{word-spacing:-2.455019px;}
.ws49{word-spacing:-1.733639px;}
.ws42{word-spacing:-1.012260px;}
.ws24{word-spacing:-0.498197px;}
.wse{word-spacing:0.000000px;}
.ws25{word-spacing:0.223183px;}
.ws75{word-spacing:0.617280px;}
.ws61{word-spacing:1.151880px;}
.ws4d{word-spacing:1.873259px;}
.ws71{word-spacing:2.059979px;}
.ws3e{word-spacing:6.201478px;}
.ws34{word-spacing:7.436680px;}
.ws4b{word-spacing:8.365617px;}
.ws18{word-spacing:24.244070px;}
.ws51{word-spacing:26.618766px;}
.wsf{word-spacing:31.458467px;}
.ws57{word-spacing:42.488159px;}
.ws56{word-spacing:53.308555px;}
.ws53{word-spacing:64.850150px;}
.ws55{word-spacing:87.933341px;}
.ws54{word-spacing:99.474937px;}
.ws52{word-spacing:111.016532px;}
.ws5a{word-spacing:143.444763px;}
.ws59{word-spacing:150.658560px;}
.ws14{word-spacing:158.425017px;}
.ws11{word-spacing:203.873198px;}
.ws58{word-spacing:412.128931px;}
.ws13{word-spacing:413.079915px;}
.ws15{word-spacing:457.806897px;}
.ws16{word-spacing:483.055487px;}
.ws10{word-spacing:494.598282px;}
.ws17{word-spacing:556.637057px;}
.ws0{word-spacing:874.054930px;}
._5a{margin-left:-143.032683px;}
._9{margin-left:-42.056683px;}
._a{margin-left:-38.322165px;}
._c{margin-left:-34.539212px;}
._e{margin-left:-31.101108px;}
._10{margin-left:-29.835288px;}
._8{margin-left:-28.222969px;}
._15{margin-left:-27.055818px;}
._13{margin-left:-25.520059px;}
._16{margin-left:-24.295464px;}
._7{margin-left:-23.045751px;}
._11{margin-left:-21.279419px;}
._22{margin-left:-19.966756px;}
._14{margin-left:-18.874060px;}
._b{margin-left:-17.522539px;}
._f{margin-left:-15.880314px;}
._18{margin-left:-14.864720px;}
._0{margin-left:-13.600975px;}
._21{margin-left:-12.478277px;}
._42{margin-left:-11.458050px;}
._17{margin-left:-10.392488px;}
._6{margin-left:-8.873696px;}
._5{margin-left:-7.172997px;}
._4{margin-left:-6.019438px;}
._3{margin-left:-4.682278px;}
._d{margin-left:-3.622139px;}
._2{margin-left:-1.927619px;}
._1{width:1.393979px;}
._12{width:3.159685px;}
._19{width:4.240957px;}
._1a{width:5.707109px;}
._1c{width:6.803448px;}
._1b{width:7.880536px;}
._27{width:9.470252px;}
._1e{width:10.608313px;}
._24{width:12.222070px;}
._1d{width:13.385565px;}
._28{width:15.347101px;}
._23{width:16.820271px;}
._2e{width:17.958809px;}
._29{width:19.434657px;}
._1f{width:20.499467px;}
._2a{width:21.621517px;}
._2c{width:22.771179px;}
._5f{width:23.776519px;}
._2d{width:24.793785px;}
._26{width:26.475988px;}
._2f{width:27.561371px;}
._25{width:29.181068px;}
._5e{width:32.772860px;}
._5d{width:33.894798px;}
._2b{width:36.220966px;}
._49{width:62.017322px;}
._4f{width:91.539409px;}
._32{width:96.866901px;}
._37{width:99.031100px;}
._58{width:107.488149px;}
._47{width:108.863551px;}
._4b{width:110.572696px;}
._4d{width:113.901400px;}
._45{width:120.105898px;}
._35{width:121.596071px;}
._4a{width:125.442995px;}
._33{width:129.381368px;}
._36{width:132.624427px;}
._3f{width:143.754482px;}
._41{width:144.887822px;}
._34{width:149.414594px;}
._53{width:160.234990px;}
._44{width:171.776585px;}
._48{width:174.358434px;}
._38{width:178.728435px;}
._39{width:183.318181px;}
._3b{width:194.654036px;}
._54{width:197.834974px;}
._52{width:207.487495px;}
._40{width:215.938728px;}
._3c{width:227.557944px;}
._46{width:232.867569px;}
._4c{width:237.867499px;}
._5b{width:251.509844px;}
._4e{width:262.734671px;}
._59{width:275.117373px;}
._55{width:292.314492px;}
._43{width:296.798153px;}
._57{width:316.601630px;}
._3e{width:317.973378px;}
._50{width:337.286230px;}
._3a{width:380.916331px;}
._31{width:688.287751px;}
._5c{width:711.355836px;}
._51{width:727.325285px;}
._56{width:749.962165px;}
._3d{width:760.091610px;}
._20{width:808.985676px;}
._30{width:1259.685636px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.423429px;}
.fs8{font-size:33.839986px;}
.fs5{font-size:36.545745px;}
.fs4{font-size:45.343422px;}
.fs0{font-size:50.759980px;}
.fs6{font-size:56.174378px;}
.fs7{font-size:62.263175px;}
.fs3{font-size:67.679973px;}
.fs2{font-size:79.183168px;}
.fs1{font-size:84.599966px;}
.y0{bottom:0.000000px;}
.y4{bottom:187.739925px;}
.y3{bottom:202.319919px;}
.y12c{bottom:208.079962px;}
.y163{bottom:210.779916px;}
.y2{bottom:216.899913px;}
.y99{bottom:218.699913px;}
.yb7{bottom:219.239912px;}
.y105{bottom:220.139912px;}
.y12b{bottom:221.039957px;}
.y84{bottom:221.579911px;}
.y162{bottom:223.919910px;}
.yea{bottom:227.339909px;}
.y1{bottom:231.479907px;}
.y12a{bottom:233.999951px;}
.y98{bottom:234.899906px;}
.yb6{bottom:235.619906px;}
.y9c{bottom:236.159906px;}
.y161{bottom:236.879905px;}
.y83{bottom:237.779905px;}
.y57{bottom:239.399904px;}
.ye9{bottom:243.539903px;}
.y129{bottom:247.139946px;}
.y160{bottom:249.839900px;}
.y97{bottom:251.099900px;}
.yb5{bottom:251.819899px;}
.y9b{bottom:252.539899px;}
.y82{bottom:253.979898px;}
.y56{bottom:255.779898px;}
.ye8{bottom:259.739896px;}
.y128{bottom:259.919941px;}
.y100{bottom:262.439895px;}
.y15f{bottom:262.799895px;}
.y96{bottom:267.299893px;}
.yb4{bottom:268.019893px;}
.y104{bottom:268.739893px;}
.y81{bottom:269.999892px;}
.y55{bottom:271.979891px;}
.y127{bottom:272.879936px;}
.y15e{bottom:275.759890px;}
.ye7{bottom:275.939890px;}
.y23{bottom:279.539888px;}
.y9a{bottom:280.079888px;}
.y164{bottom:280.799888px;}
.yb3{bottom:284.219886px;}
.y103{bottom:284.939886px;}
.y126{bottom:286.019931px;}
.y80{bottom:286.379885px;}
.y54{bottom:288.179885px;}
.y15d{bottom:288.719885px;}
.ye6{bottom:292.139883px;}
.y95{bottom:295.019882px;}
.y22{bottom:295.739882px;}
.y125{bottom:298.799925px;}
.yb2{bottom:300.599880px;}
.yff{bottom:301.139880px;}
.y15c{bottom:301.679879px;}
.y7f{bottom:302.579879px;}
.y53{bottom:304.379878px;}
.y21{bottom:311.939875px;}
.y124{bottom:311.939920px;}
.y15b{bottom:314.819874px;}
.yb1{bottom:316.619873px;}
.yfe{bottom:317.519873px;}
.y7e{bottom:318.779872px;}
.y52{bottom:320.579872px;}
.y123{bottom:324.899915px;}
.ye5{bottom:325.979870px;}
.y15a{bottom:327.599869px;}
.y20{bottom:328.139869px;}
.yb0{bottom:332.819867px;}
.y94{bottom:333.539867px;}
.y7d{bottom:334.979866px;}
.y51{bottom:336.779865px;}
.y122{bottom:337.679910px;}
.ye4{bottom:338.759864px;}
.y159{bottom:340.559864px;}
.ye3{bottom:343.619863px;}
.y1f{bottom:344.339862px;}
.yaf{bottom:349.019860px;}
.y93{bottom:349.739860px;}
.y121{bottom:350.819905px;}
.y7c{bottom:351.359859px;}
.y50{bottom:352.979859px;}
.y158{bottom:353.699859px;}
.y1e{bottom:360.539856px;}
.ye2{bottom:360.899856px;}
.y120{bottom:363.779899px;}
.yae{bottom:365.399854px;}
.y92{bottom:365.939854px;}
.y157{bottom:366.479853px;}
.y7b{bottom:367.379853px;}
.y4f{bottom:369.179852px;}
.ye1{bottom:374.039850px;}
.y11f{bottom:376.739894px;}
.y1d{bottom:376.919849px;}
.y156{bottom:379.619848px;}
.yad{bottom:381.599847px;}
.y91{bottom:382.319847px;}
.y7a{bottom:383.579847px;}
.y4e{bottom:385.559846px;}
.ye0{bottom:386.819845px;}
.y11e{bottom:389.699889px;}
.y155{bottom:392.579843px;}
.y1c{bottom:393.119843px;}
.yac{bottom:397.799841px;}
.y90{bottom:398.519841px;}
.y79{bottom:399.779840px;}
.y4d{bottom:401.579839px;}
.y11d{bottom:402.659884px;}
.y154{bottom:405.359838px;}
.ydf{bottom:412.919835px;}
.yab{bottom:413.819834px;}
.y8f{bottom:414.719834px;}
.y11c{bottom:415.619879px;}
.y78{bottom:416.159834px;}
.y4c{bottom:417.779833px;}
.y153{bottom:418.499833px;}
.y1b{bottom:420.479832px;}
.yde{bottom:425.699830px;}
.ydd{bottom:425.699875px;}
.y11b{bottom:428.579874px;}
.yaa{bottom:430.199828px;}
.y8e{bottom:430.739828px;}
.y152{bottom:431.459827px;}
.y77{bottom:432.359827px;}
.y4b{bottom:433.979826px;}
.ydc{bottom:438.839869px;}
.y11a{bottom:441.719868px;}
.y151{bottom:444.419822px;}
.ya9{bottom:446.399821px;}
.y8d{bottom:447.119821px;}
.y76{bottom:448.559821px;}
.y4a{bottom:450.359820px;}
.ydb{bottom:451.799819px;}
.y1a{bottom:453.419819px;}
.y119{bottom:454.499818px;}
.y150{bottom:457.379772px;}
.ya8{bottom:462.599815px;}
.y8c{bottom:463.319815px;}
.y75{bottom:464.579814px;}
.y49{bottom:466.559813px;}
.y118{bottom:467.459813px;}
.y14f{bottom:470.339767px;}
.yda{bottom:477.719809px;}
.ya7{bottom:478.799808px;}
.y8b{bottom:479.519808px;}
.y117{bottom:480.599808px;}
.y74{bottom:480.959808px;}
.y48{bottom:482.759807px;}
.y14e{bottom:483.299762px;}
.yd9{bottom:490.679804px;}
.y19{bottom:492.479803px;}
.y116{bottom:493.379803px;}
.ya6{bottom:495.179802px;}
.y8a{bottom:495.719802px;}
.y14d{bottom:496.259756px;}
.y73{bottom:497.159801px;}
.y47{bottom:498.779800px;}
.yd8{bottom:503.639799px;}
.y115{bottom:506.519797px;}
.y18{bottom:508.679797px;}
.y14c{bottom:509.399751px;}
.ya5{bottom:511.199796px;}
.y89{bottom:512.099795px;}
.y72{bottom:513.359795px;}
.y46{bottom:515.159794px;}
.yd7{bottom:516.599793px;}
.y114{bottom:519.479792px;}
.y14b{bottom:522.179746px;}
.y17{bottom:524.879790px;}
.ya4{bottom:527.399789px;}
.y88{bottom:528.119789px;}
.yd6{bottom:529.379788px;}
.y71{bottom:529.559788px;}
.y45{bottom:531.359787px;}
.y113{bottom:532.259787px;}
.y14a{bottom:535.139741px;}
.y16{bottom:541.079784px;}
.yd5{bottom:542.519783px;}
.ya3{bottom:543.599783px;}
.y87{bottom:544.319782px;}
.y112{bottom:545.399782px;}
.y70{bottom:545.939782px;}
.y44{bottom:547.559781px;}
.y149{bottom:548.279736px;}
.yd4{bottom:555.479778px;}
.y15{bottom:557.279777px;}
.y111{bottom:558.179777px;}
.ya2{bottom:559.979776px;}
.y86{bottom:560.519776px;}
.y148{bottom:561.059731px;}
.y6f{bottom:561.959775px;}
.y43{bottom:563.759774px;}
.yd3{bottom:568.439773px;}
.y110{bottom:571.319771px;}
.y14{bottom:573.479771px;}
.y147{bottom:574.199725px;}
.ya1{bottom:576.179770px;}
.yfd{bottom:576.899769px;}
.y6e{bottom:578.159769px;}
.y42{bottom:580.139768px;}
.yd2{bottom:581.399767px;}
.y10f{bottom:584.279766px;}
.y146{bottom:587.159720px;}
.y85{bottom:588.239765px;}
.y13{bottom:589.679764px;}
.ya0{bottom:592.199763px;}
.yfc{bottom:593.099763px;}
.y6d{bottom:594.359762px;}
.y10e{bottom:597.059761px;}
.y145{bottom:599.939715px;}
.yd1{bottom:607.319757px;}
.y9f{bottom:608.399757px;}
.yfb{bottom:609.119756px;}
.y10d{bottom:610.199756px;}
.y6c{bottom:610.739756px;}
.y144{bottom:613.079710px;}
.y41{bottom:613.799754px;}
.y12{bottom:617.039753px;}
.y40{bottom:618.659753px;}
.yd0{bottom:620.279752px;}
.y10c{bottom:623.159751px;}
.yfa{bottom:625.319750px;}
.y143{bottom:625.859705px;}
.y3f{bottom:626.579749px;}
.y6b{bottom:626.939749px;}
.y3e{bottom:631.439747px;}
.ycf{bottom:633.419747px;}
.y9e{bottom:635.939746px;}
.y10b{bottom:636.119746px;}
.y142{bottom:638.999699px;}
.y3d{bottom:640.619744px;}
.yf9{bottom:641.699743px;}
.y6a{bottom:642.959743px;}
.yce{bottom:646.199742px;}
.y10a{bottom:649.079740px;}
.y141{bottom:651.959694px;}
.y3c{bottom:655.199738px;}
.yf8{bottom:657.899737px;}
.y69{bottom:659.159736px;}
.y109{bottom:662.039735px;}
.y140{bottom:664.739689px;}
.y9d{bottom:669.059732px;}
.y3b{bottom:669.779732px;}
.ycd{bottom:672.299731px;}
.yf7{bottom:674.099730px;}
.y108{bottom:674.999730px;}
.y68{bottom:675.539730px;}
.y13f{bottom:677.879684px;}
.y39{bottom:684.359681px;}
.y3a{bottom:684.359726px;}
.ycc{bottom:685.079726px;}
.y102{bottom:685.439726px;}
.y11{bottom:687.059725px;}
.yf6{bottom:690.299724px;}
.y13e{bottom:690.839679px;}
.y67{bottom:691.739723px;}
.y10{bottom:693.359723px;}
.ycb{bottom:698.219721px;}
.y38{bottom:698.939675px;}
.y107{bottom:700.199720px;}
.yf{bottom:703.259719px;}
.y13d{bottom:703.799673px;}
.yf5{bottom:706.499717px;}
.y66{bottom:707.939717px;}
.yca{bottom:711.179716px;}
.y37{bottom:713.339670px;}
.y13c{bottom:716.759668px;}
.ye{bottom:719.459712px;}
.yf4{bottom:722.699711px;}
.y65{bottom:724.139710px;}
.yd{bottom:725.939710px;}
.y36{bottom:728.099664px;}
.y13b{bottom:729.719663px;}
.yc{bottom:735.479706px;}
.yf3{bottom:738.899704px;}
.y64{bottom:740.339704px;}
.yb{bottom:741.959703px;}
.y35{bottom:742.679703px;}
.yc5{bottom:743.039697px;}
.yc1{bottom:743.039703px;}
.yc4{bottom:743.039731px;}
.yc6{bottom:743.039765px;}
.yc8{bottom:743.039776px;}
.yc7{bottom:743.039798px;}
.yc9{bottom:743.039821px;}
.yf2{bottom:755.099698px;}
.y13a{bottom:755.639698px;}
.y63{bottom:756.539697px;}
.y33{bottom:757.259697px;}
.y34{bottom:762.839695px;}
.yc0{bottom:765.899694px;}
.y139{bottom:768.779692px;}
.yf1{bottom:771.479691px;}
.y32{bottom:772.019691px;}
.y62{bottom:772.739691px;}
.y9{bottom:777.779689px;}
.ybf{bottom:778.859688px;}
.yc2{bottom:779.579688px;}
.y138{bottom:781.559687px;}
.yc3{bottom:783.179687px;}
.ya{bottom:785.699686px;}
.y31{bottom:786.239686px;}
.y2f{bottom:786.419685px;}
.yf0{bottom:787.679685px;}
.y61{bottom:788.939684px;}
.ybe{bottom:791.639683px;}
.y30{bottom:791.819683px;}
.y137{bottom:794.519682px;}
.y106{bottom:799.019680px;}
.y2e{bottom:800.999680px;}
.yef{bottom:803.699679px;}
.ybd{bottom:804.779678px;}
.y60{bottom:805.319678px;}
.y136{bottom:807.659677px;}
.y2d{bottom:815.759674px;}
.ybc{bottom:817.739673px;}
.yee{bottom:819.899672px;}
.y135{bottom:820.439672px;}
.y5f{bottom:821.519671px;}
.y165{bottom:825.479670px;}
.y2c{bottom:830.339668px;}
.ybb{bottom:831.419667px;}
.y134{bottom:833.579667px;}
.yed{bottom:836.279665px;}
.y5e{bottom:837.539665px;}
.y101{bottom:844.019662px;}
.yba{bottom:844.739662px;}
.y2b{bottom:844.919662px;}
.y133{bottom:846.539661px;}
.yec{bottom:852.479659px;}
.y5d{bottom:853.739659px;}
.y8{bottom:854.279658px;}
.yb9{bottom:859.319656px;}
.y2a{bottom:860.219656px;}
.y5c{bottom:870.119652px;}
.y132{bottom:872.459651px;}
.yb8{bottom:873.719651px;}
.y29{bottom:875.159650px;}
.y7{bottom:876.959649px;}
.yeb{bottom:880.019648px;}
.y131{bottom:885.419646px;}
.y5b{bottom:886.319645px;}
.y28{bottom:888.479645px;}
.y130{bottom:898.379641px;}
.y6{bottom:899.639640px;}
.y5a{bottom:902.519639px;}
.y27{bottom:903.059639px;}
.y12f{bottom:911.339635px;}
.y26{bottom:917.639633px;}
.y59{bottom:918.719633px;}
.y12e{bottom:924.299630px;}
.y58{bottom:934.919626px;}
.y12d{bottom:937.259625px;}
.y25{bottom:951.119620px;}
.y5{bottom:964.799614px;}
.y24{bottom:969.299612px;}
.h11{height:19.735408px;}
.hb{height:22.934522px;}
.he{height:23.704695px;}
.h7{height:25.375024px;}
.h10{height:30.478581px;}
.hf{height:31.483567px;}
.hd{height:34.401783px;}
.h2{height:35.244478px;}
.h6{height:37.815705px;}
.h8{height:39.003889px;}
.h1{height:42.333030px;}
.hc{height:43.053030px;}
.ha{height:43.231560px;}
.h9{height:46.848553px;}
.h5{height:56.444040px;}
.h4{height:66.037525px;}
.h3{height:70.555050px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:218.879912px;}
.x11{left:220.859348px;}
.x41{left:222.479911px;}
.x10{left:224.099910px;}
.x38{left:225.179707px;}
.x26{left:226.439909px;}
.x39{left:228.058946px;}
.x2d{left:229.859908px;}
.x25{left:234.719304px;}
.x4{left:238.319475px;}
.x2{left:240.119904px;}
.x3{left:242.999903px;}
.x48{left:244.619902px;}
.x29{left:246.599837px;}
.x49{left:251.819899px;}
.x7{left:267.479893px;}
.xe{left:268.919892px;}
.xf{left:273.599891px;}
.x12{left:278.459889px;}
.x13{left:283.139887px;}
.x2a{left:295.379882px;}
.x2b{left:299.879880px;}
.x40{left:308.699877px;}
.x2c{left:325.079870px;}
.x43{left:337.859865px;}
.x8{left:340.559864px;}
.x44{left:345.059862px;}
.x16{left:347.759861px;}
.x9{left:349.199860px;}
.x17{left:350.639860px;}
.x2e{left:352.619859px;}
.x42{left:359.092882px;}
.x18{left:360.899856px;}
.x2f{left:362.699855px;}
.x47{left:372.958622px;}
.x45{left:379.079142px;}
.x19{left:385.739846px;}
.x28{left:387.899845px;}
.x1a{left:389.339844px;}
.x15{left:391.677190px;}
.x14{left:398.518945px;}
.x46{left:402.295540px;}
.x1b{left:404.999838px;}
.x1c{left:407.879837px;}
.x30{left:411.119836px;}
.x31{left:419.759832px;}
.x1d{left:421.199832px;}
.x3b{left:426.059830px;}
.x5{left:430.739206px;}
.x27{left:451.619369px;}
.x3a{left:459.359816px;}
.x32{left:481.859807px;}
.x6{left:487.799805px;}
.x33{left:491.399803px;}
.x3c{left:493.019798px;}
.x1e{left:500.579800px;}
.xa{left:507.959797px;}
.x1f{left:511.559795px;}
.x20{left:514.259794px;}
.xb{left:516.599793px;}
.x34{left:518.039793px;}
.x4a{left:527.219789px;}
.x35{left:531.179788px;}
.x4b{left:534.059786px;}
.x21{left:539.459784px;}
.x22{left:542.339783px;}
.x23{left:552.419779px;}
.x36{left:570.059772px;}
.x24{left:588.059765px;}
.x3d{left:609.299602px;}
.xc{left:642.419743px;}
.x3e{left:647.999533px;}
.xd{left:651.059740px;}
.x37{left:678.779728px;}
.x3f{left:686.699463px;}
@media print{
.v1{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.041333pt;}
.ls17{letter-spacing:0.043568pt;}
.ls11{letter-spacing:0.182880pt;}
.ls9{letter-spacing:0.341280pt;}
.lsb{letter-spacing:0.685444pt;}
.ls16{letter-spacing:0.824106pt;}
.ls5{letter-spacing:0.982506pt;}
.lsf{letter-spacing:2.906186pt;}
.ls19{letter-spacing:3.388905pt;}
.ls7{letter-spacing:3.547412pt;}
.lsc{letter-spacing:4.188638pt;}
.ls18{letter-spacing:5.312531pt;}
.ls14{letter-spacing:5.471091pt;}
.ls1a{letter-spacing:6.594931pt;}
.lse{letter-spacing:6.753544pt;}
.ls15{letter-spacing:8.677223pt;}
.lsa{letter-spacing:9.959676pt;}
.ls8{letter-spacing:13.806981pt;}
.lsd{letter-spacing:20.860472pt;}
.ls2{letter-spacing:60.539709pt;}
.ls10{letter-spacing:127.781762pt;}
.ls4{letter-spacing:199.690053pt;}
.ls12{letter-spacing:261.792909pt;}
.ls13{letter-spacing:313.088888pt;}
.ls1{letter-spacing:314.541208pt;}
.ls3{letter-spacing:504.922998pt;}
.ws3{word-spacing:-54.294378pt;}
.ws4{word-spacing:-50.817998pt;}
.ws6{word-spacing:-43.435503pt;}
.ws5c{word-spacing:-36.392747pt;}
.ws7f{word-spacing:-36.092800pt;}
.ws8{word-spacing:-36.051467pt;}
.ws12{word-spacing:-35.058226pt;}
.ws1{word-spacing:-32.576627pt;}
.ws6f{word-spacing:-29.283280pt;}
.ws5{word-spacing:-29.100401pt;}
.ws22{word-spacing:-28.015470pt;}
.ws21{word-spacing:-27.374244pt;}
.ws1f{word-spacing:-26.733018pt;}
.wsd{word-spacing:-26.091791pt;}
.ws9{word-spacing:-25.450565pt;}
.ws1c{word-spacing:-25.007723pt;}
.ws7{word-spacing:-24.966390pt;}
.ws1e{word-spacing:-24.809338pt;}
.ws2b{word-spacing:-24.168165pt;}
.ws32{word-spacing:-23.526939pt;}
.ws5d{word-spacing:-23.454247pt;}
.ws35{word-spacing:-22.885712pt;}
.ws2{word-spacing:-22.559991pt;}
.ws69{word-spacing:-22.505470pt;}
.ws1d{word-spacing:-22.244486pt;}
.ws74{word-spacing:-21.864297pt;}
.ws3b{word-spacing:-21.603260pt;}
.ws83{word-spacing:-21.223070pt;}
.ws6c{word-spacing:-20.581897pt;}
.ws3c{word-spacing:-20.320807pt;}
.ws19{word-spacing:-20.152632pt;}
.ws6e{word-spacing:-19.940671pt;}
.ws1a{word-spacing:-19.679580pt;}
.ws85{word-spacing:-19.299498pt;}
.wsb{word-spacing:-19.038354pt;}
.ws68{word-spacing:-18.658271pt;}
.ws45{word-spacing:-18.397128pt;}
.ws86{word-spacing:-18.241525pt;}
.ws7a{word-spacing:-18.017098pt;}
.ws2e{word-spacing:-17.755901pt;}
.ws50{word-spacing:-17.571620pt;}
.ws67{word-spacing:-17.375872pt;}
.ws3a{word-spacing:-17.114675pt;}
.ws2f{word-spacing:-16.930393pt;}
.ws65{word-spacing:-16.734699pt;}
.ws46{word-spacing:-16.473448pt;}
.ws2c{word-spacing:-16.289167pt;}
.ws7b{word-spacing:-16.093472pt;}
.ws40{word-spacing:-15.832222pt;}
.ws20{word-spacing:-15.647940pt;}
.ws80{word-spacing:-15.452299pt;}
.ws2d{word-spacing:-15.190996pt;}
.ws23{word-spacing:-15.006714pt;}
.ws44{word-spacing:-14.549769pt;}
.wsa{word-spacing:-14.365488pt;}
.ws7c{word-spacing:-14.198928pt;}
.ws6a{word-spacing:-14.169846pt;}
.ws29{word-spacing:-13.908543pt;}
.ws33{word-spacing:-13.724261pt;}
.ws6d{word-spacing:-13.557701pt;}
.ws8c{word-spacing:-13.528673pt;}
.ws48{word-spacing:-13.267316pt;}
.ws2a{word-spacing:-13.083088pt;}
.ws84{word-spacing:-12.916528pt;}
.ws63{word-spacing:-12.887447pt;}
.ws7e{word-spacing:-12.632635pt;}
.ws39{word-spacing:-12.626090pt;}
.ws31{word-spacing:-12.441862pt;}
.ws7d{word-spacing:-12.275302pt;}
.ws81{word-spacing:-12.246274pt;}
.ws41{word-spacing:-11.984863pt;}
.ws36{word-spacing:-11.800635pt;}
.ws87{word-spacing:-11.634129pt;}
.ws77{word-spacing:-11.605048pt;}
.ws26{word-spacing:-11.343637pt;}
.ws4c{word-spacing:-11.159409pt;}
.ws73{word-spacing:-10.992902pt;}
.ws88{word-spacing:-10.963874pt;}
.ws27{word-spacing:-10.702411pt;}
.ws3d{word-spacing:-10.518182pt;}
.ws72{word-spacing:-10.351729pt;}
.ws60{word-spacing:-10.061184pt;}
.ws43{word-spacing:-9.876956pt;}
.ws8b{word-spacing:-9.710503pt;}
.ws4e{word-spacing:-9.419958pt;}
.ws4f{word-spacing:-8.778731pt;}
.ws1b{word-spacing:-8.594503pt;}
.ws66{word-spacing:-8.428103pt;}
.ws62{word-spacing:-8.137505pt;}
.ws30{word-spacing:-7.953277pt;}
.ws82{word-spacing:-7.786930pt;}
.ws76{word-spacing:-7.757849pt;}
.ws5f{word-spacing:-7.496332pt;}
.wsc{word-spacing:-7.312050pt;}
.ws5e{word-spacing:-6.855106pt;}
.ws5b{word-spacing:-6.670824pt;}
.ws70{word-spacing:-6.475450pt;}
.ws6b{word-spacing:-5.863304pt;}
.ws38{word-spacing:-5.572653pt;}
.ws47{word-spacing:-5.388371pt;}
.ws3f{word-spacing:-4.747145pt;}
.ws79{word-spacing:-4.580905pt;}
.ws64{word-spacing:-3.939678pt;}
.ws8a{word-spacing:-3.910651pt;}
.ws4a{word-spacing:-3.648973pt;}
.ws37{word-spacing:-3.464692pt;}
.ws78{word-spacing:-3.298505pt;}
.ws89{word-spacing:-2.657279pt;}
.ws28{word-spacing:-2.182239pt;}
.ws49{word-spacing:-1.541013pt;}
.ws42{word-spacing:-0.899786pt;}
.ws24{word-spacing:-0.442841pt;}
.wse{word-spacing:0.000000pt;}
.ws25{word-spacing:0.198385pt;}
.ws75{word-spacing:0.548693pt;}
.ws61{word-spacing:1.023893pt;}
.ws4d{word-spacing:1.665119pt;}
.ws71{word-spacing:1.831093pt;}
.ws3e{word-spacing:5.512424pt;}
.ws34{word-spacing:6.610382pt;}
.ws4b{word-spacing:7.436104pt;}
.ws18{word-spacing:21.550285pt;}
.ws51{word-spacing:23.661125pt;}
.wsf{word-spacing:27.963082pt;}
.ws57{word-spacing:37.767253pt;}
.ws56{word-spacing:47.385382pt;}
.ws53{word-spacing:57.644578pt;}
.ws55{word-spacing:78.162970pt;}
.ws54{word-spacing:88.422166pt;}
.ws52{word-spacing:98.681362pt;}
.ws5a{word-spacing:127.506456pt;}
.ws59{word-spacing:133.918720pt;}
.ws14{word-spacing:140.822237pt;}
.ws11{word-spacing:181.220621pt;}
.ws58{word-spacing:366.336828pt;}
.ws13{word-spacing:367.182146pt;}
.ws15{word-spacing:406.939464pt;}
.ws16{word-spacing:429.382655pt;}
.ws10{word-spacing:439.642917pt;}
.ws17{word-spacing:494.788495pt;}
.ws0{word-spacing:776.937716pt;}
._5a{margin-left:-127.140162pt;}
._9{margin-left:-37.383718pt;}
._a{margin-left:-34.064146pt;}
._c{margin-left:-30.701522pt;}
._e{margin-left:-27.645429pt;}
._10{margin-left:-26.520256pt;}
._8{margin-left:-25.087083pt;}
._15{margin-left:-24.049616pt;}
._13{margin-left:-22.684497pt;}
._16{margin-left:-21.595968pt;}
._7{margin-left:-20.485112pt;}
._11{margin-left:-18.915039pt;}
._22{margin-left:-17.748228pt;}
._14{margin-left:-16.776943pt;}
._b{margin-left:-15.575591pt;}
._f{margin-left:-14.115834pt;}
._18{margin-left:-13.213085pt;}
._0{margin-left:-12.089755pt;}
._21{margin-left:-11.091801pt;}
._42{margin-left:-10.184933pt;}
._17{margin-left:-9.237767pt;}
._6{margin-left:-7.887730pt;}
._5{margin-left:-6.375997pt;}
._4{margin-left:-5.350611pt;}
._3{margin-left:-4.162025pt;}
._d{margin-left:-3.219679pt;}
._2{margin-left:-1.713439pt;}
._1{width:1.239093pt;}
._12{width:2.808609pt;}
._19{width:3.769739pt;}
._1a{width:5.072986pt;}
._1c{width:6.047509pt;}
._1b{width:7.004921pt;}
._27{width:8.418002pt;}
._1e{width:9.429611pt;}
._24{width:10.864062pt;}
._1d{width:11.898280pt;}
._28{width:13.641868pt;}
._23{width:14.951352pt;}
._2e{width:15.963386pt;}
._29{width:17.275251pt;}
._1f{width:18.221748pt;}
._2a{width:19.219126pt;}
._2c{width:20.241048pt;}
._5f{width:21.134684pt;}
._2d{width:22.038920pt;}
._26{width:23.534211pt;}
._2f{width:24.498996pt;}
._25{width:25.938727pt;}
._5e{width:29.131432pt;}
._5d{width:30.128709pt;}
._2b{width:32.196414pt;}
._49{width:55.126509pt;}
._4f{width:81.368363pt;}
._32{width:86.103912pt;}
._37{width:88.027645pt;}
._58{width:95.545021pt;}
._47{width:96.767601pt;}
._4b{width:98.286841pt;}
._4d{width:101.245689pt;}
._45{width:106.760798pt;}
._35{width:108.085397pt;}
._4a{width:111.504885pt;}
._33{width:115.005661pt;}
._36{width:117.888380pt;}
._3f{width:127.781762pt;}
._41{width:128.789175pt;}
._34{width:132.812973pt;}
._53{width:142.431102pt;}
._44{width:152.690298pt;}
._48{width:154.985274pt;}
._38{width:158.869720pt;}
._39{width:162.949494pt;}
._3b{width:173.025810pt;}
._54{width:175.853310pt;}
._52{width:184.433328pt;}
._40{width:191.945536pt;}
._3c{width:202.273728pt;}
._46{width:206.993395pt;}
._4c{width:211.437777pt;}
._5b{width:223.564306pt;}
._4e{width:233.541930pt;}
._59{width:244.548776pt;}
._55{width:259.835104pt;}
._43{width:263.820581pt;}
._57{width:281.423671pt;}
._3e{width:282.643002pt;}
._50{width:299.809982pt;}
._3a{width:338.592295pt;}
._31{width:611.811334pt;}
._5c{width:632.316299pt;}
._51{width:646.511364pt;}
._56{width:666.633035pt;}
._3d{width:675.636987pt;}
._20{width:719.098379pt;}
._30{width:1119.720565pt;}
.fs9{font-size:25.265270pt;}
.fs8{font-size:30.079988pt;}
.fs5{font-size:32.485107pt;}
.fs4{font-size:40.305264pt;}
.fs0{font-size:45.119982pt;}
.fs6{font-size:49.932780pt;}
.fs7{font-size:55.345045pt;}
.fs3{font-size:60.159976pt;}
.fs2{font-size:70.385039pt;}
.fs1{font-size:75.199970pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:166.879933pt;}
.y3{bottom:179.839928pt;}
.y12c{bottom:184.959966pt;}
.y163{bottom:187.359925pt;}
.y2{bottom:192.799923pt;}
.y99{bottom:194.399922pt;}
.yb7{bottom:194.879922pt;}
.y105{bottom:195.679922pt;}
.y12b{bottom:196.479961pt;}
.y84{bottom:196.959921pt;}
.y162{bottom:199.039920pt;}
.yea{bottom:202.079919pt;}
.y1{bottom:205.759918pt;}
.y12a{bottom:207.999957pt;}
.y98{bottom:208.799916pt;}
.yb6{bottom:209.439916pt;}
.y9c{bottom:209.919916pt;}
.y161{bottom:210.559916pt;}
.y83{bottom:211.359915pt;}
.y57{bottom:212.799915pt;}
.ye9{bottom:216.479913pt;}
.y129{bottom:219.679952pt;}
.y160{bottom:222.079911pt;}
.y97{bottom:223.199911pt;}
.yb5{bottom:223.839910pt;}
.y9b{bottom:224.479910pt;}
.y82{bottom:225.759910pt;}
.y56{bottom:227.359909pt;}
.ye8{bottom:230.879908pt;}
.y128{bottom:231.039948pt;}
.y100{bottom:233.279907pt;}
.y15f{bottom:233.599907pt;}
.y96{bottom:237.599905pt;}
.yb4{bottom:238.239905pt;}
.y104{bottom:238.879904pt;}
.y81{bottom:239.999904pt;}
.y55{bottom:241.759903pt;}
.y127{bottom:242.559943pt;}
.y15e{bottom:245.119902pt;}
.ye7{bottom:245.279902pt;}
.y23{bottom:248.479901pt;}
.y9a{bottom:248.959900pt;}
.y164{bottom:249.599900pt;}
.yb3{bottom:252.639899pt;}
.y103{bottom:253.279899pt;}
.y126{bottom:254.239938pt;}
.y80{bottom:254.559898pt;}
.y54{bottom:256.159898pt;}
.y15d{bottom:256.639897pt;}
.ye6{bottom:259.679896pt;}
.y95{bottom:262.239895pt;}
.y22{bottom:262.879895pt;}
.y125{bottom:265.599934pt;}
.yb2{bottom:267.199893pt;}
.yff{bottom:267.679893pt;}
.y15c{bottom:268.159893pt;}
.y7f{bottom:268.959892pt;}
.y53{bottom:270.559892pt;}
.y21{bottom:277.279889pt;}
.y124{bottom:277.279929pt;}
.y15b{bottom:279.839888pt;}
.yb1{bottom:281.439887pt;}
.yfe{bottom:282.239887pt;}
.y7e{bottom:283.359887pt;}
.y52{bottom:284.959886pt;}
.y123{bottom:288.799924pt;}
.ye5{bottom:289.759884pt;}
.y15a{bottom:291.199884pt;}
.y20{bottom:291.679883pt;}
.yb0{bottom:295.839882pt;}
.y94{bottom:296.479881pt;}
.y7d{bottom:297.759881pt;}
.y51{bottom:299.359880pt;}
.y122{bottom:300.159920pt;}
.ye4{bottom:301.119880pt;}
.y159{bottom:302.719879pt;}
.ye3{bottom:305.439878pt;}
.y1f{bottom:306.079878pt;}
.yaf{bottom:310.239876pt;}
.y93{bottom:310.879876pt;}
.y121{bottom:311.839915pt;}
.y7c{bottom:312.319875pt;}
.y50{bottom:313.759874pt;}
.y158{bottom:314.399874pt;}
.y1e{bottom:320.479872pt;}
.ye2{bottom:320.799872pt;}
.y120{bottom:323.359911pt;}
.yae{bottom:324.799870pt;}
.y92{bottom:325.279870pt;}
.y157{bottom:325.759870pt;}
.y7b{bottom:326.559869pt;}
.y4f{bottom:328.159869pt;}
.ye1{bottom:332.479867pt;}
.y11f{bottom:334.879906pt;}
.y1d{bottom:335.039866pt;}
.y156{bottom:337.439865pt;}
.yad{bottom:339.199864pt;}
.y91{bottom:339.839864pt;}
.y7a{bottom:340.959864pt;}
.y4e{bottom:342.719863pt;}
.ye0{bottom:343.839862pt;}
.y11e{bottom:346.399901pt;}
.y155{bottom:348.959860pt;}
.y1c{bottom:349.439860pt;}
.yac{bottom:353.599859pt;}
.y90{bottom:354.239858pt;}
.y79{bottom:355.359858pt;}
.y4d{bottom:356.959857pt;}
.y11d{bottom:357.919897pt;}
.y154{bottom:360.319856pt;}
.ydf{bottom:367.039853pt;}
.yab{bottom:367.839853pt;}
.y8f{bottom:368.639853pt;}
.y11c{bottom:369.439892pt;}
.y78{bottom:369.919852pt;}
.y4c{bottom:371.359851pt;}
.y153{bottom:371.999851pt;}
.y1b{bottom:373.759850pt;}
.yde{bottom:378.399849pt;}
.ydd{bottom:378.399889pt;}
.y11b{bottom:380.959888pt;}
.yaa{bottom:382.399847pt;}
.y8e{bottom:382.879847pt;}
.y152{bottom:383.519847pt;}
.y77{bottom:384.319846pt;}
.y4b{bottom:385.759846pt;}
.ydc{bottom:390.079884pt;}
.y11a{bottom:392.639883pt;}
.y151{bottom:395.039842pt;}
.ya9{bottom:396.799841pt;}
.y8d{bottom:397.439841pt;}
.y76{bottom:398.719841pt;}
.y4a{bottom:400.319840pt;}
.ydb{bottom:401.599839pt;}
.y1a{bottom:403.039839pt;}
.y119{bottom:403.999838pt;}
.y150{bottom:406.559797pt;}
.ya8{bottom:411.199836pt;}
.y8c{bottom:411.839835pt;}
.y75{bottom:412.959835pt;}
.y49{bottom:414.719834pt;}
.y118{bottom:415.519834pt;}
.y14f{bottom:418.079793pt;}
.yda{bottom:424.639830pt;}
.ya7{bottom:425.599830pt;}
.y8b{bottom:426.239830pt;}
.y117{bottom:427.199829pt;}
.y74{bottom:427.519829pt;}
.y48{bottom:429.119828pt;}
.y14e{bottom:429.599788pt;}
.yd9{bottom:436.159826pt;}
.y19{bottom:437.759825pt;}
.y116{bottom:438.559825pt;}
.ya6{bottom:440.159824pt;}
.y8a{bottom:440.639824pt;}
.y14d{bottom:441.119784pt;}
.y73{bottom:441.919823pt;}
.y47{bottom:443.359823pt;}
.yd8{bottom:447.679821pt;}
.y115{bottom:450.239820pt;}
.y18{bottom:452.159819pt;}
.y14c{bottom:452.799779pt;}
.ya5{bottom:454.399818pt;}
.y89{bottom:455.199818pt;}
.y72{bottom:456.319817pt;}
.y46{bottom:457.919817pt;}
.yd7{bottom:459.199816pt;}
.y114{bottom:461.759815pt;}
.y14b{bottom:464.159774pt;}
.y17{bottom:466.559813pt;}
.ya4{bottom:468.799812pt;}
.y88{bottom:469.439812pt;}
.yd6{bottom:470.559812pt;}
.y71{bottom:470.719812pt;}
.y45{bottom:472.319811pt;}
.y113{bottom:473.119811pt;}
.y14a{bottom:475.679770pt;}
.y16{bottom:480.959808pt;}
.yd5{bottom:482.239807pt;}
.ya3{bottom:483.199807pt;}
.y87{bottom:483.839806pt;}
.y112{bottom:484.799806pt;}
.y70{bottom:485.279806pt;}
.y44{bottom:486.719805pt;}
.y149{bottom:487.359765pt;}
.yd4{bottom:493.759802pt;}
.y15{bottom:495.359802pt;}
.y111{bottom:496.159802pt;}
.ya2{bottom:497.759801pt;}
.y86{bottom:498.239801pt;}
.y148{bottom:498.719761pt;}
.y6f{bottom:499.519800pt;}
.y43{bottom:501.119800pt;}
.yd3{bottom:505.279798pt;}
.y110{bottom:507.839797pt;}
.y14{bottom:509.759796pt;}
.y147{bottom:510.399756pt;}
.ya1{bottom:512.159795pt;}
.yfd{bottom:512.799795pt;}
.y6e{bottom:513.919794pt;}
.y42{bottom:515.679794pt;}
.yd2{bottom:516.799793pt;}
.y10f{bottom:519.359792pt;}
.y146{bottom:521.919751pt;}
.y85{bottom:522.879791pt;}
.y13{bottom:524.159790pt;}
.ya0{bottom:526.399789pt;}
.yfc{bottom:527.199789pt;}
.y6d{bottom:528.319789pt;}
.y10e{bottom:530.719788pt;}
.y145{bottom:533.279747pt;}
.yd1{bottom:539.839784pt;}
.y9f{bottom:540.799784pt;}
.yfb{bottom:541.439783pt;}
.y10d{bottom:542.399783pt;}
.y6c{bottom:542.879783pt;}
.y144{bottom:544.959742pt;}
.y41{bottom:545.599782pt;}
.y12{bottom:548.479781pt;}
.y40{bottom:549.919780pt;}
.yd0{bottom:551.359779pt;}
.y10c{bottom:553.919778pt;}
.yfa{bottom:555.839778pt;}
.y143{bottom:556.319737pt;}
.y3f{bottom:556.959777pt;}
.y6b{bottom:557.279777pt;}
.y3e{bottom:561.279775pt;}
.ycf{bottom:563.039775pt;}
.y9e{bottom:565.279774pt;}
.y10b{bottom:565.439774pt;}
.y142{bottom:567.999733pt;}
.y3d{bottom:569.439772pt;}
.yf9{bottom:570.399772pt;}
.y6a{bottom:571.519771pt;}
.yce{bottom:574.399770pt;}
.y10a{bottom:576.959769pt;}
.y141{bottom:579.519728pt;}
.y3c{bottom:582.399767pt;}
.yf8{bottom:584.799766pt;}
.y69{bottom:585.919766pt;}
.y109{bottom:588.479765pt;}
.y140{bottom:590.879724pt;}
.y9d{bottom:594.719762pt;}
.y3b{bottom:595.359762pt;}
.ycd{bottom:597.599761pt;}
.yf7{bottom:599.199760pt;}
.y108{bottom:599.999760pt;}
.y68{bottom:600.479760pt;}
.y13f{bottom:602.559719pt;}
.y39{bottom:608.319717pt;}
.y3a{bottom:608.319757pt;}
.ycc{bottom:608.959756pt;}
.y102{bottom:609.279756pt;}
.y11{bottom:610.719756pt;}
.yf6{bottom:613.599755pt;}
.y13e{bottom:614.079714pt;}
.y67{bottom:614.879754pt;}
.y10{bottom:616.319753pt;}
.ycb{bottom:620.639752pt;}
.y38{bottom:621.279711pt;}
.y107{bottom:622.399751pt;}
.yf{bottom:625.119750pt;}
.y13d{bottom:625.599710pt;}
.yf5{bottom:627.999749pt;}
.y66{bottom:629.279748pt;}
.yca{bottom:632.159747pt;}
.y37{bottom:634.079706pt;}
.y13c{bottom:637.119705pt;}
.ye{bottom:639.519744pt;}
.yf4{bottom:642.399743pt;}
.y65{bottom:643.679743pt;}
.yd{bottom:645.279742pt;}
.y36{bottom:647.199701pt;}
.y13b{bottom:648.639701pt;}
.yc{bottom:653.759738pt;}
.yf3{bottom:656.799737pt;}
.y64{bottom:658.079737pt;}
.yb{bottom:659.519736pt;}
.y35{bottom:660.159736pt;}
.yc5{bottom:660.479730pt;}
.yc1{bottom:660.479736pt;}
.yc4{bottom:660.479761pt;}
.yc6{bottom:660.479791pt;}
.yc8{bottom:660.479801pt;}
.yc7{bottom:660.479821pt;}
.yc9{bottom:660.479841pt;}
.yf2{bottom:671.199732pt;}
.y13a{bottom:671.679731pt;}
.y63{bottom:672.479731pt;}
.y33{bottom:673.119731pt;}
.y34{bottom:678.079729pt;}
.yc0{bottom:680.799728pt;}
.y139{bottom:683.359727pt;}
.yf1{bottom:685.759726pt;}
.y32{bottom:686.239726pt;}
.y62{bottom:686.879725pt;}
.y9{bottom:691.359723pt;}
.ybf{bottom:692.319723pt;}
.yc2{bottom:692.959723pt;}
.y138{bottom:694.719722pt;}
.yc3{bottom:696.159722pt;}
.ya{bottom:698.399721pt;}
.y31{bottom:698.879720pt;}
.y2f{bottom:699.039720pt;}
.yf0{bottom:700.159720pt;}
.y61{bottom:701.279719pt;}
.ybe{bottom:703.679719pt;}
.y30{bottom:703.839718pt;}
.y137{bottom:706.239718pt;}
.y106{bottom:710.239716pt;}
.y2e{bottom:711.999715pt;}
.yef{bottom:714.399714pt;}
.ybd{bottom:715.359714pt;}
.y60{bottom:715.839714pt;}
.y136{bottom:717.919713pt;}
.y2d{bottom:725.119710pt;}
.ybc{bottom:726.879709pt;}
.yee{bottom:728.799708pt;}
.y135{bottom:729.279708pt;}
.y5f{bottom:730.239708pt;}
.y165{bottom:733.759706pt;}
.y2c{bottom:738.079705pt;}
.ybb{bottom:739.039704pt;}
.y134{bottom:740.959704pt;}
.yed{bottom:743.359703pt;}
.y5e{bottom:744.479702pt;}
.y101{bottom:750.239700pt;}
.yba{bottom:750.879700pt;}
.y2b{bottom:751.039700pt;}
.y133{bottom:752.479699pt;}
.yec{bottom:757.759697pt;}
.y5d{bottom:758.879696pt;}
.y8{bottom:759.359696pt;}
.yb9{bottom:763.839694pt;}
.y2a{bottom:764.639694pt;}
.y5c{bottom:773.439691pt;}
.y132{bottom:775.519690pt;}
.yb8{bottom:776.639689pt;}
.y29{bottom:777.919689pt;}
.y7{bottom:779.519688pt;}
.yeb{bottom:782.239687pt;}
.y131{bottom:787.039685pt;}
.y5b{bottom:787.839685pt;}
.y28{bottom:789.759684pt;}
.y130{bottom:798.559681pt;}
.y6{bottom:799.679680pt;}
.y5a{bottom:802.239679pt;}
.y27{bottom:802.719679pt;}
.y12f{bottom:810.079676pt;}
.y26{bottom:815.679674pt;}
.y59{bottom:816.639673pt;}
.y12e{bottom:821.599671pt;}
.y58{bottom:831.039668pt;}
.y12d{bottom:833.119667pt;}
.y25{bottom:845.439662pt;}
.y5{bottom:857.599657pt;}
.y24{bottom:861.599655pt;}
.h11{height:17.542585pt;}
.hb{height:20.386242pt;}
.he{height:21.070840pt;}
.h7{height:22.555577pt;}
.h10{height:27.092072pt;}
.hf{height:27.985393pt;}
.hd{height:30.579363pt;}
.h2{height:31.328425pt;}
.h6{height:33.613960pt;}
.h8{height:34.670124pt;}
.h1{height:37.629360pt;}
.hc{height:38.269360pt;}
.ha{height:38.428053pt;}
.h9{height:41.643158pt;}
.h5{height:50.172480pt;}
.h4{height:58.700022pt;}
.h3{height:62.715600pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:194.559922pt;}
.x11{left:196.319420pt;}
.x41{left:197.759921pt;}
.x10{left:199.199920pt;}
.x38{left:200.159740pt;}
.x26{left:201.279919pt;}
.x39{left:202.719063pt;}
.x2d{left:204.319918pt;}
.x25{left:208.639381pt;}
.x4{left:211.839533pt;}
.x2{left:213.439915pt;}
.x3{left:215.999914pt;}
.x48{left:217.439913pt;}
.x29{left:219.199855pt;}
.x49{left:223.839910pt;}
.x7{left:237.759905pt;}
.xe{left:239.039904pt;}
.xf{left:243.199903pt;}
.x12{left:247.519901pt;}
.x13{left:251.679899pt;}
.x2a{left:262.559895pt;}
.x2b{left:266.559893pt;}
.x40{left:274.399890pt;}
.x2c{left:288.959884pt;}
.x43{left:300.319880pt;}
.x8{left:302.719879pt;}
.x44{left:306.719877pt;}
.x16{left:309.119876pt;}
.x9{left:310.399876pt;}
.x17{left:311.679875pt;}
.x2e{left:313.439875pt;}
.x42{left:319.193673pt;}
.x18{left:320.799872pt;}
.x2f{left:322.399871pt;}
.x47{left:331.518775pt;}
.x45{left:336.959237pt;}
.x19{left:342.879863pt;}
.x28{left:344.799862pt;}
.x1a{left:346.079862pt;}
.x15{left:348.157502pt;}
.x14{left:354.239062pt;}
.x46{left:357.596035pt;}
.x1b{left:359.999856pt;}
.x1c{left:362.559855pt;}
.x30{left:365.439854pt;}
.x31{left:373.119851pt;}
.x1d{left:374.399850pt;}
.x3b{left:378.719849pt;}
.x5{left:382.879294pt;}
.x27{left:401.439439pt;}
.x3a{left:408.319837pt;}
.x32{left:428.319829pt;}
.x6{left:433.599827pt;}
.x33{left:436.799825pt;}
.x3c{left:438.239820pt;}
.x1e{left:444.959822pt;}
.xa{left:451.519819pt;}
.x1f{left:454.719818pt;}
.x20{left:457.119817pt;}
.xb{left:459.199816pt;}
.x34{left:460.479816pt;}
.x4a{left:468.639813pt;}
.x35{left:472.159811pt;}
.x4b{left:474.719810pt;}
.x21{left:479.519808pt;}
.x22{left:482.079807pt;}
.x23{left:491.039804pt;}
.x36{left:506.719797pt;}
.x24{left:522.719791pt;}
.x3d{left:541.599646pt;}
.xc{left:571.039772pt;}
.x3e{left:575.999585pt;}
.xd{left:578.719769pt;}
.x37{left:603.359759pt;}
.x3f{left:610.399523pt;}
}




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