
    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_6a416963b65b970c0ee62eba.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_110a95f75b9b01e41c028ec3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_7666191b545d8387c6cbcdfd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_c27e695154e4ae843bf13637.woff')format("woff");}.ff4{font-family:ff4;line-height:0.726000;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_a68f768c56d97b0c2ca37257.woff')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_261fe834eab5a1ba0eeb7379.woff')format("woff");}.ff6{font-family:ff6;line-height:0.542000;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_34ba98cbeee73fadaa39b6cf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_84288c02c32f343d70f4d429.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.202335,-0.146835,0.146835,0.202335,0,0);-ms-transform:matrix(0.202335,-0.146835,0.146835,0.202335,0,0);-webkit-transform:matrix(0.202335,-0.146835,0.146835,0.202335,0,0);}
.m5{transform:matrix(0.209199,-0.136878,0.136878,0.209199,0,0);-ms-transform:matrix(0.209199,-0.136878,0.136878,0.209199,0,0);-webkit-transform:matrix(0.209199,-0.136878,0.136878,0.209199,0,0);}
.m6{transform:matrix(0.215055,-0.127480,0.127480,0.215055,0,0);-ms-transform:matrix(0.215055,-0.127480,0.127480,0.215055,0,0);-webkit-transform:matrix(0.215055,-0.127480,0.127480,0.215055,0,0);}
.m7{transform:matrix(0.220357,-0.118079,0.118079,0.220357,0,0);-ms-transform:matrix(0.220357,-0.118079,0.118079,0.220357,0,0);-webkit-transform:matrix(0.220357,-0.118079,0.118079,0.220357,0,0);}
.m8{transform:matrix(0.224554,-0.109889,0.109889,0.224554,0,0);-ms-transform:matrix(0.224554,-0.109889,0.109889,0.224554,0,0);-webkit-transform:matrix(0.224554,-0.109889,0.109889,0.224554,0,0);}
.m3{transform:matrix(0.248978,0.022584,-0.022584,0.248978,0,0);-ms-transform:matrix(0.248978,0.022584,-0.022584,0.248978,0,0);-webkit-transform:matrix(0.248978,0.022584,-0.022584,0.248978,0,0);}
.m2{transform:matrix(0.249835,0.009090,-0.009090,0.249835,0,0);-ms-transform:matrix(0.249835,0.009090,-0.009090,0.249835,0,0);-webkit-transform:matrix(0.249835,0.009090,-0.009090,0.249835,0,0);}
.m1{transform:matrix(0.249942,-0.005375,0.005375,0.249942,0,0);-ms-transform:matrix(0.249942,-0.005375,0.005375,0.249942,0,0);-webkit-transform:matrix(0.249942,-0.005375,0.005375,0.249942,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:57.846000px;}
.v1{vertical-align:86.772000px;}
.v3{vertical-align:143.460000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:29.887950px;}
.ls1{letter-spacing:29.893627px;}
.ls2{letter-spacing:46.630426px;}
.ls4{letter-spacing:75.317634px;}
.ls3{letter-spacing:82.251638px;}
.ls6{letter-spacing:83.208470px;}
.ls7{letter-spacing:83.367874px;}
.ls5{letter-spacing:1229.948918px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e{word-spacing:-76.643139px;}
.ws10{word-spacing:-53.224461px;}
.ws23{word-spacing:-44.354074px;}
.ws2a{word-spacing:-26.612231px;}
.ws35{word-spacing:-15.685196px;}
.ws1f{word-spacing:-14.465884px;}
.ws83{word-spacing:-2.749088px;}
.ws97{word-spacing:-2.530907px;}
.ws26{word-spacing:-1.315080px;}
.ws27{word-spacing:-1.307531px;}
.ws63{word-spacing:-0.159403px;}
.wsb3{word-spacing:0.000000px;}
.ws42{word-spacing:0.305454px;}
.ws44{word-spacing:1.178181px;}
.ws9a{word-spacing:1.832725px;}
.wsab{word-spacing:2.487270px;}
.ws14{word-spacing:2.964885px;}
.ws9e{word-spacing:4.887268px;}
.ws91{word-spacing:5.541813px;}
.ws7b{word-spacing:6.414539px;}
.ws1d{word-spacing:6.758696px;}
.ws25{word-spacing:6.854358px;}
.ws62{word-spacing:6.918099px;}
.ws9f{word-spacing:7.287265px;}
.ws7{word-spacing:8.099075px;}
.ws1e{word-spacing:8.193324px;}
.ws5b{word-spacing:8.671534px;}
.ws9d{word-spacing:10.123626px;}
.ws3d{word-spacing:10.137993px;}
.ws54{word-spacing:10.424969px;}
.ws29{word-spacing:10.807483px;}
.ws8a{word-spacing:11.650897px;}
.ws15{word-spacing:12.289925px;}
.wsad{word-spacing:13.832713px;}
.ws67{word-spacing:14.410049px;}
.ws13{word-spacing:14.441857px;}
.ws45{word-spacing:14.487258px;}
.ws75{word-spacing:14.705440px;}
.ws93{word-spacing:15.141803px;}
.wsc{word-spacing:15.398272px;}
.ws43{word-spacing:15.796348px;}
.ws3f{word-spacing:16.014529px;}
.ws19{word-spacing:16.322888px;}
.ws3{word-spacing:16.593790px;}
.ws41{word-spacing:16.669074px;}
.ws8{word-spacing:16.832893px;}
.wsaa{word-spacing:17.105437px;}
.ws8b{word-spacing:17.323619px;}
.ws28{word-spacing:17.414852px;}
.ws21{word-spacing:18.012616px;}
.ws95{word-spacing:18.414527px;}
.ws18{word-spacing:19.686295px;}
.ws50{word-spacing:19.723617px;}
.ws8f{word-spacing:19.941798px;}
.ws6{word-spacing:20.180344px;}
.ws86{word-spacing:20.814525px;}
.ws9c{word-spacing:21.032706px;}
.ws5{word-spacing:21.614965px;}
.ws9{word-spacing:21.854069px;}
.ws94{word-spacing:21.905433px;}
.ws2b{word-spacing:22.093173px;}
.ws61{word-spacing:22.316448px;}
.wsa0{word-spacing:22.778159px;}
.ws56{word-spacing:22.858419px;}
.ws68{word-spacing:23.336628px;}
.ws76{word-spacing:24.305430px;}
.ws39{word-spacing:24.723312px;}
.ws12{word-spacing:25.679727px;}
.ws40{word-spacing:26.269065px;}
.ws30{word-spacing:26.660051px;}
.ws72{word-spacing:27.359973px;}
.ws6c{word-spacing:27.481112px;}
.wsa2{word-spacing:27.578154px;}
.ws46{word-spacing:27.796336px;}
.ws69{word-spacing:28.756337px;}
.wsb{word-spacing:28.788073px;}
.ws16{word-spacing:29.027177px;}
.wsae{word-spacing:29.759970px;}
.ws1{word-spacing:30.260952px;}
.ws92{word-spacing:30.850878px;}
.ws2{word-spacing:31.125516px;}
.ws2c{word-spacing:31.469824px;}
.ws4a{word-spacing:32.159968px;}
.ws6e{word-spacing:32.263208px;}
.ws4b{word-spacing:32.814513px;}
.ws37{word-spacing:33.331042px;}
.ws4d{word-spacing:33.687239px;}
.ws1a{word-spacing:34.335449px;}
.wse{word-spacing:34.765663px;}
.ws85{word-spacing:34.996329px;}
.ws58{word-spacing:35.068704px;}
.ws71{word-spacing:35.228107px;}
.ws51{word-spacing:35.610675px;}
.ws1c{word-spacing:36.248288px;}
.ws89{word-spacing:38.050871px;}
.ws22{word-spacing:38.535840px;}
.wsb0{word-spacing:38.705416px;}
.wsa{word-spacing:39.069528px;}
.ws88{word-spacing:39.578142px;}
.ws3c{word-spacing:40.743253px;}
.ws4e{word-spacing:40.887232px;}
.ws80{word-spacing:41.105413px;}
.ws20{word-spacing:41.524659px;}
.ws8d{word-spacing:41.541777px;}
.ws4{word-spacing:42.177875px;}
.ws98{word-spacing:42.414503px;}
.ws90{word-spacing:42.850866px;}
.ws66{word-spacing:43.262028px;}
.ws87{word-spacing:43.723593px;}
.ws60{word-spacing:43.899641px;}
.ws11{word-spacing:44.612376px;}
.ws6b{word-spacing:45.653076px;}
.wsa9{word-spacing:46.559953px;}
.wsa3{word-spacing:47.432680px;}
.wsa1{word-spacing:47.650861px;}
.ws57{word-spacing:47.884721px;}
.ws1b{word-spacing:47.950218px;}
.ws96{word-spacing:48.741769px;}
.wsa5{word-spacing:50.050859px;}
.ws38{word-spacing:51.742019px;}
.ws73{word-spacing:53.105401px;}
.ws2e{word-spacing:53.415744px;}
.ws5a{word-spacing:54.579656px;}
.ws4c{word-spacing:54.632673px;}
.wsa7{word-spacing:54.850854px;}
.ws7a{word-spacing:57.032670px;}
.ws9b{word-spacing:57.250852px;}
.ws8e{word-spacing:57.687215px;}
.ws17{word-spacing:57.958713px;}
.ws2f{word-spacing:58.676023px;}
.ws48{word-spacing:59.650849px;}
.ws65{word-spacing:60.636977px;}
.ws4f{word-spacing:62.923573px;}
.ws49{word-spacing:63.141755px;}
.ws6a{word-spacing:63.506235px;}
.ws64{word-spacing:63.665638px;}
.ws2d{word-spacing:63.721109px;}
.wsa4{word-spacing:64.014481px;}
.ws6d{word-spacing:64.622057px;}
.ws7e{word-spacing:65.105389px;}
.wsd{word-spacing:65.131821px;}
.ws0{word-spacing:66.116927px;}
.ws6f{word-spacing:67.013105px;}
.wsa8{word-spacing:67.941750px;}
.wsac{word-spacing:68.814477px;}
.ws47{word-spacing:69.469021px;}
.ws24{word-spacing:70.416576px;}
.ws74{word-spacing:71.214474px;}
.wsf{word-spacing:73.022239px;}
.ws82{word-spacing:74.269017px;}
.ws84{word-spacing:74.923561px;}
.ws55{word-spacing:75.780281px;}
.wsb2{word-spacing:78.196285px;}
.ws52{word-spacing:78.490136px;}
.wsaf{word-spacing:79.505375px;}
.ws99{word-spacing:83.650825px;}
.wsa6{word-spacing:84.305370px;}
.ws78{word-spacing:85.832641px;}
.ws81{word-spacing:87.141731px;}
.wsb1{word-spacing:87.796276px;}
.ws53{word-spacing:89.648360px;}
.ws59{word-spacing:94.271052px;}
.ws79{word-spacing:97.396266px;}
.ws7f{word-spacing:101.759898px;}
.ws8c{word-spacing:103.068988px;}
.ws5d{word-spacing:109.828805px;}
.ws5f{word-spacing:112.761824px;}
.ws77{word-spacing:115.941702px;}
.ws3a{word-spacing:122.669389px;}
.ws5c{word-spacing:124.493899px;}
.ws3b{word-spacing:130.885311px;}
.ws70{word-spacing:131.093192px;}
.ws7c{word-spacing:134.705320px;}
.ws5e{word-spacing:143.941090px;}
.ws7d{word-spacing:154.123482px;}
.ws32{word-spacing:594.268087px;}
.ws31{word-spacing:984.150418px;}
.ws33{word-spacing:984.389521px;}
.ws34{word-spacing:1236.404716px;}
.ws36{word-spacing:1930.873115px;}
._0{margin-left:-54.553877px;}
._23{margin-left:-21.997531px;}
._2{margin-left:-18.382285px;}
._2c{margin-left:-16.474193px;}
._19{margin-left:-15.103563px;}
._12{margin-left:-11.711996px;}
._4{margin-left:-8.703371px;}
._d{margin-left:-7.412212px;}
._7{margin-left:-6.216694px;}
._11{margin-left:-4.782096px;}
._14{margin-left:-3.506870px;}
._20{margin-left:-2.311300px;}
._22{width:1.195518px;}
._1f{width:3.506870px;}
._10{width:4.941499px;}
._6{width:6.216694px;}
._35{width:14.983901px;}
._3{width:17.789308px;}
._1d{width:29.888190px;}
._29{width:37.778369px;}
._15{width:42.612839px;}
._43{width:50.399950px;}
._46{width:54.327218px;}
._32{width:59.776200px;}
._3f{width:62.507546px;}
._42{width:64.799935px;}
._1e{width:65.852209px;}
._c{width:67.188112px;}
._4e{width:69.458426px;}
._8{width:71.724573px;}
._48{width:73.090836px;}
._2a{width:74.839427px;}
._21{width:75.875518px;}
._4c{width:77.890831px;}
._2b{width:79.382395px;}
._4d{width:81.489346px;}
._e{width:83.925364px;}
._30{width:85.963550px;}
._3e{width:87.110323px;}
._1c{width:88.309654px;}
._18{width:91.657116px;}
._1a{width:93.806658px;}
._31{width:94.908996px;}
._9{width:96.128377px;}
._44{width:97.416602px;}
._3d{width:98.618083px;}
._a{width:100.901719px;}
._47{width:106.908984px;}
._1b{width:109.885402px;}
._16{width:112.522836px;}
._33{width:116.523739px;}
._2d{width:117.578984px;}
._f{width:120.508214px;}
._2e{width:122.618059px;}
._41{width:124.145330px;}
._b{width:129.594151px;}
._13{width:131.507640px;}
._2f{width:133.852930px;}
._4a{width:135.272592px;}
._49{width:146.836217px;}
._50{width:147.927125px;}
._17{width:149.552545px;}
._37{width:151.712890px;}
._51{width:156.436207px;}
._34{width:158.924990px;}
._38{width:166.143806px;}
._26{width:174.228477px;}
._4b{width:181.963454px;}
._24{width:195.108538px;}
._3c{width:200.290709px;}
._4f{width:210.763426px;}
._1{width:216.436579px;}
._45{width:218.836145px;}
._3a{width:254.836109px;}
._40{width:257.672470px;}
._36{width:283.199717px;}
._3b{width:293.561861px;}
._39{width:359.781458px;}
._5{width:419.770280px;}
._27{width:647.731652px;}
._28{width:1229.948918px;}
._25{width:2634.921672px;}
.fc5{color:rgb(0,128,0);}
.fc4{color:rgb(0,0,204);}
.fc3{color:rgb(229,115,0);}
.fc2{color:rgb(204,0,0);}
.fc6{color:rgb(102,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:111.581400px;}
.fs8{font-size:119.551800px;}
.fs5{font-size:159.403200px;}
.fs4{font-size:167.371800px;}
.fs7{font-size:199.254600px;}
.fs11{font-size:218.181600px;}
.fse{font-size:239.089282px;}
.fsf{font-size:239.090275px;}
.fsb{font-size:239.091244px;}
.fsd{font-size:239.093151px;}
.fs9{font-size:239.094313px;}
.fs10{font-size:239.094361px;}
.fsa{font-size:239.096729px;}
.fsc{font-size:239.100202px;}
.fs3{font-size:239.103600px;}
.fs1{font-size:334.745040px;}
.fs2{font-size:344.308800px;}
.fs0{font-size:592.976928px;}
.y0{bottom:0.000000px;}
.ye3{bottom:138.355500px;}
.ye9{bottom:152.346000px;}
.ye2{bottom:203.809500px;}
.ye8{bottom:217.800000px;}
.y84{bottom:242.455500px;}
.ye1{bottom:269.265000px;}
.y83{bottom:278.322000px;}
.yb0{bottom:279.306000px;}
.ye7{bottom:283.255500px;}
.yaf{bottom:327.127500px;}
.ye0{bottom:334.719000px;}
.yee{bottom:348.709500px;}
.ye6{bottom:357.814500px;}
.yae{bottom:374.947500px;}
.y82{bottom:404.430000px;}
.ydf{bottom:409.279500px;}
.yed{bottom:414.163500px;}
.yad{bottom:422.769000px;}
.ye5{bottom:423.270000px;}
.y7e{bottom:440.295000px;}
.yac{bottom:470.589000px;}
.yde{bottom:474.733500px;}
.y81{bottom:476.160000px;}
.yec{bottom:488.724000px;}
.ye4{bottom:505.485000px;}
.y7d{bottom:512.026500px;}
.yab{bottom:518.410500px;}
.ydd{bottom:540.189000px;}
.y80{bottom:547.891500px;}
.yeb{bottom:554.178000px;}
.yaa{bottom:566.232000px;}
.y7c{bottom:583.756500px;}
.ya9{bottom:614.052000px;}
.y7f{bottom:619.623000px;}
.ydc{bottom:622.402500px;}
.yea{bottom:636.393000px;}
.ya8{bottom:661.873500px;}
.yf4{bottom:662.404500px;}
.yb5{bottom:709.693500px;}
.y7b{bottom:709.864500px;}
.yf3{bottom:727.858500px;}
.ya7{bottom:757.512000px;}
.ydb{bottom:776.350500px;}
.yb4{bottom:781.423500px;}
.y7a{bottom:781.596000px;}
.yf2{bottom:793.312500px;}
.ya6{bottom:805.333500px;}
.yb3{bottom:829.245000px;}
.yda{bottom:841.804500px;}
.ya5{bottom:853.153500px;}
.y79{bottom:853.326000px;}
.yf1{bottom:864.082500px;}
.yb2{bottom:877.066500px;}
.ya4{bottom:900.975000px;}
.yd9{bottom:907.258500px;}
.yb1{bottom:924.886500px;}
.y78{bottom:925.057500px;}
.yf0{bottom:929.536500px;}
.ya3{bottom:948.796500px;}
.y72{bottom:960.922500px;}
.yd8{bottom:972.714000px;}
.ya2{bottom:996.616500px;}
.y77{bottom:996.789000px;}
.y23{bottom:1000.951500px;}
.yef{bottom:1011.751500px;}
.y71{bottom:1032.654000px;}
.yd7{bottom:1038.168000px;}
.ya1{bottom:1044.438000px;}
.y22{bottom:1048.773000px;}
.y76{bottom:1068.519000px;}
.ya0{bottom:1092.258000px;}
.y21{bottom:1096.594500px;}
.yd6{bottom:1112.728500px;}
.y75{bottom:1140.250500px;}
.y20{bottom:1144.414500px;}
.yfc{bottom:1165.698000px;}
.y9f{bottom:1169.233500px;}
.yd5{bottom:1178.182500px;}
.y1f{bottom:1192.236000px;}
.y74{bottom:1211.982000px;}
.yfb{bottom:1231.153500px;}
.yd4{bottom:1260.397500px;}
.y73{bottom:1283.712000px;}
.yfa{bottom:1296.607500px;}
.y1e{bottom:1316.289000px;}
.y9e{bottom:1347.408000px;}
.yf9{bottom:1362.061500px;}
.y70{bottom:1373.955000px;}
.y1d{bottom:1388.020500px;}
.y9d{bottom:1412.862000px;}
.yd3{bottom:1414.344000px;}
.yf8{bottom:1427.517000px;}
.y6e{bottom:1445.686500px;}
.y1c{bottom:1459.752000px;}
.y9c{bottom:1478.317500px;}
.yd2{bottom:1479.799500px;}
.yf7{bottom:1502.076000px;}
.y6d{bottom:1517.416500px;}
.y1b{bottom:1531.482000px;}
.y9b{bottom:1543.771500px;}
.yd1{bottom:1545.253500px;}
.yf6{bottom:1567.531500px;}
.y6f{bottom:1589.148000px;}
.y1a{bottom:1603.213500px;}
.y9a{bottom:1609.225500px;}
.yd0{bottom:1610.709000px;}
.yf5{bottom:1649.746500px;}
.y99{bottom:1674.681000px;}
.y19{bottom:1674.945000px;}
.ycf{bottom:1676.163000px;}
.y6c{bottom:1679.391000px;}
.y98{bottom:1740.135000px;}
.yce{bottom:1741.617000px;}
.y18{bottom:1746.675000px;}
.y10a{bottom:1793.083500px;}
.y97{bottom:1805.590500px;}
.ycd{bottom:1807.072500px;}
.y17{bottom:1818.406500px;}
.y6b{bottom:1824.331500px;}
.y109{bottom:1858.539000px;}
.y96{bottom:1871.044500px;}
.ycc{bottom:1881.631500px;}
.y6a{bottom:1896.063000px;}
.y16{bottom:1922.742000px;}
.y108{bottom:1923.993000px;}
.y11a{bottom:1931.716500px;}
.y95{bottom:1936.498500px;}
.ycb{bottom:1947.087000px;}
.y69{bottom:1967.794500px;}
.y107{bottom:1989.447000px;}
.y15{bottom:1994.473500px;}
.y94{bottom:2001.954000px;}
.yca{bottom:2029.302000px;}
.y119{bottom:2035.009500px;}
.y106{bottom:2054.902500px;}
.y68{bottom:2058.810000px;}
.y14{bottom:2066.205000px;}
.y93{bottom:2100.013500px;}
.y105{bottom:2120.356500px;}
.y13{bottom:2137.935000px;}
.y118{bottom:2138.302500px;}
.y92{bottom:2165.467500px;}
.yc9{bottom:2183.248500px;}
.y104{bottom:2185.810500px;}
.y12{bottom:2209.666500px;}
.y91{bottom:2230.921500px;}
.y67{bottom:2238.003000px;}
.yc8{bottom:2248.702500px;}
.y103{bottom:2251.266000px;}
.y11{bottom:2281.398000px;}
.y90{bottom:2296.377000px;}
.y66{bottom:2309.733000px;}
.y102{bottom:2316.720000px;}
.yc7{bottom:2323.263000px;}
.y10{bottom:2353.128000px;}
.y8f{bottom:2361.831000px;}
.y65{bottom:2381.464500px;}
.y101{bottom:2382.175500px;}
.yc6{bottom:2388.717000px;}
.y8e{bottom:2427.286500px;}
.yf{bottom:2446.797000px;}
.y100{bottom:2447.629500px;}
.yc5{bottom:2470.932000px;}
.y32{bottom:2473.345500px;}
.y8d{bottom:2492.740500px;}
.yff{bottom:2518.398000px;}
.y31{bottom:2533.122000px;}
.y8c{bottom:2558.194500px;}
.y52{bottom:2578.230000px;}
.yfe{bottom:2583.853500px;}
.y30{bottom:2592.897000px;}
.y4c{bottom:2605.162500px;}
.y4f{bottom:2609.209500px;}
.y51{bottom:2614.096500px;}
.ye{bottom:2621.833500px;}
.yc4{bottom:2624.880000px;}
.y4b{bottom:2641.027500px;}
.y4e{bottom:2645.076000px;}
.y8b{bottom:2645.526000px;}
.y50{bottom:2649.961500px;}
.yfd{bottom:2666.068500px;}
.y55{bottom:2670.801000px;}
.y4a{bottom:2676.892500px;}
.y4d{bottom:2680.941000px;}
.yc3{bottom:2690.334000px;}
.yd{bottom:2693.565000px;}
.y2f{bottom:2705.874000px;}
.y54{bottom:2706.666000px;}
.y53{bottom:2742.532500px;}
.yc2{bottom:2755.788000px;}
.y49{bottom:2757.558000px;}
.y2e{bottom:2765.650500px;}
.y46{bottom:2775.490500px;}
.y48{bottom:2793.423000px;}
.y45{bottom:2811.357000px;}
.yc{bottom:2813.112000px;}
.y110{bottom:2820.015000px;}
.yc1{bottom:2821.243500px;}
.y8a{bottom:2827.984500px;}
.y47{bottom:2829.289500px;}
.y58{bottom:2847.222000px;}
.y2d{bottom:2878.627500px;}
.y57{bottom:2883.087000px;}
.yb{bottom:2884.843500px;}
.y10f{bottom:2885.469000px;}
.yc0{bottom:2886.697500px;}
.y89{bottom:2899.716000px;}
.y44{bottom:2918.610000px;}
.y56{bottom:2918.953500px;}
.y2c{bottom:2938.404000px;}
.y10e{bottom:2950.924500px;}
.ya{bottom:2956.573500px;}
.ybf{bottom:2964.229500px;}
.y88{bottom:2971.446000px;}
.y43{bottom:2986.570500px;}
.y33{bottom:3014.814000px;}
.y42{bottom:3022.435500px;}
.y10d{bottom:3025.483500px;}
.ybe{bottom:3029.685000px;}
.y9{bottom:3047.590500px;}
.y2b{bottom:3051.381000px;}
.y5a{bottom:3076.234500px;}
.y3d{bottom:3079.141500px;}
.y10c{bottom:3090.939000px;}
.y87{bottom:3090.993000px;}
.y11c{bottom:3103.108500px;}
.y2a{bottom:3111.157500px;}
.ybd{bottom:3111.900000px;}
.y59{bottom:3112.099500px;}
.y3c{bottom:3115.006500px;}
.y5c{bottom:3134.557500px;}
.y11b{bottom:3135.865500px;}
.y86{bottom:3162.724500px;}
.y41{bottom:3165.898500px;}
.y5b{bottom:3170.422500px;}
.y10b{bottom:3173.154000px;}
.y40{bottom:3201.763500px;}
.y29{bottom:3224.134500px;}
.y8{bottom:3234.456000px;}
.y3f{bottom:3255.562500px;}
.ybc{bottom:3265.846500px;}
.y28{bottom:3283.911000px;}
.y34{bottom:3285.201000px;}
.y3e{bottom:3291.427500px;}
.y7{bottom:3306.186000px;}
.y116{bottom:3327.100500px;}
.ybb{bottom:3331.300500px;}
.y3b{bottom:3336.093000px;}
.y27{bottom:3343.686000px;}
.y36{bottom:3352.629000px;}
.y85{bottom:3354.003000px;}
.y3a{bottom:3371.958000px;}
.y35{bottom:3388.494000px;}
.y115{bottom:3392.554500px;}
.yba{bottom:3396.756000px;}
.y39{bottom:3407.823000px;}
.y6{bottom:3425.733000px;}
.y38{bottom:3445.200000px;}
.y26{bottom:3456.663000px;}
.y114{bottom:3458.010000px;}
.yb9{bottom:3462.210000px;}
.y60{bottom:3467.335500px;}
.y37{bottom:3481.065000px;}
.y61{bottom:3486.352500px;}
.y5{bottom:3497.464500px;}
.y62{bottom:3498.192000px;}
.y63{bottom:3512.464500px;}
.y25{bottom:3516.439500px;}
.y64{bottom:3521.994000px;}
.y113{bottom:3523.464000px;}
.y117{bottom:3527.664000px;}
.yb8{bottom:3536.770500px;}
.y4{bottom:3569.196000px;}
.y5f{bottom:3571.515000px;}
.y5d{bottom:3571.977000px;}
.y5e{bottom:3572.625000px;}
.y24{bottom:3576.216000px;}
.y112{bottom:3598.024500px;}
.yb7{bottom:3602.224500px;}
.y3{bottom:3660.211500px;}
.y111{bottom:3680.239500px;}
.yb6{bottom:3684.439500px;}
.y2{bottom:3819.904500px;}
.y1{bottom:3947.052000px;}
.ha{height:89.544298px;}
.h17{height:110.625821px;}
.h6{height:119.392997px;}
.h7{height:141.420469px;}
.h8{height:149.241695px;}
.h9{height:149.247695px;}
.h16{height:163.418018px;}
.h13{height:171.198178px;}
.h10{height:179.077872px;}
.h11{height:179.078616px;}
.hd{height:179.079342px;}
.hf{height:179.080770px;}
.hb{height:179.081641px;}
.h12{height:179.081677px;}
.hc{height:179.083450px;}
.he{height:179.086051px;}
.h4{height:179.088596px;}
.h5{height:212.133478px;}
.h2{height:250.724035px;}
.h3{height:257.887291px;}
.h14{height:310.593416px;}
.h15{height:322.548596px;}
.h1{height:424.571480px;}
.h0{height:4104.000000px;}
.w0{width:8208.000000px;}
.x0{left:0.000000px;}
.x4{left:153.216000px;}
.x3{left:167.050500px;}
.x6{left:186.183000px;}
.x5{left:204.409500px;}
.x1{left:418.585500px;}
.x2{left:531.010500px;}
.x8{left:1758.903000px;}
.x7{left:1765.450500px;}
.x38{left:1774.416000px;}
.x9{left:1802.809500px;}
.x46{left:2116.734000px;}
.x3b{left:2152.596000px;}
.x48{left:2178.058500px;}
.x47{left:2201.602500px;}
.x3f{left:2292.477000px;}
.x3e{left:2358.682500px;}
.x3c{left:2367.666000px;}
.x42{left:2398.825500px;}
.x43{left:2423.472000px;}
.x49{left:2455.348500px;}
.x44{left:2466.108000px;}
.x40{left:2492.919000px;}
.x41{left:2494.552500px;}
.x39{left:2537.602500px;}
.x3d{left:2549.323500px;}
.x3a{left:2570.461500px;}
.x45{left:2587.566000px;}
.x19{left:2927.382000px;}
.x17{left:2929.993500px;}
.x18{left:2931.963000px;}
.x1c{left:2986.663500px;}
.x1d{left:2994.523500px;}
.x1e{left:3004.672500px;}
.x33{left:3028.365000px;}
.x34{left:3054.852000px;}
.x35{left:3072.865500px;}
.x14{left:3077.692500px;}
.x15{left:3079.627500px;}
.x1f{left:3084.577500px;}
.x20{left:3085.953000px;}
.x16{left:3087.267000px;}
.x13{left:3088.539000px;}
.x21{left:3093.166500px;}
.x36{left:3097.158000px;}
.x37{left:3114.958500px;}
.x1a{left:3165.156000px;}
.xd{left:3168.640500px;}
.xc{left:3186.909000px;}
.x1b{left:3189.280500px;}
.x24{left:3255.708000px;}
.x23{left:3262.242000px;}
.x22{left:3277.875000px;}
.xa{left:3295.321500px;}
.xb{left:3320.040000px;}
.xf{left:3322.465500px;}
.xe{left:3342.211500px;}
.x31{left:3377.425500px;}
.x32{left:3407.256000px;}
.x27{left:3471.289500px;}
.x25{left:3479.607000px;}
.x10{left:3480.807000px;}
.x11{left:3487.137000px;}
.x28{left:3488.586000px;}
.x26{left:3494.566500px;}
.x12{left:3499.383000px;}
.x2e{left:3587.482500px;}
.x2d{left:3588.750000px;}
.x2c{left:3627.877500px;}
.x29{left:3634.027500px;}
.x2b{left:3635.985000px;}
.x2a{left:3644.488500px;}
.x2f{left:3755.692500px;}
.x30{left:3761.854500px;}
.x50{left:4003.200000px;}
.x52{left:4962.249000px;}
.x56{left:4966.969500px;}
.x57{left:5077.182000px;}
.x53{left:5078.850000px;}
.x55{left:5081.031000px;}
.x54{left:5114.757000px;}
.x51{left:5925.600000px;}
.x4b{left:6866.491500px;}
.x4a{left:6880.324500px;}
.x4c{left:6917.685000px;}
.x4d{left:6924.417000px;}
.x4f{left:7482.751500px;}
.x4e{left:7526.842500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:51.418667pt;}
.v1{vertical-align:77.130667pt;}
.v3{vertical-align:127.520000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:26.567067pt;}
.ls1{letter-spacing:26.572113pt;}
.ls2{letter-spacing:41.449267pt;}
.ls4{letter-spacing:66.949008pt;}
.ls3{letter-spacing:73.112567pt;}
.ls6{letter-spacing:73.963085pt;}
.ls7{letter-spacing:74.104777pt;}
.ls5{letter-spacing:1093.287927pt;}
.ws3e{word-spacing:-68.127235pt;}
.ws10{word-spacing:-47.310632pt;}
.ws23{word-spacing:-39.425844pt;}
.ws2a{word-spacing:-23.655316pt;}
.ws35{word-spacing:-13.942397pt;}
.ws1f{word-spacing:-12.858564pt;}
.ws83{word-spacing:-2.443634pt;}
.ws97{word-spacing:-2.249695pt;}
.ws26{word-spacing:-1.168960pt;}
.ws27{word-spacing:-1.162249pt;}
.ws63{word-spacing:-0.141692pt;}
.wsb3{word-spacing:0.000000pt;}
.ws42{word-spacing:0.271515pt;}
.ws44{word-spacing:1.047272pt;}
.ws9a{word-spacing:1.629089pt;}
.wsab{word-spacing:2.210907pt;}
.ws14{word-spacing:2.635453pt;}
.ws9e{word-spacing:4.344238pt;}
.ws91{word-spacing:4.926056pt;}
.ws7b{word-spacing:5.701812pt;}
.ws1d{word-spacing:6.007729pt;}
.ws25{word-spacing:6.092763pt;}
.ws62{word-spacing:6.149421pt;}
.ws9f{word-spacing:6.477569pt;}
.ws7{word-spacing:7.199177pt;}
.ws1e{word-spacing:7.282955pt;}
.ws5b{word-spacing:7.708030pt;}
.ws9d{word-spacing:8.998779pt;}
.ws3d{word-spacing:9.011549pt;}
.ws54{word-spacing:9.266639pt;}
.ws29{word-spacing:9.606651pt;}
.ws8a{word-spacing:10.356353pt;}
.ws15{word-spacing:10.924378pt;}
.wsad{word-spacing:12.295745pt;}
.ws67{word-spacing:12.808933pt;}
.ws13{word-spacing:12.837207pt;}
.ws45{word-spacing:12.877563pt;}
.ws75{word-spacing:13.071502pt;}
.ws93{word-spacing:13.459380pt;}
.wsc{word-spacing:13.687353pt;}
.ws43{word-spacing:14.041198pt;}
.ws3f{word-spacing:14.235137pt;}
.ws19{word-spacing:14.509233pt;}
.ws3{word-spacing:14.750035pt;}
.ws41{word-spacing:14.816955pt;}
.ws8{word-spacing:14.962572pt;}
.wsaa{word-spacing:15.204833pt;}
.ws8b{word-spacing:15.398772pt;}
.ws28{word-spacing:15.479868pt;}
.ws21{word-spacing:16.011214pt;}
.ws95{word-spacing:16.368468pt;}
.ws18{word-spacing:17.498929pt;}
.ws50{word-spacing:17.532104pt;}
.ws8f{word-spacing:17.726043pt;}
.ws6{word-spacing:17.938083pt;}
.ws86{word-spacing:18.501800pt;}
.ws9c{word-spacing:18.695739pt;}
.ws5{word-spacing:19.213303pt;}
.ws9{word-spacing:19.425839pt;}
.ws94{word-spacing:19.471496pt;}
.ws2b{word-spacing:19.638376pt;}
.ws61{word-spacing:19.836843pt;}
.wsa0{word-spacing:20.247252pt;}
.ws56{word-spacing:20.318595pt;}
.ws68{word-spacing:20.743670pt;}
.ws76{word-spacing:21.604827pt;}
.ws39{word-spacing:21.976278pt;}
.ws12{word-spacing:22.826424pt;}
.ws40{word-spacing:23.350280pt;}
.ws30{word-spacing:23.697823pt;}
.ws72{word-spacing:24.319976pt;}
.ws6c{word-spacing:24.427655pt;}
.wsa2{word-spacing:24.513915pt;}
.ws46{word-spacing:24.707854pt;}
.ws69{word-spacing:25.561189pt;}
.wsb{word-spacing:25.589399pt;}
.ws16{word-spacing:25.801935pt;}
.wsae{word-spacing:26.453307pt;}
.ws1{word-spacing:26.898624pt;}
.ws92{word-spacing:27.423003pt;}
.ws2{word-spacing:27.667125pt;}
.ws2c{word-spacing:27.973177pt;}
.ws4a{word-spacing:28.586638pt;}
.ws6e{word-spacing:28.678407pt;}
.ws4b{word-spacing:29.168456pt;}
.ws37{word-spacing:29.627593pt;}
.ws4d{word-spacing:29.944212pt;}
.ws1a{word-spacing:30.520399pt;}
.wse{word-spacing:30.902812pt;}
.ws85{word-spacing:31.107848pt;}
.ws58{word-spacing:31.172181pt;}
.ws71{word-spacing:31.313873pt;}
.ws51{word-spacing:31.653933pt;}
.ws1c{word-spacing:32.220700pt;}
.ws89{word-spacing:33.822996pt;}
.ws22{word-spacing:34.254080pt;}
.wsb0{word-spacing:34.404814pt;}
.wsa{word-spacing:34.728470pt;}
.ws88{word-spacing:35.180571pt;}
.ws3c{word-spacing:36.216225pt;}
.ws4e{word-spacing:36.344206pt;}
.ws80{word-spacing:36.538145pt;}
.ws20{word-spacing:36.910808pt;}
.ws8d{word-spacing:36.926024pt;}
.ws4{word-spacing:37.491444pt;}
.ws98{word-spacing:37.701780pt;}
.ws90{word-spacing:38.089659pt;}
.ws66{word-spacing:38.455136pt;}
.ws87{word-spacing:38.865416pt;}
.ws60{word-spacing:39.021903pt;}
.ws11{word-spacing:39.655446pt;}
.ws6b{word-spacing:40.580512pt;}
.wsa9{word-spacing:41.386625pt;}
.wsa3{word-spacing:42.162382pt;}
.wsa1{word-spacing:42.356321pt;}
.ws57{word-spacing:42.564197pt;}
.ws1b{word-spacing:42.622416pt;}
.ws96{word-spacing:43.326017pt;}
.wsa5{word-spacing:44.489652pt;}
.ws38{word-spacing:45.992906pt;}
.ws73{word-spacing:47.204801pt;}
.ws2e{word-spacing:47.480662pt;}
.ws5a{word-spacing:48.515249pt;}
.ws4c{word-spacing:48.562376pt;}
.wsa7{word-spacing:48.756315pt;}
.ws7a{word-spacing:50.695707pt;}
.ws9b{word-spacing:50.889646pt;}
.ws8e{word-spacing:51.277524pt;}
.ws17{word-spacing:51.518856pt;}
.ws2f{word-spacing:52.156465pt;}
.ws48{word-spacing:53.022977pt;}
.ws65{word-spacing:53.899535pt;}
.ws4f{word-spacing:55.932065pt;}
.ws49{word-spacing:56.126004pt;}
.ws6a{word-spacing:56.449987pt;}
.ws64{word-spacing:56.591678pt;}
.ws2d{word-spacing:56.640986pt;}
.wsa4{word-spacing:56.901761pt;}
.ws6d{word-spacing:57.441829pt;}
.ws7e{word-spacing:57.871457pt;}
.wsd{word-spacing:57.894952pt;}
.ws0{word-spacing:58.770602pt;}
.ws6f{word-spacing:59.567205pt;}
.wsa8{word-spacing:60.392667pt;}
.wsac{word-spacing:61.168424pt;}
.ws47{word-spacing:61.750241pt;}
.ws24{word-spacing:62.592512pt;}
.ws74{word-spacing:63.301755pt;}
.wsf{word-spacing:64.908657pt;}
.ws82{word-spacing:66.016904pt;}
.ws84{word-spacing:66.598721pt;}
.ws55{word-spacing:67.360250pt;}
.wsb2{word-spacing:69.507809pt;}
.ws52{word-spacing:69.769009pt;}
.wsaf{word-spacing:70.671444pt;}
.ws99{word-spacing:74.356289pt;}
.wsa6{word-spacing:74.938107pt;}
.ws78{word-spacing:76.295681pt;}
.ws81{word-spacing:77.459316pt;}
.wsb1{word-spacing:78.041134pt;}
.ws53{word-spacing:79.687431pt;}
.ws59{word-spacing:83.796491pt;}
.ws79{word-spacing:86.574459pt;}
.ws7f{word-spacing:90.453243pt;}
.ws8c{word-spacing:91.616878pt;}
.ws5d{word-spacing:97.625604pt;}
.ws5f{word-spacing:100.232732pt;}
.ws77{word-spacing:103.059291pt;}
.ws3a{word-spacing:109.039457pt;}
.ws5c{word-spacing:110.661244pt;}
.ws3b{word-spacing:116.342498pt;}
.ws70{word-spacing:116.527281pt;}
.ws7c{word-spacing:119.738062pt;}
.ws5e{word-spacing:127.947635pt;}
.ws7d{word-spacing:136.998651pt;}
.ws32{word-spacing:528.238300pt;}
.ws31{word-spacing:874.800371pt;}
.ws33{word-spacing:875.012908pt;}
.ws34{word-spacing:1099.026414pt;}
.ws36{word-spacing:1716.331658pt;}
._0{margin-left:-48.492335pt;}
._23{margin-left:-19.553361pt;}
._2{margin-left:-16.339809pt;}
._2c{margin-left:-14.643727pt;}
._19{margin-left:-13.425389pt;}
._12{margin-left:-10.410663pt;}
._4{margin-left:-7.736330pt;}
._d{margin-left:-6.588633pt;}
._7{margin-left:-5.525950pt;}
._11{margin-left:-4.250752pt;}
._14{margin-left:-3.117218pt;}
._20{margin-left:-2.054489pt;}
._22{width:1.062683pt;}
._1f{width:3.117218pt;}
._10{width:4.392444pt;}
._6{width:5.525950pt;}
._35{width:13.319023pt;}
._3{width:15.812718pt;}
._1d{width:26.567280pt;}
._29{width:33.580772pt;}
._15{width:37.878079pt;}
._43{width:44.799955pt;}
._46{width:48.290861pt;}
._32{width:53.134400pt;}
._3f{width:55.562263pt;}
._42{width:57.599942pt;}
._1e{width:58.535297pt;}
._c{width:59.722766pt;}
._4e{width:61.740823pt;}
._8{width:63.755176pt;}
._48{width:64.969632pt;}
._2a{width:66.523935pt;}
._21{width:67.444905pt;}
._4c{width:69.236294pt;}
._2b{width:70.562129pt;}
._4d{width:72.434974pt;}
._e{width:74.600323pt;}
._30{width:76.412045pt;}
._3e{width:77.431398pt;}
._1c{width:78.497470pt;}
._18{width:81.472992pt;}
._1a{width:83.383696pt;}
._31{width:84.363552pt;}
._9{width:85.447446pt;}
._44{width:86.592535pt;}
._3d{width:87.660518pt;}
._a{width:89.690417pt;}
._47{width:95.030208pt;}
._1b{width:97.675913pt;}
._16{width:100.020298pt;}
._33{width:103.576657pt;}
._2d{width:104.514653pt;}
._f{width:107.118413pt;}
._2e{width:108.993830pt;}
._41{width:110.351405pt;}
._b{width:115.194801pt;}
._13{width:116.895680pt;}
._2f{width:118.980382pt;}
._4a{width:120.242304pt;}
._49{width:130.521082pt;}
._50{width:131.490778pt;}
._17{width:132.935595pt;}
._37{width:134.855902pt;}
._51{width:139.054406pt;}
._34{width:141.266658pt;}
._38{width:147.683383pt;}
._26{width:154.869758pt;}
._4b{width:161.745293pt;}
._24{width:173.429811pt;}
._3c{width:178.036186pt;}
._4f{width:187.345267pt;}
._1{width:192.388070pt;}
._45{width:194.521018pt;}
._3a{width:226.520986pt;}
._40{width:229.042195pt;}
._36{width:251.733082pt;}
._3b{width:260.943876pt;}
._39{width:319.805741pt;}
._5{width:373.129138pt;}
._27{width:575.761469pt;}
._28{width:1093.287927pt;}
._25{width:2342.152597pt;}
.fs6{font-size:99.183467pt;}
.fs8{font-size:106.268267pt;}
.fs5{font-size:141.691733pt;}
.fs4{font-size:148.774933pt;}
.fs7{font-size:177.115200pt;}
.fs11{font-size:193.939200pt;}
.fse{font-size:212.523806pt;}
.fsf{font-size:212.524689pt;}
.fsb{font-size:212.525550pt;}
.fsd{font-size:212.527245pt;}
.fs9{font-size:212.528279pt;}
.fs10{font-size:212.528321pt;}
.fsa{font-size:212.530426pt;}
.fsc{font-size:212.533513pt;}
.fs3{font-size:212.536533pt;}
.fs1{font-size:297.551147pt;}
.fs2{font-size:306.052267pt;}
.fs0{font-size:527.090603pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:122.982667pt;}
.ye9{bottom:135.418667pt;}
.ye2{bottom:181.164000pt;}
.ye8{bottom:193.600000pt;}
.y84{bottom:215.516000pt;}
.ye1{bottom:239.346667pt;}
.y83{bottom:247.397333pt;}
.yb0{bottom:248.272000pt;}
.ye7{bottom:251.782667pt;}
.yaf{bottom:290.780000pt;}
.ye0{bottom:297.528000pt;}
.yee{bottom:309.964000pt;}
.ye6{bottom:318.057333pt;}
.yae{bottom:333.286667pt;}
.y82{bottom:359.493333pt;}
.ydf{bottom:363.804000pt;}
.yed{bottom:368.145333pt;}
.yad{bottom:375.794667pt;}
.ye5{bottom:376.240000pt;}
.y7e{bottom:391.373333pt;}
.yac{bottom:418.301333pt;}
.yde{bottom:421.985333pt;}
.y81{bottom:423.253333pt;}
.yec{bottom:434.421333pt;}
.ye4{bottom:449.320000pt;}
.y7d{bottom:455.134667pt;}
.yab{bottom:460.809333pt;}
.ydd{bottom:480.168000pt;}
.y80{bottom:487.014667pt;}
.yeb{bottom:492.602667pt;}
.yaa{bottom:503.317333pt;}
.y7c{bottom:518.894667pt;}
.ya9{bottom:545.824000pt;}
.y7f{bottom:550.776000pt;}
.ydc{bottom:553.246667pt;}
.yea{bottom:565.682667pt;}
.ya8{bottom:588.332000pt;}
.yf4{bottom:588.804000pt;}
.yb5{bottom:630.838667pt;}
.y7b{bottom:630.990667pt;}
.yf3{bottom:646.985333pt;}
.ya7{bottom:673.344000pt;}
.ydb{bottom:690.089333pt;}
.yb4{bottom:694.598667pt;}
.y7a{bottom:694.752000pt;}
.yf2{bottom:705.166667pt;}
.ya6{bottom:715.852000pt;}
.yb3{bottom:737.106667pt;}
.yda{bottom:748.270667pt;}
.ya5{bottom:758.358667pt;}
.y79{bottom:758.512000pt;}
.yf1{bottom:768.073333pt;}
.yb2{bottom:779.614667pt;}
.ya4{bottom:800.866667pt;}
.yd9{bottom:806.452000pt;}
.yb1{bottom:822.121333pt;}
.y78{bottom:822.273333pt;}
.yf0{bottom:826.254667pt;}
.ya3{bottom:843.374667pt;}
.y72{bottom:854.153333pt;}
.yd8{bottom:864.634667pt;}
.ya2{bottom:885.881333pt;}
.y77{bottom:886.034667pt;}
.y23{bottom:889.734667pt;}
.yef{bottom:899.334667pt;}
.y71{bottom:917.914667pt;}
.yd7{bottom:922.816000pt;}
.ya1{bottom:928.389333pt;}
.y22{bottom:932.242667pt;}
.y76{bottom:949.794667pt;}
.ya0{bottom:970.896000pt;}
.y21{bottom:974.750667pt;}
.yd6{bottom:989.092000pt;}
.y75{bottom:1013.556000pt;}
.y20{bottom:1017.257333pt;}
.yfc{bottom:1036.176000pt;}
.y9f{bottom:1039.318667pt;}
.yd5{bottom:1047.273333pt;}
.y1f{bottom:1059.765333pt;}
.y74{bottom:1077.317333pt;}
.yfb{bottom:1094.358667pt;}
.yd4{bottom:1120.353333pt;}
.y73{bottom:1141.077333pt;}
.yfa{bottom:1152.540000pt;}
.y1e{bottom:1170.034667pt;}
.y9e{bottom:1197.696000pt;}
.yf9{bottom:1210.721333pt;}
.y70{bottom:1221.293333pt;}
.y1d{bottom:1233.796000pt;}
.y9d{bottom:1255.877333pt;}
.yd3{bottom:1257.194667pt;}
.yf8{bottom:1268.904000pt;}
.y6e{bottom:1285.054667pt;}
.y1c{bottom:1297.557333pt;}
.y9c{bottom:1314.060000pt;}
.yd2{bottom:1315.377333pt;}
.yf7{bottom:1335.178667pt;}
.y6d{bottom:1348.814667pt;}
.y1b{bottom:1361.317333pt;}
.y9b{bottom:1372.241333pt;}
.yd1{bottom:1373.558667pt;}
.yf6{bottom:1393.361333pt;}
.y6f{bottom:1412.576000pt;}
.y1a{bottom:1425.078667pt;}
.y9a{bottom:1430.422667pt;}
.yd0{bottom:1431.741333pt;}
.yf5{bottom:1466.441333pt;}
.y99{bottom:1488.605333pt;}
.y19{bottom:1488.840000pt;}
.ycf{bottom:1489.922667pt;}
.y6c{bottom:1492.792000pt;}
.y98{bottom:1546.786667pt;}
.yce{bottom:1548.104000pt;}
.y18{bottom:1552.600000pt;}
.y10a{bottom:1593.852000pt;}
.y97{bottom:1604.969333pt;}
.ycd{bottom:1606.286667pt;}
.y17{bottom:1616.361333pt;}
.y6b{bottom:1621.628000pt;}
.y109{bottom:1652.034667pt;}
.y96{bottom:1663.150667pt;}
.ycc{bottom:1672.561333pt;}
.y6a{bottom:1685.389333pt;}
.y16{bottom:1709.104000pt;}
.y108{bottom:1710.216000pt;}
.y11a{bottom:1717.081333pt;}
.y95{bottom:1721.332000pt;}
.ycb{bottom:1730.744000pt;}
.y69{bottom:1749.150667pt;}
.y107{bottom:1768.397333pt;}
.y15{bottom:1772.865333pt;}
.y94{bottom:1779.514667pt;}
.yca{bottom:1803.824000pt;}
.y119{bottom:1808.897333pt;}
.y106{bottom:1826.580000pt;}
.y68{bottom:1830.053333pt;}
.y14{bottom:1836.626667pt;}
.y93{bottom:1866.678667pt;}
.y105{bottom:1884.761333pt;}
.y13{bottom:1900.386667pt;}
.y118{bottom:1900.713333pt;}
.y92{bottom:1924.860000pt;}
.yc9{bottom:1940.665333pt;}
.y104{bottom:1942.942667pt;}
.y12{bottom:1964.148000pt;}
.y91{bottom:1983.041333pt;}
.y67{bottom:1989.336000pt;}
.yc8{bottom:1998.846667pt;}
.y103{bottom:2001.125333pt;}
.y11{bottom:2027.909333pt;}
.y90{bottom:2041.224000pt;}
.y66{bottom:2053.096000pt;}
.y102{bottom:2059.306667pt;}
.yc7{bottom:2065.122667pt;}
.y10{bottom:2091.669333pt;}
.y8f{bottom:2099.405333pt;}
.y65{bottom:2116.857333pt;}
.y101{bottom:2117.489333pt;}
.yc6{bottom:2123.304000pt;}
.y8e{bottom:2157.588000pt;}
.yf{bottom:2174.930667pt;}
.y100{bottom:2175.670667pt;}
.yc5{bottom:2196.384000pt;}
.y32{bottom:2198.529333pt;}
.y8d{bottom:2215.769333pt;}
.yff{bottom:2238.576000pt;}
.y31{bottom:2251.664000pt;}
.y8c{bottom:2273.950667pt;}
.y52{bottom:2291.760000pt;}
.yfe{bottom:2296.758667pt;}
.y30{bottom:2304.797333pt;}
.y4c{bottom:2315.700000pt;}
.y4f{bottom:2319.297333pt;}
.y51{bottom:2323.641333pt;}
.ye{bottom:2330.518667pt;}
.yc4{bottom:2333.226667pt;}
.y4b{bottom:2347.580000pt;}
.y4e{bottom:2351.178667pt;}
.y8b{bottom:2351.578667pt;}
.y50{bottom:2355.521333pt;}
.yfd{bottom:2369.838667pt;}
.y55{bottom:2374.045333pt;}
.y4a{bottom:2379.460000pt;}
.y4d{bottom:2383.058667pt;}
.yc3{bottom:2391.408000pt;}
.yd{bottom:2394.280000pt;}
.y2f{bottom:2405.221333pt;}
.y54{bottom:2405.925333pt;}
.y53{bottom:2437.806667pt;}
.yc2{bottom:2449.589333pt;}
.y49{bottom:2451.162667pt;}
.y2e{bottom:2458.356000pt;}
.y46{bottom:2467.102667pt;}
.y48{bottom:2483.042667pt;}
.y45{bottom:2498.984000pt;}
.yc{bottom:2500.544000pt;}
.y110{bottom:2506.680000pt;}
.yc1{bottom:2507.772000pt;}
.y8a{bottom:2513.764000pt;}
.y47{bottom:2514.924000pt;}
.y58{bottom:2530.864000pt;}
.y2d{bottom:2558.780000pt;}
.y57{bottom:2562.744000pt;}
.yb{bottom:2564.305333pt;}
.y10f{bottom:2564.861333pt;}
.yc0{bottom:2565.953333pt;}
.y89{bottom:2577.525333pt;}
.y44{bottom:2594.320000pt;}
.y56{bottom:2594.625333pt;}
.y2c{bottom:2611.914667pt;}
.y10e{bottom:2623.044000pt;}
.ya{bottom:2628.065333pt;}
.ybf{bottom:2634.870667pt;}
.y88{bottom:2641.285333pt;}
.y43{bottom:2654.729333pt;}
.y33{bottom:2679.834667pt;}
.y42{bottom:2686.609333pt;}
.y10d{bottom:2689.318667pt;}
.ybe{bottom:2693.053333pt;}
.y9{bottom:2708.969333pt;}
.y2b{bottom:2712.338667pt;}
.y5a{bottom:2734.430667pt;}
.y3d{bottom:2737.014667pt;}
.y10c{bottom:2747.501333pt;}
.y87{bottom:2747.549333pt;}
.y11c{bottom:2758.318667pt;}
.y2a{bottom:2765.473333pt;}
.ybd{bottom:2766.133333pt;}
.y59{bottom:2766.310667pt;}
.y3c{bottom:2768.894667pt;}
.y5c{bottom:2786.273333pt;}
.y11b{bottom:2787.436000pt;}
.y86{bottom:2811.310667pt;}
.y41{bottom:2814.132000pt;}
.y5b{bottom:2818.153333pt;}
.y10b{bottom:2820.581333pt;}
.y40{bottom:2846.012000pt;}
.y29{bottom:2865.897333pt;}
.y8{bottom:2875.072000pt;}
.y3f{bottom:2893.833333pt;}
.ybc{bottom:2902.974667pt;}
.y28{bottom:2919.032000pt;}
.y34{bottom:2920.178667pt;}
.y3e{bottom:2925.713333pt;}
.y7{bottom:2938.832000pt;}
.y116{bottom:2957.422667pt;}
.ybb{bottom:2961.156000pt;}
.y3b{bottom:2965.416000pt;}
.y27{bottom:2972.165333pt;}
.y36{bottom:2980.114667pt;}
.y85{bottom:2981.336000pt;}
.y3a{bottom:2997.296000pt;}
.y35{bottom:3011.994667pt;}
.y115{bottom:3015.604000pt;}
.yba{bottom:3019.338667pt;}
.y39{bottom:3029.176000pt;}
.y6{bottom:3045.096000pt;}
.y38{bottom:3062.400000pt;}
.y26{bottom:3072.589333pt;}
.y114{bottom:3073.786667pt;}
.yb9{bottom:3077.520000pt;}
.y60{bottom:3082.076000pt;}
.y37{bottom:3094.280000pt;}
.y61{bottom:3098.980000pt;}
.y5{bottom:3108.857333pt;}
.y62{bottom:3109.504000pt;}
.y63{bottom:3122.190667pt;}
.y25{bottom:3125.724000pt;}
.y64{bottom:3130.661333pt;}
.y113{bottom:3131.968000pt;}
.y117{bottom:3135.701333pt;}
.yb8{bottom:3143.796000pt;}
.y4{bottom:3172.618667pt;}
.y5f{bottom:3174.680000pt;}
.y5d{bottom:3175.090667pt;}
.y5e{bottom:3175.666667pt;}
.y24{bottom:3178.858667pt;}
.y112{bottom:3198.244000pt;}
.yb7{bottom:3201.977333pt;}
.y3{bottom:3253.521333pt;}
.y111{bottom:3271.324000pt;}
.yb6{bottom:3275.057333pt;}
.y2{bottom:3395.470667pt;}
.y1{bottom:3508.490667pt;}
.ha{height:79.594932pt;}
.h17{height:98.334063pt;}
.h6{height:106.127108pt;}
.h7{height:125.707083pt;}
.h8{height:132.659285pt;}
.h9{height:132.664618pt;}
.h16{height:145.260461pt;}
.h13{height:152.176158pt;}
.h10{height:159.180331pt;}
.h11{height:159.180992pt;}
.hd{height:159.181637pt;}
.hf{height:159.182907pt;}
.hb{height:159.183681pt;}
.h12{height:159.183713pt;}
.hc{height:159.185289pt;}
.he{height:159.187601pt;}
.h4{height:159.189863pt;}
.h5{height:188.563092pt;}
.h2{height:222.865809pt;}
.h3{height:229.233148pt;}
.h14{height:276.083037pt;}
.h15{height:286.709863pt;}
.h1{height:377.396872pt;}
.h0{height:3648.000000pt;}
.w0{width:7296.000000pt;}
.x0{left:0.000000pt;}
.x4{left:136.192000pt;}
.x3{left:148.489333pt;}
.x6{left:165.496000pt;}
.x5{left:181.697333pt;}
.x1{left:372.076000pt;}
.x2{left:472.009333pt;}
.x8{left:1563.469333pt;}
.x7{left:1569.289333pt;}
.x38{left:1577.258667pt;}
.x9{left:1602.497333pt;}
.x46{left:1881.541333pt;}
.x3b{left:1913.418667pt;}
.x48{left:1936.052000pt;}
.x47{left:1956.980000pt;}
.x3f{left:2037.757333pt;}
.x3e{left:2096.606667pt;}
.x3c{left:2104.592000pt;}
.x42{left:2132.289333pt;}
.x43{left:2154.197333pt;}
.x49{left:2182.532000pt;}
.x44{left:2192.096000pt;}
.x40{left:2215.928000pt;}
.x41{left:2217.380000pt;}
.x39{left:2255.646667pt;}
.x3d{left:2266.065333pt;}
.x3a{left:2284.854667pt;}
.x45{left:2300.058667pt;}
.x19{left:2602.117333pt;}
.x17{left:2604.438667pt;}
.x18{left:2606.189333pt;}
.x1c{left:2654.812000pt;}
.x1d{left:2661.798667pt;}
.x1e{left:2670.820000pt;}
.x33{left:2691.880000pt;}
.x34{left:2715.424000pt;}
.x35{left:2731.436000pt;}
.x14{left:2735.726667pt;}
.x15{left:2737.446667pt;}
.x1f{left:2741.846667pt;}
.x20{left:2743.069333pt;}
.x16{left:2744.237333pt;}
.x13{left:2745.368000pt;}
.x21{left:2749.481333pt;}
.x36{left:2753.029333pt;}
.x37{left:2768.852000pt;}
.x1a{left:2813.472000pt;}
.xd{left:2816.569333pt;}
.xc{left:2832.808000pt;}
.x1b{left:2834.916000pt;}
.x24{left:2893.962667pt;}
.x23{left:2899.770667pt;}
.x22{left:2913.666667pt;}
.xa{left:2929.174667pt;}
.xb{left:2951.146667pt;}
.xf{left:2953.302667pt;}
.xe{left:2970.854667pt;}
.x31{left:3002.156000pt;}
.x32{left:3028.672000pt;}
.x27{left:3085.590667pt;}
.x25{left:3092.984000pt;}
.x10{left:3094.050667pt;}
.x11{left:3099.677333pt;}
.x28{left:3100.965333pt;}
.x26{left:3106.281333pt;}
.x12{left:3110.562667pt;}
.x2e{left:3188.873333pt;}
.x2d{left:3190.000000pt;}
.x2c{left:3224.780000pt;}
.x29{left:3230.246667pt;}
.x2b{left:3231.986667pt;}
.x2a{left:3239.545333pt;}
.x2f{left:3338.393333pt;}
.x30{left:3343.870667pt;}
.x50{left:3558.400000pt;}
.x52{left:4410.888000pt;}
.x56{left:4415.084000pt;}
.x57{left:4513.050667pt;}
.x53{left:4514.533333pt;}
.x55{left:4516.472000pt;}
.x54{left:4546.450667pt;}
.x51{left:5267.200000pt;}
.x4b{left:6103.548000pt;}
.x4a{left:6115.844000pt;}
.x4c{left:6149.053333pt;}
.x4d{left:6155.037333pt;}
.x4f{left:6651.334667pt;}
.x4e{left:6690.526667pt;}
}




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