
    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_b21e0048e4bea8ddfb7a9c3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_949656d62a311d06a785ea02.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_4e9d93c5b8f76171d25d6b41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_2343ae82d90902fdf1d58a5c.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_cf5fff87f38fb030a395a7ec.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_7bd5bcf305b4ded34266a09d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.073000;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_137afb47c542bc8d73c71cbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954000;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_bb8c5bdfa2a364c5d362c795.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.796875;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_9dcb75842f72c01f419f9513.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.776855;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);}
.v5{vertical-align:-41.039984px;}
.v3{vertical-align:-35.279986px;}
.v6{vertical-align:-29.519988px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:29.519988px;}
.v7{vertical-align:35.999986px;}
.v4{vertical-align:43.199983px;}
.v2{vertical-align:64.799974px;}
.v1{vertical-align:115.199954px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.037441px;}
.ls1{letter-spacing:0.037617px;}
.ls9{letter-spacing:0.067680px;}
.lsc{letter-spacing:0.133200px;}
.ls16{letter-spacing:0.144000px;}
.lse{letter-spacing:0.151920px;}
.ls3{letter-spacing:0.258750px;}
.lsf{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.328320px;}
.ls14{letter-spacing:39.725984px;}
.ls7{letter-spacing:47.951981px;}
.ls10{letter-spacing:48.983740px;}
.ls8{letter-spacing:49.355980px;}
.ls11{letter-spacing:51.965979px;}
.ls5{letter-spacing:52.930059px;}
.ls6{letter-spacing:53.170539px;}
.ls15{letter-spacing:56.537977px;}
.lsd{letter-spacing:57.559657px;}
.ls13{letter-spacing:57.725977px;}
.lsa{letter-spacing:57.733177px;}
.lsb{letter-spacing:58.170217px;}
.ls4{letter-spacing:58.861416px;}
.ls17{letter-spacing:97.577961px;}
.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;}
}
.ws7c{word-spacing:-143.999942px;}
.ws1{word-spacing:-65.746054px;}
.ws3{word-spacing:-59.051496px;}
.ws3f{word-spacing:-57.373897px;}
.ws43{word-spacing:-53.999978px;}
.ws6d{word-spacing:-50.687980px;}
.ws4b{word-spacing:-49.247980px;}
.ws58{word-spacing:-47.393261px;}
.ws73{word-spacing:-42.324463px;}
.ws40{word-spacing:-40.031984px;}
.ws5e{word-spacing:-38.249265px;}
.ws4f{word-spacing:-37.194735px;}
.ws4d{word-spacing:-36.935985px;}
.ws81{word-spacing:-33.707507px;}
.ws68{word-spacing:-33.426707px;}
.ws42{word-spacing:-30.023988px;}
.ws74{word-spacing:-28.131829px;}
.ws2b{word-spacing:-26.658711px;}
.ws2a{word-spacing:-26.621269px;}
.ws2{word-spacing:-16.613273px;}
.ws75{word-spacing:-12.989895px;}
.ws55{word-spacing:-2.700876px;}
.ws17{word-spacing:-1.997518px;}
.ws1b{word-spacing:-1.543559px;}
.ws10{word-spacing:-0.946639px;}
.ws61{word-spacing:-0.651412px;}
.ws3e{word-spacing:-0.576000px;}
.ws3a{word-spacing:-0.550085px;}
.wsd{word-spacing:-0.464359px;}
.ws83{word-spacing:-0.389232px;}
.ws13{word-spacing:-0.332165px;}
.ws2f{word-spacing:-0.324448px;}
.ws54{word-spacing:-0.310691px;}
.ws89{word-spacing:-0.245808px;}
.ws49{word-spacing:-0.072036px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.050328px;}
.ws27{word-spacing:0.068614px;}
.ws29{word-spacing:0.133369px;}
.ws57{word-spacing:0.162559px;}
.ws31{word-spacing:0.387861px;}
.ws84{word-spacing:0.567072px;}
.ws12{word-spacing:0.586153px;}
.ws95{word-spacing:0.747072px;}
.ws59{word-spacing:0.770354px;}
.ws99{word-spacing:1.329263px;}
.ws32{word-spacing:2.192790px;}
.ws8{word-spacing:2.293278px;}
.ws15{word-spacing:2.746062px;}
.ws11{word-spacing:2.973257px;}
.ws22{word-spacing:3.668574px;}
.ws69{word-spacing:3.930766px;}
.ws9f{word-spacing:4.650766px;}
.ws4{word-spacing:4.707847px;}
.ws9a{word-spacing:5.328574px;}
.ws7f{word-spacing:5.708302px;}
.ws7e{word-spacing:5.753230px;}
.ws6a{word-spacing:5.787070px;}
.ws47{word-spacing:6.228034px;}
.ws19{word-spacing:6.867924px;}
.wsa1{word-spacing:8.093229px;}
.ws8d{word-spacing:8.250765px;}
.ws30{word-spacing:8.773341px;}
.ws9e{word-spacing:8.970764px;}
.ws45{word-spacing:9.287996px;}
.wsa0{word-spacing:9.815055px;}
.ws5{word-spacing:10.213392px;}
.ws92{word-spacing:10.253228px;}
.ws36{word-spacing:10.506134px;}
.ws91{word-spacing:11.150492px;}
.ws25{word-spacing:11.643881px;}
.ws1c{word-spacing:11.915653px;}
.ws65{word-spacing:12.039867px;}
.ws44{word-spacing:13.607995px;}
.ws70{word-spacing:14.730762px;}
.ws48{word-spacing:15.047958px;}
.ws16{word-spacing:15.507896px;}
.ws26{word-spacing:15.529369px;}
.ws87{word-spacing:16.449257px;}
.ws6e{word-spacing:17.610761px;}
.ws72{word-spacing:17.958728px;}
.ws71{word-spacing:21.888567px;}
.ws3b{word-spacing:24.047990px;}
.ws93{word-spacing:24.810758px;}
.ws46{word-spacing:28.007953px;}
.ws6f{word-spacing:28.827060px;}
.ws6c{word-spacing:31.968563px;}
.ws56{word-spacing:32.787840px;}
.wsc{word-spacing:32.826089px;}
.ws88{word-spacing:33.147059px;}
.ws20{word-spacing:33.507866px;}
.ws6b{word-spacing:34.170754px;}
.ws2e{word-spacing:34.693257px;}
.ws8f{word-spacing:36.027058px;}
.ws5d{word-spacing:37.892104px;}
.ws4a{word-spacing:38.088021px;}
.ws6{word-spacing:38.293386px;}
.ws7a{word-spacing:39.930752px;}
.ws98{word-spacing:43.488559px;}
.ws23{word-spacing:44.773281px;}
.ws8c{word-spacing:45.929790px;}
.ws33{word-spacing:46.213332px;}
.ws82{word-spacing:46.410749px;}
.ws80{word-spacing:46.748285px;}
.ws78{word-spacing:46.978829px;}
.ws7{word-spacing:47.226099px;}
.ws3c{word-spacing:48.527981px;}
.ws77{word-spacing:49.124159px;}
.ws8b{word-spacing:49.569244px;}
.wse{word-spacing:49.813292px;}
.ws4c{word-spacing:49.942852px;}
.ws8a{word-spacing:50.750476px;}
.ws67{word-spacing:51.639813px;}
.wsa{word-spacing:52.235578px;}
.ws5c{word-spacing:53.413253px;}
.ws1a{word-spacing:54.123884px;}
.ws1d{word-spacing:54.616427px;}
.ws7b{word-spacing:57.930745px;}
.ws7d{word-spacing:59.067048px;}
.wsf{word-spacing:61.988637px;}
.ws1f{word-spacing:62.307884px;}
.ws8e{word-spacing:66.570741px;}
.ws90{word-spacing:67.673205px;}
.ws28{word-spacing:67.803868px;}
.ws66{word-spacing:69.639854px;}
.ws62{word-spacing:69.706097px;}
.ws2d{word-spacing:70.955573px;}
.ws79{word-spacing:82.596351px;}
.ws9{word-spacing:86.075608px;}
.ws5f{word-spacing:87.253283px;}
.ws18{word-spacing:91.495596px;}
.ws35{word-spacing:91.573269px;}
.ws5b{word-spacing:97.234160px;}
.ws86{word-spacing:98.251161px;}
.ws85{word-spacing:100.647320px;}
.ws94{word-spacing:102.081559px;}
.ws60{word-spacing:109.865980px;}
.ws24{word-spacing:116.052966px;}
.ws9c{word-spacing:118.107313px;}
.ws9b{word-spacing:119.789945px;}
.ws5a{word-spacing:137.907053px;}
.ws14{word-spacing:138.373425px;}
.ws64{word-spacing:141.507181px;}
.ws97{word-spacing:150.767940px;}
.ws96{word-spacing:151.367561px;}
.ws34{word-spacing:152.052570px;}
.wsa2{word-spacing:163.432735px;}
.ws21{word-spacing:173.186967px;}
.ws3d{word-spacing:182.879927px;}
.ws9d{word-spacing:184.209046px;}
.ws38{word-spacing:196.985391px;}
.ws1e{word-spacing:203.435760px;}
.ws39{word-spacing:220.025540px;}
.ws76{word-spacing:291.276474px;}
.ws37{word-spacing:292.452536px;}
.ws51{word-spacing:381.718537px;}
.ws4e{word-spacing:395.862873px;}
.ws50{word-spacing:404.902638px;}
.ws63{word-spacing:439.014324px;}
.ws53{word-spacing:458.045257px;}
.ws41{word-spacing:555.767638px;}
.ws52{word-spacing:650.183364px;}
.ws2c{word-spacing:1574.601743px;}
._7{margin-left:-623.038791px;}
._47{margin-left:-17.416402px;}
._27{margin-left:-15.990108px;}
._5a{margin-left:-14.821307px;}
._62{margin-left:-13.345310px;}
._45{margin-left:-12.335631px;}
._29{margin-left:-10.936120px;}
._46{margin-left:-9.637736px;}
._3{margin-left:-8.351997px;}
._2b{margin-left:-6.916492px;}
._4{margin-left:-5.615998px;}
._2{margin-left:-3.637966px;}
._0{margin-left:-2.286558px;}
._5{margin-left:-1.077977px;}
._1{width:1.288124px;}
._6{width:2.463573px;}
._5b{width:4.102373px;}
._53{width:14.646344px;}
._42{width:25.298412px;}
._35{width:26.475902px;}
._37{width:28.295574px;}
._36{width:31.148532px;}
._4a{width:32.367621px;}
._33{width:35.166457px;}
._2a{width:41.615983px;}
._32{width:44.645765px;}
._34{width:46.428918px;}
._54{width:48.621291px;}
._58{width:52.259015px;}
._61{width:53.611731px;}
._4b{width:56.078487px;}
._63{width:57.100081px;}
._10{width:58.249938px;}
._d{width:59.719618px;}
._c{width:60.997545px;}
._a{width:62.703676px;}
._17{width:63.906575px;}
._4e{width:66.539154px;}
._11{width:67.595060px;}
._25{width:69.220807px;}
._19{width:70.408508px;}
._13{width:72.091526px;}
._4f{width:73.676203px;}
._f{width:75.745167px;}
._5f{width:76.798110px;}
._4d{width:80.563796px;}
._4c{width:83.666097px;}
._49{width:86.392379px;}
._3c{width:91.571491px;}
._b{width:93.031792px;}
._15{width:94.145571px;}
._5d{width:98.144973px;}
._56{width:99.357845px;}
._5c{width:101.469407px;}
._3a{width:103.295548px;}
._18{width:105.220914px;}
._8{width:107.632895px;}
._12{width:115.104388px;}
._5e{width:118.903996px;}
._52{width:119.968806px;}
._e{width:122.357841px;}
._1a{width:128.786120px;}
._24{width:131.508732px;}
._57{width:134.416547px;}
._9{width:146.460543px;}
._43{width:147.467461px;}
._59{width:150.135083px;}
._26{width:152.584757px;}
._60{width:154.020313px;}
._41{width:157.488653px;}
._44{width:170.144650px;}
._31{width:183.637084px;}
._40{width:198.022172px;}
._1f{width:220.824372px;}
._28{width:231.839907px;}
._16{width:233.675612px;}
._3d{width:240.354654px;}
._30{width:243.651853px;}
._51{width:253.914815px;}
._14{width:263.671324px;}
._2f{width:303.831082px;}
._3b{width:320.098418px;}
._50{width:333.196297px;}
._2e{width:363.878628px;}
._20{width:369.844322px;}
._39{width:444.967544px;}
._38{width:450.399622px;}
._55{width:452.943607px;}
._2d{width:453.950250px;}
._3e{width:457.377419px;}
._3f{width:496.187802px;}
._48{width:499.437181px;}
._2c{width:513.998876px;}
._1e{width:554.905734px;}
._22{width:556.370775px;}
._1c{width:679.413662px;}
._21{width:685.832702px;}
._23{width:756.930607px;}
._1b{width:1041.846544px;}
._1d{width:1361.100531px;}
.fc4{color:transparent;}
.fc5{color:rgb(0,0,128);}
.fc2{color:rgb(0,85,130);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(128,128,128);}
.fc3{color:rgb(137,137,137);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:59.759976px;}
.fsa{font-size:79.919968px;}
.fs5{font-size:95.759962px;}
.fs7{font-size:107.999957px;}
.fs9{font-size:112.319955px;}
.fs6{font-size:120.239952px;}
.fs8{font-size:134.639946px;}
.fs1{font-size:143.999942px;}
.fs3{font-size:167.759933px;}
.fs2{font-size:192.239923px;}
.fs0{font-size:215.999914px;}
.fsb{font-size:527.759789px;}
.y23{bottom:-38.879801px;}
.yac{bottom:-26.459806px;}
.y7d{bottom:-21.959808px;}
.y4e{bottom:-21.059808px;}
.y1a{bottom:-10.439812px;}
.y7b{bottom:-5.759814px;}
.y91{bottom:-4.319815px;}
.yde{bottom:-2.879815px;}
.yf{bottom:-0.359816px;}
.y0{bottom:0.000000px;}
.y9d{bottom:1.440183px;}
.y3c{bottom:2.340183px;}
.ye0{bottom:5.040185px;}
.y3e{bottom:5.400183px;}
.y7f{bottom:5.580186px;}
.y81{bottom:5.580192px;}
.yc8{bottom:5.940181px;}
.yae{bottom:6.300194px;}
.y50{bottom:6.480192px;}
.y9f{bottom:7.020183px;}
.yca{bottom:7.380181px;}
.y11{bottom:8.640184px;}
.y1c{bottom:8.640188px;}
.y25{bottom:8.640199px;}
.yed{bottom:27.720185px;}
.y71{bottom:99.180328px;}
.yb{bottom:107.820324px;}
.yb5{bottom:116.640321px;}
.y70{bottom:131.580315px;}
.yc3{bottom:134.460313px;}
.y48{bottom:140.940311px;}
.yea{bottom:153.900306px;}
.y34{bottom:154.620305px;}
.yb4{bottom:156.060305px;}
.y5b{bottom:156.420305px;}
.y2a{bottom:158.040304px;}
.y6f{bottom:163.980302px;}
.yc2{bottom:166.860300px;}
.y67{bottom:169.560299px;}
.y47{bottom:169.740299px;}
.y9b{bottom:185.760293px;}
.yce{bottom:188.460292px;}
.y89{bottom:190.800291px;}
.y6e{bottom:196.380289px;}
.y19{bottom:196.560289px;}
.ye9{bottom:197.100288px;}
.ya4{bottom:198.360288px;}
.y46{bottom:198.540288px;}
.yc1{bottom:199.260287px;}
.y5a{bottom:199.620287px;}
.yb3{bottom:201.960286px;}
.y33{bottom:205.020285px;}
.y86{bottom:207.000284px;}
.y29{bottom:208.440284px;}
.y5{bottom:211.320283px;}
.ydc{bottom:211.860282px;}
.y9a{bottom:218.160280px;}
.y88{bottom:223.200278px;}
.y45{bottom:227.340276px;}
.y6d{bottom:228.780276px;}
.yc0{bottom:231.660275px;}
.yd2{bottom:234.540273px;}
.y14{bottom:236.880272px;}
.y66{bottom:237.420272px;}
.y85{bottom:239.400271px;}
.ye8{bottom:240.300271px;}
.y59{bottom:242.820270px;}
.y18{bottom:246.960268px;}
.ya3{bottom:248.760268px;}
.ydb{bottom:255.060265px;}
.y32{bottom:255.420265px;}
.y87{bottom:255.600265px;}
.y28{bottom:258.840264px;}
.yb2{bottom:259.740263px;}
.y98{bottom:260.280263px;}
.y6c{bottom:261.180263px;}
.ybf{bottom:264.060262px;}
.y44{bottom:266.940260px;}
.ycd{bottom:274.860257px;}
.y4{bottom:276.120257px;}
.ye4{bottom:283.500254px;}
.y58{bottom:286.020253px;}
.y13{bottom:287.280252px;}
.yd1{bottom:287.640252px;}
.y97{bottom:292.680250px;}
.y65{bottom:293.580250px;}
.y43{bottom:295.740249px;}
.ybe{bottom:296.460249px;}
.y17{bottom:297.360248px;}
.yda{bottom:298.260248px;}
.ya2{bottom:299.160248px;}
.y84{bottom:300.060247px;}
.yb1{bottom:302.940246px;}
.y27{bottom:309.240244px;}
.y52{bottom:315.540241px;}
.y31{bottom:315.900241px;}
.ycc{bottom:318.060240px;}
.y42{bottom:324.540237px;}
.y96{bottom:325.080237px;}
.y6b{bottom:325.980237px;}
.ye5{bottom:326.700237px;}
.ybd{bottom:328.860236px;}
.y83{bottom:332.460234px;}
.ye3{bottom:335.340233px;}
.y64{bottom:336.780232px;}
.y12{bottom:337.680232px;}
.y99{bottom:341.280231px;}
.yd9{bottom:341.460231px;}
.yb0{bottom:346.140229px;}
.y1e{bottom:347.760228px;}
.yd0{bottom:348.120228px;}
.ya1{bottom:349.560227px;}
.y41{bottom:353.340226px;}
.y95{bottom:357.480224px;}
.y16{bottom:357.840224px;}
.y6a{bottom:358.380224px;}
.y55{bottom:359.640223px;}
.ycb{bottom:361.260223px;}
.y82{bottom:364.860221px;}
.y30{bottom:366.300221px;}
.y26{bottom:369.720219px;}
.yeb{bottom:369.900219px;}
.y51{bottom:376.740217px;}
.ye2{bottom:378.540216px;}
.y63{bottom:379.980215px;}
.yd8{bottom:384.660213px;}
.y5d{bottom:387.540212px;}
.yaf{bottom:389.340211px;}
.y94{bottom:389.880211px;}
.y69{bottom:390.780211px;}
.y40{bottom:392.940210px;}
.ybc{bottom:394.380209px;}
.y1d{bottom:398.160208px;}
.ycf{bottom:407.340204px;}
.y15{bottom:408.240204px;}
.y54{bottom:410.040203px;}
.y24{bottom:411.480000px;}
.y2f{bottom:416.700201px;}
.y80{bottom:420.840199px;}
.ye1{bottom:421.740199px;}
.y93{bottom:422.280198px;}
.y62{bottom:423.180198px;}
.y5c{bottom:423.540198px;}
.yad{bottom:426.240000px;}
.yec{bottom:426.960000px;}
.ybb{bottom:430.380195px;}
.y4f{bottom:431.460000px;}
.y3f{bottom:432.540194px;}
.y1b{bottom:439.920000px;}
.y7e{bottom:447.660000px;}
.y92{bottom:449.100000px;}
.y10{bottom:450.000000px;}
.ydf{bottom:451.080000px;}
.ya0{bottom:451.800000px;}
.y9e{bottom:453.420000px;}
.y3d{bottom:455.940000px;}
.yc9{bottom:457.560000px;}
.ye{bottom:459.000000px;}
.y61{bottom:466.380181px;}
.ya{bottom:468.720180px;}
.y7c{bottom:469.440179px;}
.y22{bottom:470.520179px;}
.yd7{bottom:471.060179px;}
.y2e{bottom:477.180176px;}
.yab{bottom:478.440176px;}
.yb6{bottom:480.600175px;}
.y7a{bottom:485.640173px;}
.y90{bottom:496.980168px;}
.y4d{bottom:499.140168px;}
.y3b{bottom:500.940167px;}
.ydd{bottom:507.960164px;}
.yc7{bottom:508.140164px;}
.yd{bottom:509.040164px;}
.yd6{bottom:514.260161px;}
.y9{bottom:519.120160px;}
.y21{bottom:520.920159px;}
.y2d{bottom:527.580156px;}
.y8f{bottom:529.380155px;}
.y53{bottom:531.000155px;}
.yaa{bottom:536.220153px;}
.yba{bottom:538.380152px;}
.y3a{bottom:540.540151px;}
.y79{bottom:541.440151px;}
.yc6{bottom:551.340147px;}
.yd5{bottom:557.460144px;}
.y76{bottom:557.640144px;}
.yc{bottom:559.440143px;}
.y4c{bottom:560.340143px;}
.y8e{bottom:561.780142px;}
.y8{bottom:569.520139px;}
.y9c{bottom:571.320139px;}
.y78{bottom:573.840138px;}
.yb9{bottom:574.380137px;}
.y2c{bottom:577.980136px;}
.ya9{bottom:579.420135px;}
.y39{bottom:580.140135px;}
.y20{bottom:581.400135px;}
.y75{bottom:590.040131px;}
.y8d{bottom:594.180130px;}
.yc5{bottom:594.540129px;}
.y3{bottom:597.600128px;}
.yd4{bottom:600.660127px;}
.y60{bottom:601.380127px;}
.y77{bottom:606.240125px;}
.y38{bottom:608.940124px;}
.yb8{bottom:610.380123px;}
.y4b{bottom:617.580120px;}
.y7{bottom:619.920119px;}
.ya8{bottom:622.620118px;}
.y8c{bottom:626.580117px;}
.y57{bottom:628.020116px;}
.y5f{bottom:630.180115px;}
.y1f{bottom:631.800114px;}
.y37{bottom:637.740112px;}
.y2b{bottom:638.460112px;}
.yd3{bottom:643.860110px;}
.yb7{bottom:646.380109px;}
.y2{bottom:655.920105px;}
.y74{bottom:657.360104px;}
.y5e{bottom:661.680103px;}
.ya7{bottom:665.820101px;}
.y4a{bottom:667.980100px;}
.y8b{bottom:668.880100px;}
.y56{bottom:671.220099px;}
.ya6{bottom:711.720083px;}
.y1{bottom:714.240082px;}
.y73{bottom:726.660077px;}
.y6{bottom:738.900072px;}
.y35{bottom:744.840069px;}
.y49{bottom:749.700067px;}
.yc4{bottom:750.780067px;}
.y8a{bottom:760.500063px;}
.y68{bottom:763.920062px;}
.y36{bottom:765.000061px;}
.ye6{bottom:765.720061px;}
.ye7{bottom:769.140060px;}
.y72{bottom:769.860059px;}
.ya5{bottom:771.480059px;}
.h26{height:0.360000px;}
.h28{height:1.260000px;}
.h2b{height:1.440000px;}
.ha{height:3.060000px;}
.h1a{height:5.040000px;}
.h22{height:5.580000px;}
.h12{height:6.660000px;}
.h23{height:7.200000px;}
.h32{height:7.920000px;}
.h7{height:9.000000px;}
.h1d{height:9.900000px;}
.h1b{height:11.340000px;}
.h9{height:19.080000px;}
.h30{height:21.060000px;}
.h19{height:21.240000px;}
.h1c{height:22.680000px;}
.hd{height:23.760000px;}
.h13{height:27.540000px;}
.h8{height:31.500000px;}
.h35{height:32.040000px;}
.h29{height:32.760000px;}
.h1f{height:35.100000px;}
.h6{height:41.580000px;}
.h2a{height:41.940000px;}
.h21{height:43.380000px;}
.hb{height:47.520000px;}
.h5{height:62.327788px;}
.h31{height:73.222705px;}
.h17{height:82.581998px;}
.h27{height:86.892153px;}
.h25{height:88.616845px;}
.h2d{height:91.941291px;}
.h2e{height:97.110664px;}
.hc{height:99.874648px;}
.h20{height:102.952224px;}
.h16{height:110.109331px;}
.h15{height:112.640580px;}
.h2f{height:114.749954px;}
.h2c{height:116.422688px;}
.h24{height:123.639071px;}
.h11{height:125.406512px;}
.h4{height:128.277371px;}
.h33{height:128.340000px;}
.h3{height:146.995957px;}
.h18{height:147.381972px;}
.h2{height:150.187440px;}
.h1{height:165.163996px;}
.h10{height:174.968368px;}
.h14{height:177.440554px;}
.h1e{height:212.181946px;}
.he{height:215.074601px;}
.hf{height:225.281160px;}
.h34{height:400.973746px;}
.h0{height:918.000000px;}
.w36{width:13.140000px;}
.w2f{width:13.680000px;}
.w6{width:15.300000px;}
.w3a{width:16.380000px;}
.w23{width:25.380000px;}
.we{width:33.300000px;}
.w42{width:35.820000px;}
.w9{width:37.980000px;}
.w3{width:41.400000px;}
.w14{width:41.580000px;}
.w20{width:41.940000px;}
.w39{width:44.280000px;}
.w2a{width:51.660000px;}
.w18{width:51.840000px;}
.w2e{width:52.200000px;}
.w49{width:54.540000px;}
.w8{width:58.320000px;}
.w4a{width:63.360000px;}
.w3b{width:66.420000px;}
.w34{width:66.960000px;}
.w11{width:68.040000px;}
.w10{width:69.300000px;}
.w17{width:75.060000px;}
.w31{width:81.900000px;}
.w3e{width:85.320000px;}
.w25{width:86.580000px;}
.w32{width:87.120000px;}
.w43{width:92.520000px;}
.w1b{width:93.060000px;}
.w1f{width:93.960000px;}
.w12{width:95.220000px;}
.wd{width:96.300000px;}
.w22{width:99.540000px;}
.w46{width:110.160000px;}
.w40{width:110.700000px;}
.w7{width:114.120000px;}
.w26{width:114.660000px;}
.w1e{width:117.720000px;}
.w27{width:121.140000px;}
.w2d{width:124.560000px;}
.wa{width:125.640000px;}
.w2{width:132.300000px;}
.w44{width:135.720000px;}
.w21{width:136.620000px;}
.w15{width:137.340000px;}
.w16{width:138.240000px;}
.w41{width:140.220000px;}
.w4b{width:150.120000px;}
.w45{width:156.960000px;}
.w24{width:158.760000px;}
.wf{width:159.480000px;}
.w29{width:160.020000px;}
.w3c{width:161.280000px;}
.w35{width:163.080000px;}
.w13{width:163.260000px;}
.w19{width:168.120000px;}
.w3d{width:171.900000px;}
.w28{width:172.260000px;}
.w5{width:177.120000px;}
.w1{width:178.560000px;}
.w3f{width:180.900000px;}
.w37{width:185.220000px;}
.w2c{width:192.780000px;}
.w4{width:198.180000px;}
.wc{width:198.720000px;}
.w47{width:206.100000px;}
.wb{width:215.280000px;}
.w33{width:221.040000px;}
.w38{width:228.960000px;}
.w48{width:238.140000px;}
.w1c{width:275.580000px;}
.w2b{width:298.980000px;}
.w30{width:459.000000px;}
.w1a{width:479.700000px;}
.w1d{width:530.280000px;}
.w4c{width:781.560000px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x34{left:101.339959px;}
.x24{left:112.859955px;}
.x33{left:118.799952px;}
.x56{left:123.119951px;}
.x44{left:127.439949px;}
.x3c{left:134.099946px;}
.x22{left:136.979945px;}
.x40{left:140.219944px;}
.x25{left:141.479943px;}
.x21{left:144.179942px;}
.x6{left:145.979942px;}
.x41{left:153.719939px;}
.x26{left:154.979938px;}
.x2f{left:158.219937px;}
.x31{left:162.719935px;}
.x1a{left:174.599930px;}
.x7{left:179.639928px;}
.x2e{left:189.359924px;}
.x61{left:194.760000px;}
.x3b{left:197.099921px;}
.x42{left:207.719917px;}
.x8{left:208.979916px;}
.x1{left:233.819906px;}
.x2{left:234.899906px;}
.x43{left:261.719895px;}
.x28{left:288.000000px;}
.x46{left:291.600000px;}
.x13{left:294.480000px;}
.x32{left:302.759879px;}
.x35{left:307.799877px;}
.xe{left:315.000000px;}
.x3{left:319.859872px;}
.x1b{left:343.080000px;}
.x14{left:346.500000px;}
.x30{left:368.099853px;}
.x57{left:369.900000px;}
.x5{left:371.699851px;}
.x9{left:372.780000px;}
.x4{left:375.299850px;}
.x47{left:391.680000px;}
.xf{left:394.200000px;}
.x5b{left:426.060000px;}
.x58{left:437.220000px;}
.x29{left:451.080000px;}
.x10{left:453.420000px;}
.x4b{left:454.680000px;}
.x39{left:463.859814px;}
.x4c{left:498.960000px;}
.x37{left:502.560000px;}
.x1c{left:512.280000px;}
.x4d{left:515.340000px;}
.xa{left:520.200000px;}
.x15{left:524.700000px;}
.x4e{left:531.720000px;}
.x27{left:532.980000px;}
.x52{left:548.280000px;}
.x3d{left:550.980000px;}
.x59{left:562.320000px;}
.x4f{left:573.480000px;}
.xb{left:575.280000px;}
.x2a{left:590.400000px;}
.x53{left:598.320000px;}
.x11{left:600.120000px;}
.x16{left:612.540000px;}
.x1d{left:618.480000px;}
.x48{left:625.680000px;}
.x45{left:667.439733px;}
.x50{left:668.520000px;}
.x2b{left:677.880000px;}
.x5c{left:687.060000px;}
.x38{left:697.320000px;}
.x17{left:699.300000px;}
.x54{left:701.820000px;}
.x49{left:705.420000px;}
.x1e{left:707.760000px;}
.x5a{left:730.620000px;}
.x5d{left:741.600000px;}
.x3a{left:747.179701px;}
.x5e{left:754.740000px;}
.xc{left:788.760000px;}
.x1f{left:790.560000px;}
.x5f{left:793.980000px;}
.x3e{left:798.660000px;}
.x18{left:813.060000px;}
.x12{left:836.640000px;}
.x51{left:858.420000px;}
.x2c{left:860.040000px;}
.x4a{left:868.500000px;}
.x23{left:874.979650px;}
.x60{left:880.200000px;}
.x36{left:892.079643px;}
.x55{left:919.620000px;}
.xd{left:965.880000px;}
.x3f{left:978.120000px;}
.x20{left:989.820000px;}
.x19{left:994.860000px;}
.x2d{left:1004.940000px;}
@media print{
.v5{vertical-align:-36.479985pt;}
.v3{vertical-align:-31.359987pt;}
.v6{vertical-align:-26.239990pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:26.239990pt;}
.v7{vertical-align:31.999987pt;}
.v4{vertical-align:38.399985pt;}
.v2{vertical-align:57.599977pt;}
.v1{vertical-align:102.399959pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.033281pt;}
.ls1{letter-spacing:0.033438pt;}
.ls9{letter-spacing:0.060160pt;}
.lsc{letter-spacing:0.118400pt;}
.ls16{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.135040pt;}
.ls3{letter-spacing:0.230000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.291840pt;}
.ls14{letter-spacing:35.311986pt;}
.ls7{letter-spacing:42.623983pt;}
.ls10{letter-spacing:43.541103pt;}
.ls8{letter-spacing:43.871982pt;}
.ls11{letter-spacing:46.191982pt;}
.ls5{letter-spacing:47.048941pt;}
.ls6{letter-spacing:47.262701pt;}
.ls15{letter-spacing:50.255980pt;}
.lsd{letter-spacing:51.164140pt;}
.ls13{letter-spacing:51.311979pt;}
.lsa{letter-spacing:51.318379pt;}
.lsb{letter-spacing:51.706859pt;}
.ls4{letter-spacing:52.321259pt;}
.ls17{letter-spacing:86.735965pt;}
.ws7c{word-spacing:-127.999949pt;}
.ws1{word-spacing:-58.440937pt;}
.ws3{word-spacing:-52.490219pt;}
.ws3f{word-spacing:-50.999020pt;}
.ws43{word-spacing:-47.999981pt;}
.ws6d{word-spacing:-45.055982pt;}
.ws4b{word-spacing:-43.775982pt;}
.ws58{word-spacing:-42.127343pt;}
.ws73{word-spacing:-37.621745pt;}
.ws40{word-spacing:-35.583986pt;}
.ws5e{word-spacing:-33.999346pt;}
.ws4f{word-spacing:-33.061986pt;}
.ws4d{word-spacing:-32.831987pt;}
.ws81{word-spacing:-29.962228pt;}
.ws68{word-spacing:-29.712628pt;}
.ws42{word-spacing:-26.687989pt;}
.ws74{word-spacing:-25.006070pt;}
.ws2b{word-spacing:-23.696632pt;}
.ws2a{word-spacing:-23.663351pt;}
.ws2{word-spacing:-14.767354pt;}
.ws75{word-spacing:-11.546573pt;}
.ws55{word-spacing:-2.400778pt;}
.ws17{word-spacing:-1.775571pt;}
.ws1b{word-spacing:-1.372053pt;}
.ws10{word-spacing:-0.841457pt;}
.ws61{word-spacing:-0.579033pt;}
.ws3e{word-spacing:-0.512000pt;}
.ws3a{word-spacing:-0.488964pt;}
.wsd{word-spacing:-0.412764pt;}
.ws83{word-spacing:-0.345984pt;}
.ws13{word-spacing:-0.295257pt;}
.ws2f{word-spacing:-0.288398pt;}
.ws54{word-spacing:-0.276170pt;}
.ws89{word-spacing:-0.218496pt;}
.ws49{word-spacing:-0.064032pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.044736pt;}
.ws27{word-spacing:0.060990pt;}
.ws29{word-spacing:0.118550pt;}
.ws57{word-spacing:0.144497pt;}
.ws31{word-spacing:0.344765pt;}
.ws84{word-spacing:0.504064pt;}
.ws12{word-spacing:0.521025pt;}
.ws95{word-spacing:0.664064pt;}
.ws59{word-spacing:0.684759pt;}
.ws99{word-spacing:1.181568pt;}
.ws32{word-spacing:1.949147pt;}
.ws8{word-spacing:2.038470pt;}
.ws15{word-spacing:2.440944pt;}
.ws11{word-spacing:2.642895pt;}
.ws22{word-spacing:3.260955pt;}
.ws69{word-spacing:3.494015pt;}
.ws9f{word-spacing:4.134014pt;}
.ws4{word-spacing:4.184753pt;}
.ws9a{word-spacing:4.736510pt;}
.ws7f{word-spacing:5.074046pt;}
.ws7e{word-spacing:5.113982pt;}
.ws6a{word-spacing:5.144062pt;}
.ws47{word-spacing:5.536030pt;}
.ws19{word-spacing:6.104821pt;}
.wsa1{word-spacing:7.193981pt;}
.ws8d{word-spacing:7.334013pt;}
.ws30{word-spacing:7.798526pt;}
.ws9e{word-spacing:7.974013pt;}
.ws45{word-spacing:8.255997pt;}
.wsa0{word-spacing:8.724493pt;}
.ws5{word-spacing:9.078571pt;}
.ws92{word-spacing:9.113980pt;}
.ws36{word-spacing:9.338785pt;}
.ws91{word-spacing:9.911548pt;}
.ws25{word-spacing:10.350117pt;}
.ws1c{word-spacing:10.591691pt;}
.ws65{word-spacing:10.702104pt;}
.ws44{word-spacing:12.095995pt;}
.ws70{word-spacing:13.094011pt;}
.ws48{word-spacing:13.375963pt;}
.ws16{word-spacing:13.784796pt;}
.ws26{word-spacing:13.803884pt;}
.ws87{word-spacing:14.621562pt;}
.ws6e{word-spacing:15.654010pt;}
.ws72{word-spacing:15.963314pt;}
.ws71{word-spacing:19.456504pt;}
.ws3b{word-spacing:21.375991pt;}
.ws93{word-spacing:22.054007pt;}
.ws46{word-spacing:24.895958pt;}
.ws6f{word-spacing:25.624054pt;}
.ws6c{word-spacing:28.416501pt;}
.ws56{word-spacing:29.144747pt;}
.wsc{word-spacing:29.178746pt;}
.ws88{word-spacing:29.464052pt;}
.ws20{word-spacing:29.784770pt;}
.ws6b{word-spacing:30.374004pt;}
.ws2e{word-spacing:30.838451pt;}
.ws8f{word-spacing:32.024051pt;}
.ws5d{word-spacing:33.681870pt;}
.ws4a{word-spacing:33.856018pt;}
.ws6{word-spacing:34.038565pt;}
.ws7a{word-spacing:35.494002pt;}
.ws98{word-spacing:38.656497pt;}
.ws23{word-spacing:39.798472pt;}
.ws8c{word-spacing:40.826480pt;}
.ws33{word-spacing:41.078517pt;}
.ws82{word-spacing:41.253999pt;}
.ws80{word-spacing:41.554031pt;}
.ws78{word-spacing:41.758959pt;}
.ws7{word-spacing:41.978754pt;}
.ws3c{word-spacing:43.135983pt;}
.ws77{word-spacing:43.665919pt;}
.ws8b{word-spacing:44.061550pt;}
.wse{word-spacing:44.278482pt;}
.ws4c{word-spacing:44.393646pt;}
.ws8a{word-spacing:45.111534pt;}
.ws67{word-spacing:45.902056pt;}
.wsa{word-spacing:46.431625pt;}
.ws5c{word-spacing:47.478447pt;}
.ws1a{word-spacing:48.110119pt;}
.ws1d{word-spacing:48.547935pt;}
.ws7b{word-spacing:51.493995pt;}
.ws7d{word-spacing:52.504043pt;}
.wsf{word-spacing:55.101011pt;}
.ws1f{word-spacing:55.384786pt;}
.ws8e{word-spacing:59.173992pt;}
.ws90{word-spacing:60.153960pt;}
.ws28{word-spacing:60.270105pt;}
.ws66{word-spacing:61.902092pt;}
.ws62{word-spacing:61.960976pt;}
.ws2d{word-spacing:63.071621pt;}
.ws79{word-spacing:73.418979pt;}
.ws9{word-spacing:76.511652pt;}
.ws5f{word-spacing:77.558474pt;}
.ws18{word-spacing:81.329419pt;}
.ws35{word-spacing:81.398462pt;}
.ws5b{word-spacing:86.430365pt;}
.ws86{word-spacing:87.334365pt;}
.ws85{word-spacing:89.464284pt;}
.ws94{word-spacing:90.739164pt;}
.ws60{word-spacing:97.658649pt;}
.ws24{word-spacing:103.158192pt;}
.ws9c{word-spacing:104.984278pt;}
.ws9b{word-spacing:106.479951pt;}
.ws5a{word-spacing:122.584047pt;}
.ws14{word-spacing:122.998600pt;}
.ws64{word-spacing:125.784161pt;}
.ws97{word-spacing:134.015946pt;}
.ws96{word-spacing:134.548943pt;}
.ws34{word-spacing:135.157840pt;}
.wsa2{word-spacing:145.273542pt;}
.ws21{word-spacing:153.943970pt;}
.ws3d{word-spacing:162.559935pt;}
.ws9d{word-spacing:163.741375pt;}
.ws38{word-spacing:175.098125pt;}
.ws1e{word-spacing:180.831787pt;}
.ws39{word-spacing:195.578258pt;}
.ws76{word-spacing:258.912421pt;}
.ws37{word-spacing:259.957810pt;}
.ws51{word-spacing:339.305366pt;}
.ws4e{word-spacing:351.878109pt;}
.ws50{word-spacing:359.913456pt;}
.ws63{word-spacing:390.234954pt;}
.ws53{word-spacing:407.151340pt;}
.ws41{word-spacing:494.015679pt;}
.ws52{word-spacing:577.940768pt;}
.ws2c{word-spacing:1399.645994pt;}
._7{margin-left:-553.812258pt;}
._47{margin-left:-15.481246pt;}
._27{margin-left:-14.213429pt;}
._5a{margin-left:-13.174495pt;}
._62{margin-left:-11.862498pt;}
._45{margin-left:-10.965005pt;}
._29{margin-left:-9.720996pt;}
._46{margin-left:-8.566877pt;}
._3{margin-left:-7.423997pt;}
._2b{margin-left:-6.147993pt;}
._4{margin-left:-4.991998pt;}
._2{margin-left:-3.233747pt;}
._0{margin-left:-2.032496pt;}
._5{margin-left:-0.958202pt;}
._1{width:1.144999pt;}
._6{width:2.189843pt;}
._5b{width:3.646554pt;}
._53{width:13.018973pt;}
._42{width:22.487478pt;}
._35{width:23.534135pt;}
._37{width:25.151621pt;}
._36{width:27.687584pt;}
._4a{width:28.771219pt;}
._33{width:31.259073pt;}
._2a{width:36.991985pt;}
._32{width:39.685124pt;}
._34{width:41.270150pt;}
._54{width:43.218925pt;}
._58{width:46.452458pt;}
._61{width:47.654872pt;}
._4b{width:49.847544pt;}
._63{width:50.755627pt;}
._10{width:51.777723pt;}
._d{width:53.084105pt;}
._c{width:54.220040pt;}
._a{width:55.736601pt;}
._17{width:56.805845pt;}
._4e{width:59.145915pt;}
._11{width:60.084498pt;}
._25{width:61.529606pt;}
._19{width:62.585341pt;}
._13{width:64.081356pt;}
._4f{width:65.489958pt;}
._f{width:67.329037pt;}
._5f{width:68.264987pt;}
._4d{width:71.612263pt;}
._4c{width:74.369864pt;}
._49{width:76.793226pt;}
._3c{width:81.396881pt;}
._b{width:82.694927pt;}
._15{width:83.684952pt;}
._5d{width:87.239976pt;}
._56{width:88.318085pt;}
._5c{width:90.195028pt;}
._3a{width:91.818265pt;}
._18{width:93.529701pt;}
._8{width:95.673684pt;}
._12{width:102.315012pt;}
._5e{width:105.692441pt;}
._52{width:106.638939pt;}
._e{width:108.762525pt;}
._1a{width:114.476551pt;}
._24{width:116.896651pt;}
._57{width:119.481375pt;}
._9{width:130.187149pt;}
._43{width:131.082188pt;}
._59{width:133.453407pt;}
._26{width:135.630895pt;}
._60{width:136.906945pt;}
._41{width:139.989914pt;}
._44{width:151.239689pt;}
._31{width:163.232963pt;}
._40{width:176.019708pt;}
._1f{width:196.288330pt;}
._28{width:206.079918pt;}
._16{width:207.711655pt;}
._3d{width:213.648582pt;}
._30{width:216.579425pt;}
._51{width:225.702057pt;}
._14{width:234.374511pt;}
._2f{width:270.072073pt;}
._3b{width:284.531927pt;}
._50{width:296.174486pt;}
._2e{width:323.447670pt;}
._20{width:328.750509pt;}
._39{width:395.526706pt;}
._38{width:400.355219pt;}
._55{width:402.616540pt;}
._2d{width:403.511333pt;}
._3e{width:406.557706pt;}
._3f{width:441.055824pt;}
._48{width:443.944161pt;}
._2c{width:456.887890pt;}
._1e{width:493.249541pt;}
._22{width:494.551800pt;}
._1c{width:603.923255pt;}
._21{width:609.629068pt;}
._23{width:672.827206pt;}
._1b{width:926.085817pt;}
._1d{width:1209.867139pt;}
.fs4{font-size:53.119979pt;}
.fsa{font-size:71.039972pt;}
.fs5{font-size:85.119966pt;}
.fs7{font-size:95.999962pt;}
.fs9{font-size:99.839960pt;}
.fs6{font-size:106.879957pt;}
.fs8{font-size:119.679952pt;}
.fs1{font-size:127.999949pt;}
.fs3{font-size:149.119940pt;}
.fs2{font-size:170.879932pt;}
.fs0{font-size:191.999923pt;}
.fsb{font-size:469.119812pt;}
.y23{bottom:-34.559823pt;}
.yac{bottom:-23.519827pt;}
.y7d{bottom:-19.519829pt;}
.y4e{bottom:-18.719829pt;}
.y1a{bottom:-9.279833pt;}
.y7b{bottom:-5.119835pt;}
.y91{bottom:-3.839835pt;}
.yde{bottom:-2.559836pt;}
.yf{bottom:-0.319837pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:1.280163pt;}
.y3c{bottom:2.080162pt;}
.ye0{bottom:4.480164pt;}
.y3e{bottom:4.800162pt;}
.y7f{bottom:4.960165pt;}
.y81{bottom:4.960171pt;}
.yc8{bottom:5.280161pt;}
.yae{bottom:5.600173pt;}
.y50{bottom:5.760171pt;}
.y9f{bottom:6.240163pt;}
.yca{bottom:6.560161pt;}
.y11{bottom:7.680163pt;}
.y1c{bottom:7.680167pt;}
.y25{bottom:7.680177pt;}
.yed{bottom:24.640165pt;}
.y71{bottom:88.160291pt;}
.yb{bottom:95.840288pt;}
.yb5{bottom:103.680285pt;}
.y70{bottom:116.960280pt;}
.yc3{bottom:119.520279pt;}
.y48{bottom:125.280276pt;}
.yea{bottom:136.800272pt;}
.y34{bottom:137.440271pt;}
.yb4{bottom:138.720271pt;}
.y5b{bottom:139.040271pt;}
.y2a{bottom:140.480270pt;}
.y6f{bottom:145.760268pt;}
.yc2{bottom:148.320267pt;}
.y67{bottom:150.720266pt;}
.y47{bottom:150.880266pt;}
.y9b{bottom:165.120260pt;}
.yce{bottom:167.520259pt;}
.y89{bottom:169.600259pt;}
.y6e{bottom:174.560257pt;}
.y19{bottom:174.720257pt;}
.ye9{bottom:175.200256pt;}
.ya4{bottom:176.320256pt;}
.y46{bottom:176.480256pt;}
.yc1{bottom:177.120256pt;}
.y5a{bottom:177.440255pt;}
.yb3{bottom:179.520255pt;}
.y33{bottom:182.240254pt;}
.y86{bottom:184.000253pt;}
.y29{bottom:185.280252pt;}
.y5{bottom:187.840251pt;}
.ydc{bottom:188.320251pt;}
.y9a{bottom:193.920249pt;}
.y88{bottom:198.400247pt;}
.y45{bottom:202.080246pt;}
.y6d{bottom:203.360245pt;}
.yc0{bottom:205.920244pt;}
.yd2{bottom:208.480243pt;}
.y14{bottom:210.560242pt;}
.y66{bottom:211.040242pt;}
.y85{bottom:212.800241pt;}
.ye8{bottom:213.600241pt;}
.y59{bottom:215.840240pt;}
.y18{bottom:219.520239pt;}
.ya3{bottom:221.120238pt;}
.ydb{bottom:226.720236pt;}
.y32{bottom:227.040236pt;}
.y87{bottom:227.200236pt;}
.y28{bottom:230.080234pt;}
.yb2{bottom:230.880234pt;}
.y98{bottom:231.360234pt;}
.y6c{bottom:232.160234pt;}
.ybf{bottom:234.720233pt;}
.y44{bottom:237.280231pt;}
.ycd{bottom:244.320229pt;}
.y4{bottom:245.440228pt;}
.ye4{bottom:252.000226pt;}
.y58{bottom:254.240225pt;}
.y13{bottom:255.360224pt;}
.yd1{bottom:255.680224pt;}
.y97{bottom:260.160222pt;}
.y65{bottom:260.960222pt;}
.y43{bottom:262.880221pt;}
.ybe{bottom:263.520221pt;}
.y17{bottom:264.320221pt;}
.yda{bottom:265.120220pt;}
.ya2{bottom:265.920220pt;}
.y84{bottom:266.720220pt;}
.yb1{bottom:269.280219pt;}
.y27{bottom:274.880216pt;}
.y52{bottom:280.480214pt;}
.y31{bottom:280.800214pt;}
.ycc{bottom:282.720213pt;}
.y42{bottom:288.480211pt;}
.y96{bottom:288.960211pt;}
.y6b{bottom:289.760210pt;}
.ye5{bottom:290.400210pt;}
.ybd{bottom:292.320209pt;}
.y83{bottom:295.520208pt;}
.ye3{bottom:298.080207pt;}
.y64{bottom:299.360207pt;}
.y12{bottom:300.160206pt;}
.y99{bottom:303.360205pt;}
.yd9{bottom:303.520205pt;}
.yb0{bottom:307.680203pt;}
.y1e{bottom:309.120203pt;}
.yd0{bottom:309.440203pt;}
.ya1{bottom:310.720202pt;}
.y41{bottom:314.080201pt;}
.y95{bottom:317.760199pt;}
.y16{bottom:318.080199pt;}
.y6a{bottom:318.560199pt;}
.y55{bottom:319.680199pt;}
.ycb{bottom:321.120198pt;}
.y82{bottom:324.320197pt;}
.y30{bottom:325.600196pt;}
.y26{bottom:328.640195pt;}
.yeb{bottom:328.800195pt;}
.y51{bottom:334.880192pt;}
.ye2{bottom:336.480192pt;}
.y63{bottom:337.760191pt;}
.yd8{bottom:341.920190pt;}
.y5d{bottom:344.480189pt;}
.yaf{bottom:346.080188pt;}
.y94{bottom:346.560188pt;}
.y69{bottom:347.360187pt;}
.y40{bottom:349.280187pt;}
.ybc{bottom:350.560186pt;}
.y1d{bottom:353.920185pt;}
.ycf{bottom:362.080182pt;}
.y15{bottom:362.880181pt;}
.y54{bottom:364.480181pt;}
.y24{bottom:365.760000pt;}
.y2f{bottom:370.400178pt;}
.y80{bottom:374.080177pt;}
.ye1{bottom:374.880176pt;}
.y93{bottom:375.360176pt;}
.y62{bottom:376.160176pt;}
.y5c{bottom:376.480176pt;}
.yad{bottom:378.880000pt;}
.yec{bottom:379.520000pt;}
.ybb{bottom:382.560173pt;}
.y4f{bottom:383.520000pt;}
.y3f{bottom:384.480173pt;}
.y1b{bottom:391.040000pt;}
.y7e{bottom:397.920000pt;}
.y92{bottom:399.200000pt;}
.y10{bottom:400.000000pt;}
.ydf{bottom:400.960000pt;}
.ya0{bottom:401.600000pt;}
.y9e{bottom:403.040000pt;}
.y3d{bottom:405.280000pt;}
.yc9{bottom:406.720000pt;}
.ye{bottom:408.000000pt;}
.y61{bottom:414.560161pt;}
.ya{bottom:416.640160pt;}
.y7c{bottom:417.280159pt;}
.y22{bottom:418.240159pt;}
.yd7{bottom:418.720159pt;}
.y2e{bottom:424.160157pt;}
.yab{bottom:425.280156pt;}
.yb6{bottom:427.200156pt;}
.y7a{bottom:431.680154pt;}
.y90{bottom:441.760150pt;}
.y4d{bottom:443.680149pt;}
.y3b{bottom:445.280148pt;}
.ydd{bottom:451.520146pt;}
.yc7{bottom:451.680146pt;}
.yd{bottom:452.480145pt;}
.yd6{bottom:457.120144pt;}
.y9{bottom:461.440142pt;}
.y21{bottom:463.040141pt;}
.y2d{bottom:468.960139pt;}
.y8f{bottom:470.560138pt;}
.y53{bottom:472.000138pt;}
.yaa{bottom:476.640136pt;}
.yba{bottom:478.560135pt;}
.y3a{bottom:480.480134pt;}
.y79{bottom:481.280134pt;}
.yc6{bottom:490.080130pt;}
.yd5{bottom:495.520128pt;}
.y76{bottom:495.680128pt;}
.yc{bottom:497.280127pt;}
.y4c{bottom:498.080127pt;}
.y8e{bottom:499.360127pt;}
.y8{bottom:506.240124pt;}
.y9c{bottom:507.840123pt;}
.y78{bottom:510.080122pt;}
.yb9{bottom:510.560122pt;}
.y2c{bottom:513.760121pt;}
.ya9{bottom:515.040120pt;}
.y39{bottom:515.680120pt;}
.y20{bottom:516.800120pt;}
.y75{bottom:524.480117pt;}
.y8d{bottom:528.160115pt;}
.yc5{bottom:528.480115pt;}
.y3{bottom:531.200114pt;}
.yd4{bottom:533.920113pt;}
.y60{bottom:534.560113pt;}
.y77{bottom:538.880111pt;}
.y38{bottom:541.280110pt;}
.yb8{bottom:542.560109pt;}
.y4b{bottom:548.960107pt;}
.y7{bottom:551.040106pt;}
.ya8{bottom:553.440105pt;}
.y8c{bottom:556.960104pt;}
.y57{bottom:558.240103pt;}
.y5f{bottom:560.160102pt;}
.y1f{bottom:561.600102pt;}
.y37{bottom:566.880100pt;}
.y2b{bottom:567.520099pt;}
.yd3{bottom:572.320097pt;}
.yb7{bottom:574.560097pt;}
.y2{bottom:583.040093pt;}
.y74{bottom:584.320093pt;}
.y5e{bottom:588.160091pt;}
.ya7{bottom:591.840090pt;}
.y4a{bottom:593.760089pt;}
.y8b{bottom:594.560089pt;}
.y56{bottom:596.640088pt;}
.ya6{bottom:632.640073pt;}
.y1{bottom:634.880072pt;}
.y73{bottom:645.920068pt;}
.y6{bottom:656.800064pt;}
.y35{bottom:662.080062pt;}
.y49{bottom:666.400060pt;}
.yc4{bottom:667.360059pt;}
.y8a{bottom:676.000056pt;}
.y68{bottom:679.040055pt;}
.y36{bottom:680.000054pt;}
.ye6{bottom:680.640054pt;}
.ye7{bottom:683.680053pt;}
.y72{bottom:684.320053pt;}
.ya5{bottom:685.760052pt;}
.h26{height:0.320000pt;}
.h28{height:1.120000pt;}
.h2b{height:1.280000pt;}
.ha{height:2.720000pt;}
.h1a{height:4.480000pt;}
.h22{height:4.960000pt;}
.h12{height:5.920000pt;}
.h23{height:6.400000pt;}
.h32{height:7.040000pt;}
.h7{height:8.000000pt;}
.h1d{height:8.800000pt;}
.h1b{height:10.080000pt;}
.h9{height:16.960000pt;}
.h30{height:18.720000pt;}
.h19{height:18.880000pt;}
.h1c{height:20.160000pt;}
.hd{height:21.120000pt;}
.h13{height:24.480000pt;}
.h8{height:28.000000pt;}
.h35{height:28.480000pt;}
.h29{height:29.120000pt;}
.h1f{height:31.200000pt;}
.h6{height:36.960000pt;}
.h2a{height:37.280000pt;}
.h21{height:38.560000pt;}
.hb{height:42.240000pt;}
.h5{height:55.402478pt;}
.h31{height:65.086849pt;}
.h17{height:73.406221pt;}
.h27{height:77.237469pt;}
.h25{height:78.770528pt;}
.h2d{height:81.725592pt;}
.h2e{height:86.320590pt;}
.hc{height:88.777464pt;}
.h20{height:91.513088pt;}
.h16{height:97.874961pt;}
.h15{height:100.124960pt;}
.h2f{height:101.999959pt;}
.h2c{height:103.486834pt;}
.h24{height:109.901396pt;}
.h11{height:111.472455pt;}
.h4{height:114.024329pt;}
.h33{height:114.080000pt;}
.h3{height:130.663073pt;}
.h18{height:131.006198pt;}
.h2{height:133.499947pt;}
.h1{height:146.812441pt;}
.h10{height:155.527438pt;}
.h14{height:157.724937pt;}
.h1e{height:188.606175pt;}
.he{height:191.177424pt;}
.hf{height:200.249920pt;}
.h34{height:356.421107pt;}
.h0{height:816.000000pt;}
.w36{width:11.680000pt;}
.w2f{width:12.160000pt;}
.w6{width:13.600000pt;}
.w3a{width:14.560000pt;}
.w23{width:22.560000pt;}
.we{width:29.600000pt;}
.w42{width:31.840000pt;}
.w9{width:33.760000pt;}
.w3{width:36.800000pt;}
.w14{width:36.960000pt;}
.w20{width:37.280000pt;}
.w39{width:39.360000pt;}
.w2a{width:45.920000pt;}
.w18{width:46.080000pt;}
.w2e{width:46.400000pt;}
.w49{width:48.480000pt;}
.w8{width:51.840000pt;}
.w4a{width:56.320000pt;}
.w3b{width:59.040000pt;}
.w34{width:59.520000pt;}
.w11{width:60.480000pt;}
.w10{width:61.600000pt;}
.w17{width:66.720000pt;}
.w31{width:72.800000pt;}
.w3e{width:75.840000pt;}
.w25{width:76.960000pt;}
.w32{width:77.440000pt;}
.w43{width:82.240000pt;}
.w1b{width:82.720000pt;}
.w1f{width:83.520000pt;}
.w12{width:84.640000pt;}
.wd{width:85.600000pt;}
.w22{width:88.480000pt;}
.w46{width:97.920000pt;}
.w40{width:98.400000pt;}
.w7{width:101.440000pt;}
.w26{width:101.920000pt;}
.w1e{width:104.640000pt;}
.w27{width:107.680000pt;}
.w2d{width:110.720000pt;}
.wa{width:111.680000pt;}
.w2{width:117.600000pt;}
.w44{width:120.640000pt;}
.w21{width:121.440000pt;}
.w15{width:122.080000pt;}
.w16{width:122.880000pt;}
.w41{width:124.640000pt;}
.w4b{width:133.440000pt;}
.w45{width:139.520000pt;}
.w24{width:141.120000pt;}
.wf{width:141.760000pt;}
.w29{width:142.240000pt;}
.w3c{width:143.360000pt;}
.w35{width:144.960000pt;}
.w13{width:145.120000pt;}
.w19{width:149.440000pt;}
.w3d{width:152.800000pt;}
.w28{width:153.120000pt;}
.w5{width:157.440000pt;}
.w1{width:158.720000pt;}
.w3f{width:160.800000pt;}
.w37{width:164.640000pt;}
.w2c{width:171.360000pt;}
.w4{width:176.160000pt;}
.wc{width:176.640000pt;}
.w47{width:183.200000pt;}
.wb{width:191.360000pt;}
.w33{width:196.480000pt;}
.w38{width:203.520000pt;}
.w48{width:211.680000pt;}
.w1c{width:244.960000pt;}
.w2b{width:265.760000pt;}
.w30{width:408.000000pt;}
.w1a{width:426.400000pt;}
.w1d{width:471.360000pt;}
.w4c{width:694.720000pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x34{left:90.079964pt;}
.x24{left:100.319960pt;}
.x33{left:105.599958pt;}
.x56{left:109.439956pt;}
.x44{left:113.279955pt;}
.x3c{left:119.199952pt;}
.x22{left:121.759951pt;}
.x40{left:124.639950pt;}
.x25{left:125.759950pt;}
.x21{left:128.159949pt;}
.x6{left:129.759948pt;}
.x41{left:136.639945pt;}
.x26{left:137.759945pt;}
.x2f{left:140.639944pt;}
.x31{left:144.639942pt;}
.x1a{left:155.199938pt;}
.x7{left:159.679936pt;}
.x2e{left:168.319933pt;}
.x61{left:173.120000pt;}
.x3b{left:175.199930pt;}
.x42{left:184.639926pt;}
.x8{left:185.759926pt;}
.x1{left:207.839917pt;}
.x2{left:208.799916pt;}
.x43{left:232.639907pt;}
.x28{left:256.000000pt;}
.x46{left:259.200000pt;}
.x13{left:261.760000pt;}
.x32{left:269.119892pt;}
.x35{left:273.599891pt;}
.xe{left:280.000000pt;}
.x3{left:284.319886pt;}
.x1b{left:304.960000pt;}
.x14{left:308.000000pt;}
.x30{left:327.199869pt;}
.x57{left:328.800000pt;}
.x5{left:330.399868pt;}
.x9{left:331.360000pt;}
.x4{left:333.599867pt;}
.x47{left:348.160000pt;}
.xf{left:350.400000pt;}
.x5b{left:378.720000pt;}
.x58{left:388.640000pt;}
.x29{left:400.960000pt;}
.x10{left:403.040000pt;}
.x4b{left:404.160000pt;}
.x39{left:412.319835pt;}
.x4c{left:443.520000pt;}
.x37{left:446.720000pt;}
.x1c{left:455.360000pt;}
.x4d{left:458.080000pt;}
.xa{left:462.400000pt;}
.x15{left:466.400000pt;}
.x4e{left:472.640000pt;}
.x27{left:473.760000pt;}
.x52{left:487.360000pt;}
.x3d{left:489.760000pt;}
.x59{left:499.840000pt;}
.x4f{left:509.760000pt;}
.xb{left:511.360000pt;}
.x2a{left:524.800000pt;}
.x53{left:531.840000pt;}
.x11{left:533.440000pt;}
.x16{left:544.480000pt;}
.x1d{left:549.760000pt;}
.x48{left:556.160000pt;}
.x45{left:593.279763pt;}
.x50{left:594.240000pt;}
.x2b{left:602.560000pt;}
.x5c{left:610.720000pt;}
.x38{left:619.840000pt;}
.x17{left:621.600000pt;}
.x54{left:623.840000pt;}
.x49{left:627.040000pt;}
.x1e{left:629.120000pt;}
.x5a{left:649.440000pt;}
.x5d{left:659.200000pt;}
.x3a{left:664.159734pt;}
.x5e{left:670.880000pt;}
.xc{left:701.120000pt;}
.x1f{left:702.720000pt;}
.x5f{left:705.760000pt;}
.x3e{left:709.920000pt;}
.x18{left:722.720000pt;}
.x12{left:743.680000pt;}
.x51{left:763.040000pt;}
.x2c{left:764.480000pt;}
.x4a{left:772.000000pt;}
.x23{left:777.759689pt;}
.x60{left:782.400000pt;}
.x36{left:792.959683pt;}
.x55{left:817.440000pt;}
.xd{left:858.560000pt;}
.x3f{left:869.440000pt;}
.x20{left:879.840000pt;}
.x19{left:884.320000pt;}
.x2d{left:893.280000pt;}
}




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