
    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_f58eda54242cd5aa15010918.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_1c1c69088ef2897ffcedcb28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_99504d4bb79d874ce1fb4827.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.719000;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_dfc59b1afb2cc32ec17ebd77.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_fd8eb28d515d2edc43f212d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_fe9c536eb6f87ad8896a3de0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b36e4baed346fd361c668480.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e840ca7c9896f2bc40b5a400.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_f1c6b5fa0c22e4d18d9ac5b9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4d230acc6020ca2c88b1b909.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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:ffb;src:url('chunks/assets/font_951a39f5d22788d836251d05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.932000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001056px;}
.ls14{letter-spacing:0.001605px;}
.ls2{letter-spacing:0.002161px;}
.ls8{letter-spacing:2.354696px;}
.ls5{letter-spacing:2.360696px;}
.lse{letter-spacing:16.873621px;}
.ls19{letter-spacing:17.629621px;}
.lsf{letter-spacing:19.075621px;}
.ls7{letter-spacing:19.609621px;}
.ls17{letter-spacing:19.975621px;}
.ls11{letter-spacing:20.011621px;}
.ls20{letter-spacing:20.323621px;}
.ls1b{letter-spacing:20.575621px;}
.ls15{letter-spacing:21.277621px;}
.ls1a{letter-spacing:21.709621px;}
.ls9{letter-spacing:21.793621px;}
.ls3{letter-spacing:21.799621px;}
.lsd{letter-spacing:22.573621px;}
.ls10{letter-spacing:22.717621px;}
.ls16{letter-spacing:23.581621px;}
.ls1c{letter-spacing:24.289621px;}
.lsb{letter-spacing:24.883621px;}
.ls1f{letter-spacing:26.011621px;}
.ls1d{letter-spacing:26.599621px;}
.ls12{letter-spacing:28.165621px;}
.lsa{letter-spacing:29.353621px;}
.ls6{letter-spacing:31.117621px;}
.ls18{letter-spacing:31.879621px;}
.ls13{letter-spacing:32.251621px;}
.ls21{letter-spacing:32.724525px;}
.ls22{letter-spacing:32.728321px;}
.lsc{letter-spacing:37.315621px;}
.ls1e{letter-spacing:38.257621px;}
.ls23{letter-spacing:69.000525px;}
.ls1{letter-spacing:253.538700px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2d{word-spacing:-32.727300px;}
.ws2{word-spacing:-19.418971px;}
.ws1a{word-spacing:-18.327288px;}
.ws162{word-spacing:-18.065470px;}
.ws96{word-spacing:-17.672742px;}
.ws155{word-spacing:-17.476378px;}
.ws12e{word-spacing:-17.410924px;}
.ws116{word-spacing:-17.345469px;}
.ws12f{word-spacing:-17.149105px;}
.ws147{word-spacing:-17.018196px;}
.ws124{word-spacing:-16.887287px;}
.ws11{word-spacing:-16.737168px;}
.ws188{word-spacing:-16.690923px;}
.ws174{word-spacing:-16.625468px;}
.wsde{word-spacing:-16.363650px;}
.ws48{word-spacing:-16.268591px;}
.ws169{word-spacing:-16.232741px;}
.ws7b{word-spacing:-16.182514px;}
.ws10b{word-spacing:-16.167286px;}
.ws17a{word-spacing:-15.970922px;}
.wseb{word-spacing:-15.854879px;}
.ws83{word-spacing:-15.840013px;}
.ws13c{word-spacing:-15.709104px;}
.ws8b{word-spacing:-15.643649px;}
.ws189{word-spacing:-15.578195px;}
.ws143{word-spacing:-15.512740px;}
.ws9d{word-spacing:-15.316376px;}
.ws182{word-spacing:-15.250922px;}
.wsc{word-spacing:-15.123227px;}
.ws16b{word-spacing:-15.120013px;}
.wsb{word-spacing:-14.943900px;}
.ws131{word-spacing:-14.858194px;}
.wsc9{word-spacing:-14.661830px;}
.ws158{word-spacing:-14.596376px;}
.ws5f{word-spacing:-14.530921px;}
.ws9e{word-spacing:-14.465467px;}
.ws5e{word-spacing:-14.400012px;}
.wsbb{word-spacing:-14.269103px;}
.ws151{word-spacing:-14.203648px;}
.ws28{word-spacing:-14.138194px;}
.ws122{word-spacing:-14.007284px;}
.ws120{word-spacing:-13.941830px;}
.ws142{word-spacing:-13.745466px;}
.ws2a{word-spacing:-13.680011px;}
.ws100{word-spacing:-13.647986px;}
.wsc1{word-spacing:-13.628928px;}
.ws2b{word-spacing:-13.626319px;}
.ws29{word-spacing:-13.622921px;}
.wsda{word-spacing:-13.557197px;}
.ws14d{word-spacing:-13.549102px;}
.ws4{word-spacing:-13.485466px;}
.wsc3{word-spacing:-13.483648px;}
.wsc5{word-spacing:-13.418193px;}
.ws9f{word-spacing:-13.352738px;}
.ws17f{word-spacing:-13.287284px;}
.wsa1{word-spacing:-13.266115px;}
.ws78{word-spacing:-13.221829px;}
.wsbd{word-spacing:-13.177816px;}
.ws68{word-spacing:-13.156375px;}
.ws85{word-spacing:-13.090920px;}
.ws86{word-spacing:-13.082921px;}
.ws14e{word-spacing:-12.960011px;}
.ws123{word-spacing:-12.894556px;}
.ws67{word-spacing:-12.829102px;}
.ws128{word-spacing:-12.763647px;}
.ws69{word-spacing:-12.698192px;}
.ws3f{word-spacing:-12.632738px;}
.ws13f{word-spacing:-12.567283px;}
.ws16e{word-spacing:-12.501829px;}
.ws181{word-spacing:-12.436374px;}
.ws34{word-spacing:-12.386921px;}
.ws33{word-spacing:-12.370919px;}
.ws104{word-spacing:-12.305465px;}
.wsff{word-spacing:-12.240010px;}
.ws45{word-spacing:-12.174556px;}
.ws10f{word-spacing:-12.109101px;}
.ws10d{word-spacing:-12.056962px;}
.ws10c{word-spacing:-12.043646px;}
.wse9{word-spacing:-11.978192px;}
.wsfa{word-spacing:-11.915082px;}
.wsfd{word-spacing:-11.855215px;}
.ws40{word-spacing:-11.847283px;}
.ws3a{word-spacing:-11.781828px;}
.ws38{word-spacing:-11.716373px;}
.ws149{word-spacing:-11.650919px;}
.ws8d{word-spacing:-11.585464px;}
.ws94{word-spacing:-11.520010px;}
.ws26{word-spacing:-11.454555px;}
.ws16{word-spacing:-11.357364px;}
.ws145{word-spacing:-11.323646px;}
.ws134{word-spacing:-11.258191px;}
.ws24{word-spacing:-11.192737px;}
.ws6c{word-spacing:-11.127282px;}
.ws18{word-spacing:-11.118262px;}
.ws16c{word-spacing:-11.061827px;}
.wsc0{word-spacing:-10.997749px;}
.ws3d{word-spacing:-10.996526px;}
.ws1c{word-spacing:-10.996373px;}
.ws5b{word-spacing:-10.995940px;}
.ws50{word-spacing:-10.995544px;}
.ws95{word-spacing:-10.993237px;}
.wsbf{word-spacing:-10.937039px;}
.wse7{word-spacing:-10.934958px;}
.wsd9{word-spacing:-10.933761px;}
.ws8a{word-spacing:-10.933288px;}
.ws7a{word-spacing:-10.933252px;}
.ws52{word-spacing:-10.931518px;}
.ws46{word-spacing:-10.931071px;}
.ws59{word-spacing:-10.931022px;}
.ws5{word-spacing:-10.930918px;}
.ws88{word-spacing:-10.930552px;}
.ws4f{word-spacing:-10.930494px;}
.wsca{word-spacing:-10.930486px;}
.ws5c{word-spacing:-10.929401px;}
.ws102{word-spacing:-10.928933px;}
.ws57{word-spacing:-10.926746px;}
.ws53{word-spacing:-10.926679px;}
.ws54{word-spacing:-10.925518px;}
.ws119{word-spacing:-10.800009px;}
.ws27{word-spacing:-10.669100px;}
.wsbc{word-spacing:-10.603645px;}
.ws80{word-spacing:-10.538191px;}
.ws7e{word-spacing:-10.472736px;}
.ws164{word-spacing:-10.407281px;}
.wsdf{word-spacing:-10.341827px;}
.wsf9{word-spacing:-10.276372px;}
.wse2{word-spacing:-10.213955px;}
.wse1{word-spacing:-10.210918px;}
.wse4{word-spacing:-10.151022px;}
.ws13b{word-spacing:-10.145463px;}
.ws19{word-spacing:-10.042301px;}
.ws106{word-spacing:-10.017083px;}
.ws105{word-spacing:-10.014554px;}
.ws109{word-spacing:-10.013691px;}
.ws108{word-spacing:-10.011493px;}
.ws9{word-spacing:-9.922750px;}
.ws17b{word-spacing:-9.883645px;}
.ws11f{word-spacing:-9.818190px;}
.wsb9{word-spacing:-9.754516px;}
.wsb8{word-spacing:-9.752735px;}
.ws4a{word-spacing:-9.687281px;}
.wse{word-spacing:-9.623872px;}
.ws71{word-spacing:-9.621826px;}
.ws117{word-spacing:-9.556372px;}
.wsf6{word-spacing:-9.490917px;}
.ws13a{word-spacing:-9.425462px;}
.ws41{word-spacing:-9.360008px;}
.ws93{word-spacing:-9.294553px;}
.ws10{word-spacing:-9.205442px;}
.ws139{word-spacing:-9.163644px;}
.ws6d{word-spacing:-9.098189px;}
.wsf{word-spacing:-9.085891px;}
.ws70{word-spacing:-9.032735px;}
.ws6e{word-spacing:-9.002368px;}
.wsb0{word-spacing:-8.967280px;}
.wsae{word-spacing:-8.836371px;}
.ws15{word-spacing:-8.727238px;}
.ws37{word-spacing:-8.705462px;}
.ws13{word-spacing:-8.686834px;}
.ws7c{word-spacing:-8.574553px;}
.ws15f{word-spacing:-8.509098px;}
.ws44{word-spacing:-8.443643px;}
.ws79{word-spacing:-8.312734px;}
.ws15a{word-spacing:-8.181825px;}
.ws9b{word-spacing:-8.050916px;}
.ws99{word-spacing:-8.018879px;}
.ws6b{word-spacing:-7.920007px;}
.wsb2{word-spacing:-7.854552px;}
.wsb5{word-spacing:-7.851115px;}
.wsb3{word-spacing:-7.848179px;}
.ws168{word-spacing:-7.789097px;}
.ws180{word-spacing:-7.723643px;}
.ws42{word-spacing:-7.658188px;}
.ws43{word-spacing:-7.632179px;}
.ws17d{word-spacing:-7.592734px;}
.ws4c{word-spacing:-7.527279px;}
.ws166{word-spacing:-7.461824px;}
.ws11b{word-spacing:-7.396370px;}
.ws72{word-spacing:-7.330915px;}
.ws14f{word-spacing:-7.265461px;}
.wsa5{word-spacing:-7.200006px;}
.wsee{word-spacing:-7.134551px;}
.ws12{word-spacing:-7.113296px;}
.wsf0{word-spacing:-7.075286px;}
.wsef{word-spacing:-7.069097px;}
.ws65{word-spacing:-7.003642px;}
.ws21{word-spacing:-6.938188px;}
.ws1{word-spacing:-6.814418px;}
.wsac{word-spacing:-6.807278px;}
.wsaa{word-spacing:-6.799480px;}
.wsa8{word-spacing:-6.752335px;}
.ws22{word-spacing:-6.741824px;}
.ws11d{word-spacing:-6.610915px;}
.ws153{word-spacing:-6.545460px;}
.ws10a{word-spacing:-6.480005px;}
.ws2f{word-spacing:-6.283642px;}
.ws32{word-spacing:-6.218187px;}
.ws30{word-spacing:-6.203581px;}
.ws23{word-spacing:-6.152732px;}
.wsed{word-spacing:-6.087278px;}
.ws87{word-spacing:-5.956369px;}
.wsb6{word-spacing:-5.760005px;}
.wsd2{word-spacing:-5.694550px;}
.wsd4{word-spacing:-5.629096px;}
.ws1f{word-spacing:-5.508941px;}
.wsd{word-spacing:-5.379804px;}
.ws14c{word-spacing:-5.105459px;}
.wsa{word-spacing:-5.080926px;}
.wsdd{word-spacing:-5.040004px;}
.wse0{word-spacing:-4.974550px;}
.wsd6{word-spacing:-4.843640px;}
.ws2e{word-spacing:-4.778186px;}
.wsc6{word-spacing:-4.777794px;}
.wsa4{word-spacing:-4.712731px;}
.wsa2{word-spacing:-4.689490px;}
.ws129{word-spacing:-4.647277px;}
.ws12b{word-spacing:-4.581822px;}
.ws76{word-spacing:-4.450913px;}
.ws73{word-spacing:-4.385458px;}
.ws74{word-spacing:-4.352921px;}
.wsd3{word-spacing:-4.320004px;}
.ws14a{word-spacing:-4.189094px;}
.wsdc{word-spacing:-4.123640px;}
.ws154{word-spacing:-4.058185px;}
.ws18a{word-spacing:-3.992731px;}
.wsd8{word-spacing:-3.861821px;}
.ws161{word-spacing:-3.798731px;}
.ws167{word-spacing:-3.797827px;}
.ws179{word-spacing:-3.796032px;}
.ws137{word-spacing:-3.796020px;}
.ws157{word-spacing:-3.795523px;}
.ws156{word-spacing:-3.730912px;}
.ws18b{word-spacing:-3.668383px;}
.ws11c{word-spacing:-3.600003px;}
.wsf3{word-spacing:-3.534548px;}
.wsad{word-spacing:-3.469094px;}
.ws91{word-spacing:-3.433399px;}
.ws8e{word-spacing:-3.403639px;}
.ws8f{word-spacing:-3.368351px;}
.ws7{word-spacing:-3.246462px;}
.ws82{word-spacing:-3.207275px;}
.ws12d{word-spacing:-3.010912px;}
.ws126{word-spacing:-2.945457px;}
.ws152{word-spacing:-2.880002px;}
.ws3b{word-spacing:-2.814548px;}
.ws89{word-spacing:-2.552729px;}
.ws140{word-spacing:-2.487275px;}
.ws136{word-spacing:-2.421820px;}
.ws13d{word-spacing:-2.356366px;}
.wse6{word-spacing:-2.290911px;}
.ws121{word-spacing:-2.225456px;}
.ws148{word-spacing:-2.160002px;}
.ws12a{word-spacing:-2.029093px;}
.wsb1{word-spacing:-1.898183px;}
.ws60{word-spacing:-1.701820px;}
.ws130{word-spacing:-1.636365px;}
.ws61{word-spacing:-1.612494px;}
.ws63{word-spacing:-1.612090px;}
.ws110{word-spacing:-1.505456px;}
.wsec{word-spacing:-1.450496px;}
.ws112{word-spacing:-1.440001px;}
.ws113{word-spacing:-1.423240px;}
.ws15c{word-spacing:-1.112728px;}
.ws81{word-spacing:-0.981819px;}
.ws15e{word-spacing:-0.850910px;}
.ws16a{word-spacing:-0.523637px;}
.ws4b{word-spacing:-0.458182px;}
.ws11a{word-spacing:-0.392728px;}
.ws8c{word-spacing:-0.345503px;}
.ws172{word-spacing:-0.327273px;}
.ws1d{word-spacing:0.000000px;}
.ws144{word-spacing:0.130909px;}
.ws183{word-spacing:0.196364px;}
.wsd7{word-spacing:1.112728px;}
.wsbe{word-spacing:1.219502px;}
.wsc4{word-spacing:1.882132px;}
.ws35{word-spacing:2.012592px;}
.ws77{word-spacing:2.093059px;}
.ws2c{word-spacing:2.160002px;}
.ws176{word-spacing:2.225456px;}
.ws10e{word-spacing:2.381319px;}
.wsa0{word-spacing:2.552729px;}
.wsfe{word-spacing:2.604955px;}
.wsea{word-spacing:2.618184px;}
.ws127{word-spacing:2.683639px;}
.wsf5{word-spacing:3.141821px;}
.ws17{word-spacing:3.168107px;}
.wsf4{word-spacing:3.207275px;}
.wsfb{word-spacing:3.255809px;}
.ws163{word-spacing:3.272730px;}
.wse8{word-spacing:3.339967px;}
.ws16f{word-spacing:3.403639px;}
.ws1e{word-spacing:3.469094px;}
.ws3e{word-spacing:3.471682px;}
.ws47{word-spacing:3.531136px;}
.ws39{word-spacing:3.543115px;}
.ws18c{word-spacing:3.574586px;}
.ws7f{word-spacing:3.973499px;}
.ws6{word-spacing:4.010754px;}
.ws8{word-spacing:4.013394px;}
.wsfc{word-spacing:4.058185px;}
.ws25{word-spacing:4.098857px;}
.wsf8{word-spacing:4.123640px;}
.wsc2{word-spacing:4.290694px;}
.wse3{word-spacing:4.294226px;}
.ws103{word-spacing:4.321239px;}
.wse5{word-spacing:4.323038px;}
.ws135{word-spacing:4.385458px;}
.ws107{word-spacing:4.397863px;}
.ws118{word-spacing:4.490330px;}
.wsf7{word-spacing:4.580125px;}
.wscf{word-spacing:4.581822px;}
.wsd0{word-spacing:4.588213px;}
.ws146{word-spacing:4.647277px;}
.ws0{word-spacing:4.662497px;}
.wsba{word-spacing:4.676044px;}
.ws175{word-spacing:4.712731px;}
.ws16d{word-spacing:4.909095px;}
.ws9c{word-spacing:4.974550px;}
.ws58{word-spacing:5.040004px;}
.ws51{word-spacing:5.105459px;}
.ws14{word-spacing:5.257915px;}
.ws17c{word-spacing:5.367277px;}
.ws6f{word-spacing:5.444589px;}
.ws178{word-spacing:5.498186px;}
.ws133{word-spacing:5.629096px;}
.ws49{word-spacing:5.646147px;}
.ws11e{word-spacing:5.781583px;}
.ws125{word-spacing:5.890914px;}
.ws36{word-spacing:6.199710px;}
.wsaf{word-spacing:6.447037px;}
.ws6a{word-spacing:6.450406px;}
.wsb4{word-spacing:6.594952px;}
.wsce{word-spacing:6.610915px;}
.ws187{word-spacing:6.676369px;}
.ws184{word-spacing:6.741824px;}
.ws7d{word-spacing:6.750309px;}
.ws9a{word-spacing:6.988352px;}
.ws159{word-spacing:7.099411px;}
.ws171{word-spacing:7.200006px;}
.wsf1{word-spacing:7.334042px;}
.wsab{word-spacing:7.648223px;}
.ws170{word-spacing:7.723643px;}
.wsf2{word-spacing:7.854552px;}
.ws160{word-spacing:8.050916px;}
.ws15b{word-spacing:8.116370px;}
.ws98{word-spacing:8.181825px;}
.ws31{word-spacing:8.241677px;}
.ws66{word-spacing:8.274145px;}
.ws165{word-spacing:8.443643px;}
.ws17e{word-spacing:8.705462px;}
.ws150{word-spacing:8.967280px;}
.wsa6{word-spacing:9.098189px;}
.ws173{word-spacing:9.163644px;}
.ws20{word-spacing:9.294553px;}
.wsa9{word-spacing:9.425462px;}
.wsa7{word-spacing:9.490917px;}
.ws97{word-spacing:9.556372px;}
.wsc7{word-spacing:9.634767px;}
.wsa3{word-spacing:9.755312px;}
.ws75{word-spacing:10.112039px;}
.wsb7{word-spacing:10.669100px;}
.ws18d{word-spacing:10.670462px;}
.ws18f{word-spacing:10.732128px;}
.ws185{word-spacing:10.734226px;}
.ws186{word-spacing:10.734260px;}
.ws92{word-spacing:11.039311px;}
.ws90{word-spacing:11.045311px;}
.wsdb{word-spacing:11.152123px;}
.ws12c{word-spacing:11.912737px;}
.wsd5{word-spacing:12.305465px;}
.ws14b{word-spacing:12.370919px;}
.ws3c{word-spacing:12.465115px;}
.ws62{word-spacing:12.789128px;}
.ws114{word-spacing:12.988764px;}
.ws3{word-spacing:13.737889px;}
.ws15d{word-spacing:13.745466px;}
.ws132{word-spacing:14.072739px;}
.wscd{word-spacing:14.203648px;}
.wscb{word-spacing:14.269103px;}
.ws13e{word-spacing:14.400012px;}
.ws141{word-spacing:14.465467px;}
.ws111{word-spacing:14.558664px;}
.wsc8{word-spacing:14.792740px;}
.ws1b{word-spacing:15.054558px;}
.ws64{word-spacing:15.120013px;}
.wsd1{word-spacing:19.042213px;}
.ws177{word-spacing:19.178198px;}
.ws84{word-spacing:20.290926px;}
.ws115{word-spacing:24.807293px;}
.wscc{word-spacing:29.556289px;}
.ws138{word-spacing:220.808100px;}
.ws56{word-spacing:232.064984px;}
.ws55{word-spacing:238.544990px;}
.ws101{word-spacing:243.878566px;}
.ws5d{word-spacing:244.174085px;}
.ws4e{word-spacing:279.454115px;}
.ws4d{word-spacing:315.346662px;}
.ws5a{word-spacing:315.650509px;}
.ws18e{word-spacing:997.854762px;}
._11{margin-left:-10.029438px;}
._2a{margin-left:-8.918863px;}
._1d{margin-left:-7.469762px;}
._4{margin-left:-6.094252px;}
._1{margin-left:-4.722272px;}
._0{margin-left:-2.988780px;}
._7{margin-left:-1.767274px;}
._a{width:1.587947px;}
._3{width:2.885488px;}
._22{width:4.983321px;}
._6{width:14.939098px;}
._21{width:16.429105px;}
._1b{width:18.484483px;}
._13{width:19.767289px;}
._30{width:20.836972px;}
._8{width:21.931856px;}
._12{width:23.112448px;}
._b{width:24.993989px;}
._9{width:26.036168px;}
._10{width:27.555097px;}
._c{width:29.024948px;}
._16{width:30.487627px;}
._20{width:31.513955px;}
._f{width:32.578236px;}
._14{width:34.084810px;}
._d{width:35.779591px;}
._2e{width:37.690421px;}
._15{width:38.762088px;}
._1a{width:40.777016px;}
._e{width:42.503183px;}
._24{width:44.753909px;}
._23{width:47.402147px;}
._1c{width:49.083934px;}
._32{width:50.115076px;}
._5{width:51.240547px;}
._1e{width:52.804825px;}
._2c{width:54.280619px;}
._2b{width:55.701865px;}
._2f{width:58.189139px;}
._1f{width:61.141570px;}
._26{width:64.930963px;}
._31{width:69.208471px;}
._25{width:75.010582px;}
._2d{width:81.883183px;}
._29{width:139.020297px;}
._33{width:179.183538px;}
._19{width:271.005181px;}
._34{width:345.947024px;}
._28{width:350.072054px;}
._27{width:363.705391px;}
._17{width:604.847652px;}
._18{width:619.830347px;}
._2{width:863.085372px;}
._35{width:1015.704530px;}
.fc3{color:rgb(204,25,20);}
.fc4{color:rgb(7,88,229);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:0.000000px;}
.fs0{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:77.708400px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y66{bottom:148.209000px;}
.y19e{bottom:158.635500px;}
.y65{bottom:168.532500px;}
.ycc{bottom:175.969500px;}
.y19d{bottom:178.959000px;}
.y64{bottom:188.857500px;}
.y88{bottom:194.356500px;}
.ycb{bottom:196.293000px;}
.y3e{bottom:200.737500px;}
.y10d{bottom:202.660500px;}
.y19c{bottom:205.380000px;}
.ya8{bottom:209.181000px;}
.y87{bottom:214.680000px;}
.yca{bottom:216.618000px;}
.y3d{bottom:221.061000px;}
.y10c{bottom:222.984000px;}
.y167{bottom:224.814000px;}
.y19b{bottom:225.703500px;}
.y63{bottom:227.553000px;}
.ya7{bottom:229.504500px;}
.y86{bottom:235.003500px;}
.yc9{bottom:236.941500px;}
.y14a{bottom:240.448500px;}
.y3c{bottom:241.384500px;}
.y166{bottom:245.139000px;}
.y12a{bottom:246.702000px;}
.ya6{bottom:249.828000px;}
.y85{bottom:255.327000px;}
.y10b{bottom:257.112000px;}
.yc8{bottom:257.265000px;}
.y149{bottom:260.772000px;}
.y3b{bottom:261.708000px;}
.y185{bottom:264.474000px;}
.y129{bottom:267.025500px;}
.ye8{bottom:270.151500px;}
.y84{bottom:275.652000px;}
.y10a{bottom:277.435500px;}
.yc7{bottom:277.588500px;}
.y148{bottom:281.095500px;}
.y3a{bottom:282.033000px;}
.y62{bottom:284.460000px;}
.y184{bottom:284.797500px;}
.ya5{bottom:288.072000px;}
.yc6{bottom:297.912000px;}
.y147{bottom:301.419000px;}
.y39{bottom:302.356500px;}
.y128{bottom:304.546500px;}
.y61{bottom:304.783500px;}
.ye7{bottom:309.846000px;}
.y83{bottom:311.038500px;}
.y109{bottom:311.563500px;}
.y183{bottom:318.570000px;}
.y38{bottom:322.680000px;}
.y127{bottom:324.870000px;}
.y60{bottom:325.107000px;}
.yc4{bottom:326.460000px;}
.y108{bottom:331.887000px;}
.y146{bottom:332.686500px;}
.y165{bottom:337.377000px;}
.y182{bottom:338.895000px;}
.ya4{bottom:341.886000px;}
.y126{bottom:345.193500px;}
.y5f{bottom:345.430500px;}
.yc5{bottom:346.783500px;}
.y37{bottom:351.228000px;}
.y107{bottom:352.210500px;}
.y145{bottom:353.010000px;}
.y164{bottom:357.700500px;}
.y181{bottom:359.218500px;}
.y16{bottom:359.592000px;}
.y82{bottom:360.652500px;}
.ya3{bottom:362.211000px;}
.y5e{bottom:365.755500px;}
.ye6{bottom:367.036500px;}
.y36{bottom:371.551500px;}
.y144{bottom:373.335000px;}
.y15{bottom:379.915500px;}
.y81{bottom:380.976000px;}
.ya2{bottom:382.534500px;}
.y125{bottom:382.714500px;}
.y5d{bottom:386.079000px;}
.yc3{bottom:386.236500px;}
.y106{bottom:386.338500px;}
.ye5{bottom:387.360000px;}
.y180{bottom:392.991000px;}
.y163{bottom:393.658500px;}
.y80{bottom:401.301000px;}
.ya1{bottom:402.858000px;}
.y124{bottom:403.038000px;}
.y143{bottom:404.602500px;}
.y5c{bottom:406.402500px;}
.yc2{bottom:406.560000px;}
.y105{bottom:406.662000px;}
.ye4{bottom:407.683500px;}
.y35{bottom:409.908000px;}
.y17f{bottom:413.316000px;}
.y162{bottom:413.982000px;}
.y7f{bottom:421.624500px;}
.y14{bottom:422.655000px;}
.ya0{bottom:423.181500px;}
.y142{bottom:424.926000px;}
.y5b{bottom:426.726000px;}
.yc1{bottom:426.885000px;}
.ye3{bottom:428.007000px;}
.y34{bottom:430.231500px;}
.y17e{bottom:433.639500px;}
.y161{bottom:434.305500px;}
.y123{bottom:440.559000px;}
.y13{bottom:440.587500px;}
.y104{bottom:440.790000px;}
.y7e{bottom:441.948000px;}
.y9f{bottom:443.505000px;}
.yc0{bottom:447.208500px;}
.ye2{bottom:448.330500px;}
.y33{bottom:450.555000px;}
.y5a{bottom:455.502000px;}
.y141{bottom:456.193500px;}
.y12{bottom:458.520000px;}
.y122{bottom:460.882500px;}
.y103{bottom:461.113500px;}
.y7d{bottom:462.271500px;}
.y9e{bottom:463.830000px;}
.y17d{bottom:467.412000px;}
.ybf{bottom:467.532000px;}
.ye1{bottom:468.655500px;}
.y160{bottom:470.263500px;}
.y32{bottom:470.880000px;}
.y59{bottom:475.827000px;}
.y11{bottom:476.454000px;}
.y140{bottom:476.517000px;}
.y121{bottom:481.207500px;}
.y7c{bottom:482.595000px;}
.y9d{bottom:484.153500px;}
.y17c{bottom:487.737000px;}
.ybe{bottom:487.855500px;}
.ye0{bottom:488.979000px;}
.y15f{bottom:490.587000px;}
.y195{bottom:494.103000px;}
.y10{bottom:494.386500px;}
.y102{bottom:495.241500px;}
.y58{bottom:496.150500px;}
.y13f{bottom:496.840500px;}
.y7b{bottom:502.920000px;}
.y17b{bottom:508.060500px;}
.ybd{bottom:508.179000px;}
.y31{bottom:510.331500px;}
.y15e{bottom:510.910500px;}
.yf{bottom:512.319000px;}
.y194{bottom:514.426500px;}
.y101{bottom:515.565000px;}
.y57{bottom:516.474000px;}
.y120{bottom:518.728500px;}
.y9c{bottom:522.396000px;}
.y7a{bottom:523.243500px;}
.ydf{bottom:524.607000px;}
.y13e{bottom:528.108000px;}
.y17a{bottom:528.384000px;}
.ybc{bottom:528.504000px;}
.ye{bottom:530.251500px;}
.y193{bottom:534.750000px;}
.y100{bottom:535.888500px;}
.y56{bottom:536.797500px;}
.y11f{bottom:539.052000px;}
.y15d{bottom:546.868500px;}
.yd{bottom:548.184000px;}
.y13d{bottom:548.431500px;}
.ybb{bottom:548.827500px;}
.y192{bottom:555.073500px;}
.yff{bottom:556.213500px;}
.y55{bottom:557.121000px;}
.y79{bottom:558.630000px;}
.y179{bottom:562.158000px;}
.yc{bottom:566.116500px;}
.y15c{bottom:567.192000px;}
.y30{bottom:567.238500px;}
.yba{bottom:569.151000px;}
.yde{bottom:574.575000px;}
.y191{bottom:575.398500px;}
.y9b{bottom:576.211500px;}
.y11e{bottom:576.573000px;}
.y54{bottom:577.446000px;}
.y13c{bottom:579.699000px;}
.y178{bottom:582.481500px;}
.yb{bottom:584.050500px;}
.y2f{bottom:587.562000px;}
.yb9{bottom:589.474500px;}
.yfe{bottom:590.340000px;}
.ydd{bottom:594.900000px;}
.y9a{bottom:596.535000px;}
.y11d{bottom:596.896500px;}
.y53{bottom:597.769500px;}
.y13b{bottom:600.022500px;}
.ya{bottom:601.983000px;}
.y177{bottom:602.805000px;}
.y15b{bottom:603.150000px;}
.y2e{bottom:607.885500px;}
.y190{bottom:607.995000px;}
.y78{bottom:608.244000px;}
.yb8{bottom:609.798000px;}
.yfd{bottom:610.665000px;}
.ydc{bottom:615.223500px;}
.y99{bottom:616.858500px;}
.y11c{bottom:617.220000px;}
.y52{bottom:618.093000px;}
.y9{bottom:619.915500px;}
.y15a{bottom:623.473500px;}
.y2d{bottom:628.209000px;}
.y77{bottom:628.567500px;}
.yb7{bottom:630.123000px;}
.yfc{bottom:630.988500px;}
.y13a{bottom:631.290000px;}
.y176{bottom:636.579000px;}
.y98{bottom:637.182000px;}
.y8{bottom:637.848000px;}
.y2c{bottom:648.534000px;}
.y76{bottom:648.892500px;}
.ydb{bottom:650.851500px;}
.yfb{bottom:651.312000px;}
.y139{bottom:651.613500px;}
.y11b{bottom:654.741000px;}
.y175{bottom:656.902500px;}
.y97{bottom:657.507000px;}
.y159{bottom:659.431500px;}
.yb6{bottom:665.509500px;}
.y51{bottom:668.842500px;}
.y2b{bottom:668.857500px;}
.y75{bottom:669.216000px;}
.y7{bottom:670.725000px;}
.y11a{bottom:675.064500px;}
.y174{bottom:677.226000px;}
.y96{bottom:677.830500px;}
.y158{bottom:679.755000px;}
.y138{bottom:682.881000px;}
.yfa{bottom:685.440000px;}
.y2a{bottom:689.181000px;}
.y74{bottom:689.539500px;}
.y157{bottom:700.078500px;}
.yda{bottom:700.821000px;}
.y137{bottom:703.206000px;}
.yf9{bottom:705.763500px;}
.y29{bottom:709.504500px;}
.y73{bottom:709.863000px;}
.y173{bottom:710.998500px;}
.y119{bottom:712.585500px;}
.yb5{bottom:715.123500px;}
.y95{bottom:716.073000px;}
.yd9{bottom:721.144500px;}
.y136{bottom:723.529500px;}
.yf8{bottom:726.087000px;}
.y50{bottom:728.565000px;}
.y72{bottom:730.186500px;}
.y172{bottom:731.323500px;}
.y18f{bottom:732.582000px;}
.y118{bottom:732.909000px;}
.yb4{bottom:735.447000px;}
.y156{bottom:736.036500px;}
.y28{bottom:738.795000px;}
.yd8{bottom:741.468000px;}
.y6{bottom:747.150000px;}
.y4f{bottom:748.888500px;}
.y171{bottom:751.647000px;}
.y18e{bottom:752.905500px;}
.y135{bottom:754.797000px;}
.yb3{bottom:755.770500px;}
.y155{bottom:756.360000px;}
.y27{bottom:759.118500px;}
.yf7{bottom:760.215000px;}
.yd7{bottom:761.791500px;}
.y71{bottom:765.574500px;}
.y4{bottom:767.473500px;}
.y4e{bottom:769.212000px;}
.y94{bottom:769.888500px;}
.y117{bottom:770.430000px;}
.y134{bottom:775.120500px;}
.yb2{bottom:776.095500px;}
.y154{bottom:776.683500px;}
.y26{bottom:779.442000px;}
.yf6{bottom:780.538500px;}
.y5{bottom:782.761500px;}
.y170{bottom:785.419500px;}
.y18d{bottom:786.678000px;}
.y4d{bottom:789.535500px;}
.y93{bottom:790.212000px;}
.y116{bottom:790.753500px;}
.y133{bottom:795.444000px;}
.yb1{bottom:796.419000px;}
.yd6{bottom:797.419500px;}
.y25{bottom:799.767000px;}
.y16f{bottom:805.744500px;}
.y18c{bottom:807.001500px;}
.y4c{bottom:809.860500px;}
.y92{bottom:810.535500px;}
.y153{bottom:812.641500px;}
.yf5{bottom:814.666500px;}
.y24{bottom:820.090500px;}
.y70{bottom:825.351000px;}
.y132{bottom:826.711500px;}
.y3{bottom:826.743000px;}
.y115{bottom:828.274500px;}
.y4b{bottom:830.184000px;}
.y91{bottom:830.859000px;}
.yb0{bottom:831.805500px;}
.y152{bottom:832.965000px;}
.yf4{bottom:834.990000px;}
.y16e{bottom:839.517000px;}
.y23{bottom:840.414000px;}
.y18b{bottom:845.259000px;}
.y131{bottom:847.035000px;}
.y114{bottom:848.598000px;}
.y4a{bottom:850.507500px;}
.y151{bottom:853.288500px;}
.yf3{bottom:855.313500px;}
.y2{bottom:859.620000px;}
.y16d{bottom:859.840500px;}
.y22{bottom:860.737500px;}
.y130{bottom:867.358500px;}
.y113{bottom:868.923000px;}
.y90{bottom:869.103000px;}
.y49{bottom:870.831000px;}
.yd5{bottom:871.900500px;}
.y16c{bottom:880.165500px;}
.y21{bottom:881.061000px;}
.yaf{bottom:881.419500px;}
.y6f{bottom:882.256500px;}
.y150{bottom:889.246500px;}
.yf2{bottom:889.441500px;}
.y48{bottom:891.154500px;}
.y12f{bottom:898.626000px;}
.y20{bottom:901.386000px;}
.yae{bottom:901.744500px;}
.y6e{bottom:902.581500px;}
.y112{bottom:906.444000px;}
.y14f{bottom:909.570000px;}
.yf1{bottom:909.765000px;}
.y47{bottom:911.479500px;}
.y16b{bottom:913.938000px;}
.y12e{bottom:918.949500px;}
.y1f{bottom:921.709500px;}
.y18a{bottom:921.772500px;}
.y6d{bottom:922.905000px;}
.y8f{bottom:922.918500px;}
.y111{bottom:926.767500px;}
.y14e{bottom:929.893500px;}
.yf0{bottom:930.088500px;}
.yd4{bottom:931.623000px;}
.y46{bottom:931.803000px;}
.y16a{bottom:934.261500px;}
.yad{bottom:937.131000px;}
.y12d{bottom:939.274500px;}
.y1e{bottom:942.033000px;}
.y8e{bottom:943.242000px;}
.yd3{bottom:951.946500px;}
.y45{bottom:952.126500px;}
.y6c{bottom:952.195500px;}
.y1d{bottom:962.356500px;}
.y189{bottom:962.419500px;}
.y8d{bottom:963.565500px;}
.yef{bottom:964.216500px;}
.y110{bottom:964.288500px;}
.y14d{bottom:965.851500px;}
.y169{bottom:968.035500px;}
.y12c{bottom:970.542000px;}
.yd2{bottom:972.270000px;}
.y44{bottom:972.450000px;}
.y6b{bottom:972.519000px;}
.y19a{bottom:975.388500px;}
.yeb{bottom:981.484500px;}
.y1c{bottom:982.680000px;}
.y8c{bottom:983.889000px;}
.yee{bottom:984.540000px;}
.y10f{bottom:984.612000px;}
.y14c{bottom:986.175000px;}
.yac{bottom:986.745000px;}
.y168{bottom:988.359000px;}
.y12b{bottom:990.865500px;}
.yd1{bottom:992.593500px;}
.y43{bottom:992.773500px;}
.y6a{bottom:992.842500px;}
.y199{bottom:995.712000px;}
.y1{bottom:1001.386500px;}
.yea{bottom:1001.809500px;}
.y1b{bottom:1003.005000px;}
.y188{bottom:1003.066500px;}
.y8b{bottom:1004.212500px;}
.yed{bottom:1004.863500px;}
.y10e{bottom:1004.935500px;}
.y14b{bottom:1006.498500px;}
.yab{bottom:1007.068500px;}
.yd0{bottom:1012.918500px;}
.y42{bottom:1013.098500px;}
.y69{bottom:1013.166000px;}
.y198{bottom:1016.035500px;}
.ye9{bottom:1022.133000px;}
.y1a{bottom:1023.328500px;}
.y8a{bottom:1024.537500px;}
.yec{bottom:1025.188500px;}
.yaa{bottom:1027.393500px;}
.ycf{bottom:1033.242000px;}
.y41{bottom:1033.422000px;}
.y197{bottom:1036.359000px;}
.y187{bottom:1041.324000px;}
.y68{bottom:1042.456500px;}
.y19{bottom:1043.652000px;}
.y89{bottom:1044.861000px;}
.ya9{bottom:1047.717000px;}
.y196{bottom:1056.682500px;}
.ycd{bottom:1061.788500px;}
.y40{bottom:1061.968500px;}
.y67{bottom:1062.780000px;}
.y186{bottom:1076.088000px;}
.yce{bottom:1082.112000px;}
.y3f{bottom:1082.292000px;}
.y18{bottom:1083.103500px;}
.y17{bottom:1136.902500px;}
.h5{height:0.000000px;}
.h2{height:44.831700px;}
.h6{height:49.090950px;}
.h8{height:49.096950px;}
.h4{height:53.798400px;}
.ha{height:55.483798px;}
.h9{height:57.272775px;}
.h7{height:64.557900px;}
.h3{height:77.469300px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:121.500000px;}
.x19{left:137.863500px;}
.x1a{left:157.441500px;}
.x2{left:161.068500px;}
.x9{left:162.409500px;}
.x1b{left:178.354500px;}
.x8{left:184.825500px;}
.x16{left:195.091500px;}
.x10{left:245.589000px;}
.xf{left:252.172500px;}
.xc{left:266.047500px;}
.x3{left:274.458000px;}
.xe{left:276.307500px;}
.xb{left:292.210500px;}
.x11{left:299.194500px;}
.x14{left:305.566500px;}
.x4{left:339.417000px;}
.x6{left:345.730500px;}
.xa{left:370.800000px;}
.x17{left:379.515000px;}
.x18{left:395.611500px;}
.x7{left:419.373000px;}
.x12{left:431.488500px;}
.x13{left:557.412000px;}
.x5{left:573.520500px;}
.xd{left:639.489000px;}
.x15{left:666.703500px;}
@media print{
.v1{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.717333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000939pt;}
.ls14{letter-spacing:0.001427pt;}
.ls2{letter-spacing:0.001921pt;}
.ls8{letter-spacing:2.093063pt;}
.ls5{letter-spacing:2.098397pt;}
.lse{letter-spacing:14.998774pt;}
.ls19{letter-spacing:15.670774pt;}
.lsf{letter-spacing:16.956108pt;}
.ls7{letter-spacing:17.430774pt;}
.ls17{letter-spacing:17.756108pt;}
.ls11{letter-spacing:17.788108pt;}
.ls20{letter-spacing:18.065441pt;}
.ls1b{letter-spacing:18.289441pt;}
.ls15{letter-spacing:18.913441pt;}
.ls1a{letter-spacing:19.297441pt;}
.ls9{letter-spacing:19.372108pt;}
.ls3{letter-spacing:19.377441pt;}
.lsd{letter-spacing:20.065441pt;}
.ls10{letter-spacing:20.193441pt;}
.ls16{letter-spacing:20.961441pt;}
.ls1c{letter-spacing:21.590774pt;}
.lsb{letter-spacing:22.118774pt;}
.ls1f{letter-spacing:23.121441pt;}
.ls1d{letter-spacing:23.644108pt;}
.ls12{letter-spacing:25.036108pt;}
.lsa{letter-spacing:26.092108pt;}
.ls6{letter-spacing:27.660108pt;}
.ls18{letter-spacing:28.337441pt;}
.ls13{letter-spacing:28.668108pt;}
.ls21{letter-spacing:29.088467pt;}
.ls22{letter-spacing:29.091841pt;}
.lsc{letter-spacing:33.169441pt;}
.ls1e{letter-spacing:34.006774pt;}
.ls23{letter-spacing:61.333800pt;}
.ls1{letter-spacing:225.367733pt;}
.ws2d{word-spacing:-29.090933pt;}
.ws2{word-spacing:-17.261308pt;}
.ws1a{word-spacing:-16.290923pt;}
.ws162{word-spacing:-16.058195pt;}
.ws96{word-spacing:-15.709104pt;}
.ws155{word-spacing:-15.534558pt;}
.ws12e{word-spacing:-15.476377pt;}
.ws116{word-spacing:-15.418195pt;}
.ws12f{word-spacing:-15.243649pt;}
.ws147{word-spacing:-15.127285pt;}
.ws124{word-spacing:-15.010922pt;}
.ws11{word-spacing:-14.877483pt;}
.ws188{word-spacing:-14.836376pt;}
.ws174{word-spacing:-14.778194pt;}
.wsde{word-spacing:-14.545467pt;}
.ws48{word-spacing:-14.460970pt;}
.ws169{word-spacing:-14.429103pt;}
.ws7b{word-spacing:-14.384457pt;}
.ws10b{word-spacing:-14.370921pt;}
.ws17a{word-spacing:-14.196375pt;}
.wseb{word-spacing:-14.093226pt;}
.ws83{word-spacing:-14.080012pt;}
.ws13c{word-spacing:-13.963648pt;}
.ws8b{word-spacing:-13.905466pt;}
.ws189{word-spacing:-13.847284pt;}
.ws143{word-spacing:-13.789102pt;}
.ws9d{word-spacing:-13.614557pt;}
.ws182{word-spacing:-13.556375pt;}
.wsc{word-spacing:-13.442868pt;}
.ws16b{word-spacing:-13.440011pt;}
.wsb{word-spacing:-13.283467pt;}
.ws131{word-spacing:-13.207284pt;}
.wsc9{word-spacing:-13.032738pt;}
.ws158{word-spacing:-12.974556pt;}
.ws5f{word-spacing:-12.916374pt;}
.ws9e{word-spacing:-12.858193pt;}
.ws5e{word-spacing:-12.800011pt;}
.wsbb{word-spacing:-12.683647pt;}
.ws151{word-spacing:-12.625465pt;}
.ws28{word-spacing:-12.567283pt;}
.ws122{word-spacing:-12.450919pt;}
.ws120{word-spacing:-12.392738pt;}
.ws142{word-spacing:-12.218192pt;}
.ws2a{word-spacing:-12.160010pt;}
.ws100{word-spacing:-12.131543pt;}
.wsc1{word-spacing:-12.114603pt;}
.ws2b{word-spacing:-12.112283pt;}
.ws29{word-spacing:-12.109263pt;}
.wsda{word-spacing:-12.050842pt;}
.ws14d{word-spacing:-12.043646pt;}
.ws4{word-spacing:-11.987081pt;}
.wsc3{word-spacing:-11.985465pt;}
.wsc5{word-spacing:-11.927283pt;}
.ws9f{word-spacing:-11.869101pt;}
.ws17f{word-spacing:-11.810919pt;}
.wsa1{word-spacing:-11.792102pt;}
.ws78{word-spacing:-11.752737pt;}
.wsbd{word-spacing:-11.713614pt;}
.ws68{word-spacing:-11.694555pt;}
.ws85{word-spacing:-11.636373pt;}
.ws86{word-spacing:-11.629263pt;}
.ws14e{word-spacing:-11.520010pt;}
.ws123{word-spacing:-11.461828pt;}
.ws67{word-spacing:-11.403646pt;}
.ws128{word-spacing:-11.345464pt;}
.ws69{word-spacing:-11.287282pt;}
.ws3f{word-spacing:-11.229100pt;}
.ws13f{word-spacing:-11.170918pt;}
.ws16e{word-spacing:-11.112737pt;}
.ws181{word-spacing:-11.054555pt;}
.ws34{word-spacing:-11.010597pt;}
.ws33{word-spacing:-10.996373pt;}
.ws104{word-spacing:-10.938191pt;}
.wsff{word-spacing:-10.880009pt;}
.ws45{word-spacing:-10.821827pt;}
.ws10f{word-spacing:-10.763645pt;}
.ws10d{word-spacing:-10.717299pt;}
.ws10c{word-spacing:-10.705463pt;}
.wse9{word-spacing:-10.647282pt;}
.wsfa{word-spacing:-10.591184pt;}
.wsfd{word-spacing:-10.537969pt;}
.ws40{word-spacing:-10.530918pt;}
.ws3a{word-spacing:-10.472736pt;}
.ws38{word-spacing:-10.414554pt;}
.ws149{word-spacing:-10.356372pt;}
.ws8d{word-spacing:-10.298190pt;}
.ws94{word-spacing:-10.240009pt;}
.ws26{word-spacing:-10.181827pt;}
.ws16{word-spacing:-10.095435pt;}
.ws145{word-spacing:-10.065463pt;}
.ws134{word-spacing:-10.007281pt;}
.ws24{word-spacing:-9.949099pt;}
.ws6c{word-spacing:-9.890917pt;}
.ws18{word-spacing:-9.882899pt;}
.ws16c{word-spacing:-9.832735pt;}
.wsc0{word-spacing:-9.775777pt;}
.ws3d{word-spacing:-9.774690pt;}
.ws1c{word-spacing:-9.774554pt;}
.ws5b{word-spacing:-9.774169pt;}
.ws50{word-spacing:-9.773817pt;}
.ws95{word-spacing:-9.771766pt;}
.wsbf{word-spacing:-9.721813pt;}
.wse7{word-spacing:-9.719963pt;}
.wsd9{word-spacing:-9.718899pt;}
.ws8a{word-spacing:-9.718478pt;}
.ws7a{word-spacing:-9.718446pt;}
.ws52{word-spacing:-9.716905pt;}
.ws46{word-spacing:-9.716508pt;}
.ws59{word-spacing:-9.716464pt;}
.ws5{word-spacing:-9.716372pt;}
.ws88{word-spacing:-9.716046pt;}
.ws4f{word-spacing:-9.715995pt;}
.wsca{word-spacing:-9.715987pt;}
.ws5c{word-spacing:-9.715023pt;}
.ws102{word-spacing:-9.714607pt;}
.ws57{word-spacing:-9.712663pt;}
.ws53{word-spacing:-9.712604pt;}
.ws54{word-spacing:-9.711572pt;}
.ws119{word-spacing:-9.600008pt;}
.ws27{word-spacing:-9.483644pt;}
.wsbc{word-spacing:-9.425462pt;}
.ws80{word-spacing:-9.367281pt;}
.ws7e{word-spacing:-9.309099pt;}
.ws164{word-spacing:-9.250917pt;}
.wsdf{word-spacing:-9.192735pt;}
.wsf9{word-spacing:-9.134553pt;}
.wse2{word-spacing:-9.079071pt;}
.wse1{word-spacing:-9.076371pt;}
.wse4{word-spacing:-9.023131pt;}
.ws13b{word-spacing:-9.018189pt;}
.ws19{word-spacing:-8.926490pt;}
.ws106{word-spacing:-8.904074pt;}
.ws105{word-spacing:-8.901826pt;}
.ws109{word-spacing:-8.901059pt;}
.ws108{word-spacing:-8.899105pt;}
.ws9{word-spacing:-8.820222pt;}
.ws17b{word-spacing:-8.785462pt;}
.ws11f{word-spacing:-8.727280pt;}
.wsb9{word-spacing:-8.670681pt;}
.wsb8{word-spacing:-8.669098pt;}
.ws4a{word-spacing:-8.610916pt;}
.wse{word-spacing:-8.554553pt;}
.ws71{word-spacing:-8.552734pt;}
.ws117{word-spacing:-8.494553pt;}
.wsf6{word-spacing:-8.436371pt;}
.ws13a{word-spacing:-8.378189pt;}
.ws41{word-spacing:-8.320007pt;}
.ws93{word-spacing:-8.261825pt;}
.ws10{word-spacing:-8.182615pt;}
.ws139{word-spacing:-8.145461pt;}
.ws6d{word-spacing:-8.087279pt;}
.wsf{word-spacing:-8.076348pt;}
.ws70{word-spacing:-8.029098pt;}
.ws6e{word-spacing:-8.002105pt;}
.wsb0{word-spacing:-7.970916pt;}
.wsae{word-spacing:-7.854552pt;}
.ws15{word-spacing:-7.757545pt;}
.ws37{word-spacing:-7.738188pt;}
.ws13{word-spacing:-7.721630pt;}
.ws7c{word-spacing:-7.621825pt;}
.ws15f{word-spacing:-7.563643pt;}
.ws44{word-spacing:-7.505461pt;}
.ws79{word-spacing:-7.389097pt;}
.ws15a{word-spacing:-7.272733pt;}
.ws9b{word-spacing:-7.156370pt;}
.ws99{word-spacing:-7.127892pt;}
.ws6b{word-spacing:-7.040006pt;}
.wsb2{word-spacing:-6.981824pt;}
.wsb5{word-spacing:-6.978769pt;}
.wsb3{word-spacing:-6.976159pt;}
.ws168{word-spacing:-6.923642pt;}
.ws180{word-spacing:-6.865460pt;}
.ws42{word-spacing:-6.807278pt;}
.ws43{word-spacing:-6.784159pt;}
.ws17d{word-spacing:-6.749097pt;}
.ws4c{word-spacing:-6.690915pt;}
.ws166{word-spacing:-6.632733pt;}
.ws11b{word-spacing:-6.574551pt;}
.ws72{word-spacing:-6.516369pt;}
.ws14f{word-spacing:-6.458187pt;}
.wsa5{word-spacing:-6.400005pt;}
.wsee{word-spacing:-6.341823pt;}
.ws12{word-spacing:-6.322930pt;}
.wsf0{word-spacing:-6.289143pt;}
.wsef{word-spacing:-6.283642pt;}
.ws65{word-spacing:-6.225460pt;}
.ws21{word-spacing:-6.167278pt;}
.ws1{word-spacing:-6.057261pt;}
.wsac{word-spacing:-6.050914pt;}
.wsaa{word-spacing:-6.043982pt;}
.wsa8{word-spacing:-6.002075pt;}
.ws22{word-spacing:-5.992732pt;}
.ws11d{word-spacing:-5.876369pt;}
.ws153{word-spacing:-5.818187pt;}
.ws10a{word-spacing:-5.760005pt;}
.ws2f{word-spacing:-5.585459pt;}
.ws32{word-spacing:-5.527277pt;}
.ws30{word-spacing:-5.514294pt;}
.ws23{word-spacing:-5.469095pt;}
.wsed{word-spacing:-5.410914pt;}
.ws87{word-spacing:-5.294550pt;}
.wsb6{word-spacing:-5.120004pt;}
.wsd2{word-spacing:-5.061822pt;}
.wsd4{word-spacing:-5.003641pt;}
.ws1f{word-spacing:-4.896836pt;}
.wsd{word-spacing:-4.782048pt;}
.ws14c{word-spacing:-4.538186pt;}
.wsa{word-spacing:-4.516379pt;}
.wsdd{word-spacing:-4.480004pt;}
.wse0{word-spacing:-4.421822pt;}
.wsd6{word-spacing:-4.305458pt;}
.ws2e{word-spacing:-4.247276pt;}
.wsc6{word-spacing:-4.246928pt;}
.wsa4{word-spacing:-4.189094pt;}
.wsa2{word-spacing:-4.168435pt;}
.ws129{word-spacing:-4.130913pt;}
.ws12b{word-spacing:-4.072731pt;}
.ws76{word-spacing:-3.956367pt;}
.ws73{word-spacing:-3.898185pt;}
.ws74{word-spacing:-3.869263pt;}
.wsd3{word-spacing:-3.840003pt;}
.ws14a{word-spacing:-3.723639pt;}
.wsdc{word-spacing:-3.665458pt;}
.ws154{word-spacing:-3.607276pt;}
.ws18a{word-spacing:-3.549094pt;}
.wsd8{word-spacing:-3.432730pt;}
.ws161{word-spacing:-3.376650pt;}
.ws167{word-spacing:-3.375846pt;}
.ws179{word-spacing:-3.374251pt;}
.ws137{word-spacing:-3.374240pt;}
.ws157{word-spacing:-3.373798pt;}
.ws156{word-spacing:-3.316366pt;}
.ws18b{word-spacing:-3.260785pt;}
.ws11c{word-spacing:-3.200003pt;}
.wsf3{word-spacing:-3.141821pt;}
.wsad{word-spacing:-3.083639pt;}
.ws91{word-spacing:-3.051910pt;}
.ws8e{word-spacing:-3.025457pt;}
.ws8f{word-spacing:-2.994090pt;}
.ws7{word-spacing:-2.885744pt;}
.ws82{word-spacing:-2.850911pt;}
.ws12d{word-spacing:-2.676366pt;}
.ws126{word-spacing:-2.618184pt;}
.ws152{word-spacing:-2.560002pt;}
.ws3b{word-spacing:-2.501820pt;}
.ws89{word-spacing:-2.269093pt;}
.ws140{word-spacing:-2.210911pt;}
.ws136{word-spacing:-2.152729pt;}
.ws13d{word-spacing:-2.094547pt;}
.wse6{word-spacing:-2.036365pt;}
.ws121{word-spacing:-1.978183pt;}
.ws148{word-spacing:-1.920002pt;}
.ws12a{word-spacing:-1.803638pt;}
.wsb1{word-spacing:-1.687274pt;}
.ws60{word-spacing:-1.512729pt;}
.ws130{word-spacing:-1.454547pt;}
.ws61{word-spacing:-1.433328pt;}
.ws63{word-spacing:-1.432969pt;}
.ws110{word-spacing:-1.338183pt;}
.wsec{word-spacing:-1.289330pt;}
.ws112{word-spacing:-1.280001pt;}
.ws113{word-spacing:-1.265102pt;}
.ws15c{word-spacing:-0.989092pt;}
.ws81{word-spacing:-0.872728pt;}
.ws15e{word-spacing:-0.756364pt;}
.ws16a{word-spacing:-0.465455pt;}
.ws4b{word-spacing:-0.407273pt;}
.ws11a{word-spacing:-0.349091pt;}
.ws8c{word-spacing:-0.307114pt;}
.ws172{word-spacing:-0.290909pt;}
.ws1d{word-spacing:0.000000pt;}
.ws144{word-spacing:0.116364pt;}
.ws183{word-spacing:0.174546pt;}
.wsd7{word-spacing:0.989092pt;}
.wsbe{word-spacing:1.084002pt;}
.wsc4{word-spacing:1.673006pt;}
.ws35{word-spacing:1.788971pt;}
.ws77{word-spacing:1.860497pt;}
.ws2c{word-spacing:1.920002pt;}
.ws176{word-spacing:1.978183pt;}
.ws10e{word-spacing:2.116728pt;}
.wsa0{word-spacing:2.269093pt;}
.wsfe{word-spacing:2.315516pt;}
.wsea{word-spacing:2.327275pt;}
.ws127{word-spacing:2.385457pt;}
.wsf5{word-spacing:2.792730pt;}
.ws17{word-spacing:2.816095pt;}
.wsf4{word-spacing:2.850911pt;}
.wsfb{word-spacing:2.894053pt;}
.ws163{word-spacing:2.909093pt;}
.wse8{word-spacing:2.968860pt;}
.ws16f{word-spacing:3.025457pt;}
.ws1e{word-spacing:3.083639pt;}
.ws3e{word-spacing:3.085939pt;}
.ws47{word-spacing:3.138788pt;}
.ws39{word-spacing:3.149436pt;}
.ws18c{word-spacing:3.177410pt;}
.ws7f{word-spacing:3.531999pt;}
.ws6{word-spacing:3.565115pt;}
.ws8{word-spacing:3.567461pt;}
.wsfc{word-spacing:3.607276pt;}
.ws25{word-spacing:3.643428pt;}
.wsf8{word-spacing:3.665458pt;}
.wsc2{word-spacing:3.813950pt;}
.wse3{word-spacing:3.817090pt;}
.ws103{word-spacing:3.841101pt;}
.wse5{word-spacing:3.842701pt;}
.ws135{word-spacing:3.898185pt;}
.ws107{word-spacing:3.909211pt;}
.ws118{word-spacing:3.991404pt;}
.wsf7{word-spacing:4.071222pt;}
.wscf{word-spacing:4.072731pt;}
.wsd0{word-spacing:4.078411pt;}
.ws146{word-spacing:4.130913pt;}
.ws0{word-spacing:4.144442pt;}
.wsba{word-spacing:4.156484pt;}
.ws175{word-spacing:4.189094pt;}
.ws16d{word-spacing:4.363640pt;}
.ws9c{word-spacing:4.421822pt;}
.ws58{word-spacing:4.480004pt;}
.ws51{word-spacing:4.538186pt;}
.ws14{word-spacing:4.673702pt;}
.ws17c{word-spacing:4.770913pt;}
.ws6f{word-spacing:4.839635pt;}
.ws178{word-spacing:4.887277pt;}
.ws133{word-spacing:5.003641pt;}
.ws49{word-spacing:5.018797pt;}
.ws11e{word-spacing:5.139185pt;}
.ws125{word-spacing:5.236368pt;}
.ws36{word-spacing:5.510853pt;}
.wsaf{word-spacing:5.730699pt;}
.ws6a{word-spacing:5.733694pt;}
.wsb4{word-spacing:5.862179pt;}
.wsce{word-spacing:5.876369pt;}
.ws187{word-spacing:5.934550pt;}
.ws184{word-spacing:5.992732pt;}
.ws7d{word-spacing:6.000275pt;}
.ws9a{word-spacing:6.211869pt;}
.ws159{word-spacing:6.310587pt;}
.ws171{word-spacing:6.400005pt;}
.wsf1{word-spacing:6.519148pt;}
.wsab{word-spacing:6.798421pt;}
.ws170{word-spacing:6.865460pt;}
.wsf2{word-spacing:6.981824pt;}
.ws160{word-spacing:7.156370pt;}
.ws15b{word-spacing:7.214551pt;}
.ws98{word-spacing:7.272733pt;}
.ws31{word-spacing:7.325935pt;}
.ws66{word-spacing:7.354795pt;}
.ws165{word-spacing:7.505461pt;}
.ws17e{word-spacing:7.738188pt;}
.ws150{word-spacing:7.970916pt;}
.wsa6{word-spacing:8.087279pt;}
.ws173{word-spacing:8.145461pt;}
.ws20{word-spacing:8.261825pt;}
.wsa9{word-spacing:8.378189pt;}
.wsa7{word-spacing:8.436371pt;}
.ws97{word-spacing:8.494553pt;}
.wsc7{word-spacing:8.564237pt;}
.wsa3{word-spacing:8.671389pt;}
.ws75{word-spacing:8.988479pt;}
.wsb7{word-spacing:9.483644pt;}
.ws18d{word-spacing:9.484855pt;}
.ws18f{word-spacing:9.539669pt;}
.ws185{word-spacing:9.541534pt;}
.ws186{word-spacing:9.541564pt;}
.ws92{word-spacing:9.812721pt;}
.ws90{word-spacing:9.818054pt;}
.wsdb{word-spacing:9.912998pt;}
.ws12c{word-spacing:10.589100pt;}
.wsd5{word-spacing:10.938191pt;}
.ws14b{word-spacing:10.996373pt;}
.ws3c{word-spacing:11.080102pt;}
.ws62{word-spacing:11.368114pt;}
.ws114{word-spacing:11.545568pt;}
.ws3{word-spacing:12.211457pt;}
.ws15d{word-spacing:12.218192pt;}
.ws132{word-spacing:12.509101pt;}
.wscd{word-spacing:12.625465pt;}
.wscb{word-spacing:12.683647pt;}
.ws13e{word-spacing:12.800011pt;}
.ws141{word-spacing:12.858193pt;}
.ws111{word-spacing:12.941035pt;}
.wsc8{word-spacing:13.149102pt;}
.ws1b{word-spacing:13.381829pt;}
.ws64{word-spacing:13.440011pt;}
.wsd1{word-spacing:16.926412pt;}
.ws177{word-spacing:17.047287pt;}
.ws84{word-spacing:18.036379pt;}
.ws115{word-spacing:22.050927pt;}
.wscc{word-spacing:26.272257pt;}
.ws138{word-spacing:196.273867pt;}
.ws56{word-spacing:206.279986pt;}
.ws55{word-spacing:212.039991pt;}
.ws101{word-spacing:216.780948pt;}
.ws5d{word-spacing:217.043631pt;}
.ws4e{word-spacing:248.403658pt;}
.ws4d{word-spacing:280.308144pt;}
.ws5a{word-spacing:280.578230pt;}
.ws18e{word-spacing:886.982011pt;}
._11{margin-left:-8.915056pt;}
._2a{margin-left:-7.927878pt;}
._1d{margin-left:-6.639789pt;}
._4{margin-left:-5.417113pt;}
._1{margin-left:-4.197575pt;}
._0{margin-left:-2.656693pt;}
._7{margin-left:-1.570910pt;}
._a{width:1.411509pt;}
._3{width:2.564878pt;}
._22{width:4.429619pt;}
._6{width:13.279198pt;}
._21{width:14.603649pt;}
._1b{width:16.430652pt;}
._13{width:17.570924pt;}
._30{width:18.521753pt;}
._8{width:19.494983pt;}
._12{width:20.544398pt;}
._b{width:22.216879pt;}
._9{width:23.143260pt;}
._10{width:24.493420pt;}
._c{width:25.799954pt;}
._16{width:27.100113pt;}
._20{width:28.012404pt;}
._f{width:28.958432pt;}
._14{width:30.297609pt;}
._d{width:31.804081pt;}
._2e{width:33.502597pt;}
._15{width:34.455189pt;}
._1a{width:36.246236pt;}
._e{width:37.780607pt;}
._24{width:39.781253pt;}
._23{width:42.135242pt;}
._1c{width:43.630164pt;}
._32{width:44.546734pt;}
._5{width:45.547153pt;}
._1e{width:46.937622pt;}
._2c{width:48.249439pt;}
._2b{width:49.512769pt;}
._2f{width:51.723679pt;}
._1f{width:54.348062pt;}
._26{width:57.716412pt;}
._31{width:61.518641pt;}
._25{width:66.676073pt;}
._2d{width:72.785051pt;}
._29{width:123.573597pt;}
._33{width:159.274256pt;}
._19{width:240.893494pt;}
._34{width:307.508466pt;}
._28{width:311.175159pt;}
._27{width:323.293681pt;}
._17{width:537.642357pt;}
._18{width:550.960308pt;}
._2{width:767.186997pt;}
._35{width:902.848471pt;}
.fs3{font-size:0.000000pt;}
.fs0{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:69.074133pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:131.741333pt;}
.y19e{bottom:141.009333pt;}
.y65{bottom:149.806667pt;}
.ycc{bottom:156.417333pt;}
.y19d{bottom:159.074667pt;}
.y64{bottom:167.873333pt;}
.y88{bottom:172.761333pt;}
.ycb{bottom:174.482667pt;}
.y3e{bottom:178.433333pt;}
.y10d{bottom:180.142667pt;}
.y19c{bottom:182.560000pt;}
.ya8{bottom:185.938667pt;}
.y87{bottom:190.826667pt;}
.yca{bottom:192.549333pt;}
.y3d{bottom:196.498667pt;}
.y10c{bottom:198.208000pt;}
.y167{bottom:199.834667pt;}
.y19b{bottom:200.625333pt;}
.y63{bottom:202.269333pt;}
.ya7{bottom:204.004000pt;}
.y86{bottom:208.892000pt;}
.yc9{bottom:210.614667pt;}
.y14a{bottom:213.732000pt;}
.y3c{bottom:214.564000pt;}
.y166{bottom:217.901333pt;}
.y12a{bottom:219.290667pt;}
.ya6{bottom:222.069333pt;}
.y85{bottom:226.957333pt;}
.y10b{bottom:228.544000pt;}
.yc8{bottom:228.680000pt;}
.y149{bottom:231.797333pt;}
.y3b{bottom:232.629333pt;}
.y185{bottom:235.088000pt;}
.y129{bottom:237.356000pt;}
.ye8{bottom:240.134667pt;}
.y84{bottom:245.024000pt;}
.y10a{bottom:246.609333pt;}
.yc7{bottom:246.745333pt;}
.y148{bottom:249.862667pt;}
.y3a{bottom:250.696000pt;}
.y62{bottom:252.853333pt;}
.y184{bottom:253.153333pt;}
.ya5{bottom:256.064000pt;}
.yc6{bottom:264.810667pt;}
.y147{bottom:267.928000pt;}
.y39{bottom:268.761333pt;}
.y128{bottom:270.708000pt;}
.y61{bottom:270.918667pt;}
.ye7{bottom:275.418667pt;}
.y83{bottom:276.478667pt;}
.y109{bottom:276.945333pt;}
.y183{bottom:283.173333pt;}
.y38{bottom:286.826667pt;}
.y127{bottom:288.773333pt;}
.y60{bottom:288.984000pt;}
.yc4{bottom:290.186667pt;}
.y108{bottom:295.010667pt;}
.y146{bottom:295.721333pt;}
.y165{bottom:299.890667pt;}
.y182{bottom:301.240000pt;}
.ya4{bottom:303.898667pt;}
.y126{bottom:306.838667pt;}
.y5f{bottom:307.049333pt;}
.yc5{bottom:308.252000pt;}
.y37{bottom:312.202667pt;}
.y107{bottom:313.076000pt;}
.y145{bottom:313.786667pt;}
.y164{bottom:317.956000pt;}
.y181{bottom:319.305333pt;}
.y16{bottom:319.637333pt;}
.y82{bottom:320.580000pt;}
.ya3{bottom:321.965333pt;}
.y5e{bottom:325.116000pt;}
.ye6{bottom:326.254667pt;}
.y36{bottom:330.268000pt;}
.y144{bottom:331.853333pt;}
.y15{bottom:337.702667pt;}
.y81{bottom:338.645333pt;}
.ya2{bottom:340.030667pt;}
.y125{bottom:340.190667pt;}
.y5d{bottom:343.181333pt;}
.yc3{bottom:343.321333pt;}
.y106{bottom:343.412000pt;}
.ye5{bottom:344.320000pt;}
.y180{bottom:349.325333pt;}
.y163{bottom:349.918667pt;}
.y80{bottom:356.712000pt;}
.ya1{bottom:358.096000pt;}
.y124{bottom:358.256000pt;}
.y143{bottom:359.646667pt;}
.y5c{bottom:361.246667pt;}
.yc2{bottom:361.386667pt;}
.y105{bottom:361.477333pt;}
.ye4{bottom:362.385333pt;}
.y35{bottom:364.362667pt;}
.y17f{bottom:367.392000pt;}
.y162{bottom:367.984000pt;}
.y7f{bottom:374.777333pt;}
.y14{bottom:375.693333pt;}
.ya0{bottom:376.161333pt;}
.y142{bottom:377.712000pt;}
.y5b{bottom:379.312000pt;}
.yc1{bottom:379.453333pt;}
.ye3{bottom:380.450667pt;}
.y34{bottom:382.428000pt;}
.y17e{bottom:385.457333pt;}
.y161{bottom:386.049333pt;}
.y123{bottom:391.608000pt;}
.y13{bottom:391.633333pt;}
.y104{bottom:391.813333pt;}
.y7e{bottom:392.842667pt;}
.y9f{bottom:394.226667pt;}
.yc0{bottom:397.518667pt;}
.ye2{bottom:398.516000pt;}
.y33{bottom:400.493333pt;}
.y5a{bottom:404.890667pt;}
.y141{bottom:405.505333pt;}
.y12{bottom:407.573333pt;}
.y122{bottom:409.673333pt;}
.y103{bottom:409.878667pt;}
.y7d{bottom:410.908000pt;}
.y9e{bottom:412.293333pt;}
.y17d{bottom:415.477333pt;}
.ybf{bottom:415.584000pt;}
.ye1{bottom:416.582667pt;}
.y160{bottom:418.012000pt;}
.y32{bottom:418.560000pt;}
.y59{bottom:422.957333pt;}
.y11{bottom:423.514667pt;}
.y140{bottom:423.570667pt;}
.y121{bottom:427.740000pt;}
.y7c{bottom:428.973333pt;}
.y9d{bottom:430.358667pt;}
.y17c{bottom:433.544000pt;}
.ybe{bottom:433.649333pt;}
.ye0{bottom:434.648000pt;}
.y15f{bottom:436.077333pt;}
.y195{bottom:439.202667pt;}
.y10{bottom:439.454667pt;}
.y102{bottom:440.214667pt;}
.y58{bottom:441.022667pt;}
.y13f{bottom:441.636000pt;}
.y7b{bottom:447.040000pt;}
.y17b{bottom:451.609333pt;}
.ybd{bottom:451.714667pt;}
.y31{bottom:453.628000pt;}
.y15e{bottom:454.142667pt;}
.yf{bottom:455.394667pt;}
.y194{bottom:457.268000pt;}
.y101{bottom:458.280000pt;}
.y57{bottom:459.088000pt;}
.y120{bottom:461.092000pt;}
.y9c{bottom:464.352000pt;}
.y7a{bottom:465.105333pt;}
.ydf{bottom:466.317333pt;}
.y13e{bottom:469.429333pt;}
.y17a{bottom:469.674667pt;}
.ybc{bottom:469.781333pt;}
.ye{bottom:471.334667pt;}
.y193{bottom:475.333333pt;}
.y100{bottom:476.345333pt;}
.y56{bottom:477.153333pt;}
.y11f{bottom:479.157333pt;}
.y15d{bottom:486.105333pt;}
.yd{bottom:487.274667pt;}
.y13d{bottom:487.494667pt;}
.ybb{bottom:487.846667pt;}
.y192{bottom:493.398667pt;}
.yff{bottom:494.412000pt;}
.y55{bottom:495.218667pt;}
.y79{bottom:496.560000pt;}
.y179{bottom:499.696000pt;}
.yc{bottom:503.214667pt;}
.y15c{bottom:504.170667pt;}
.y30{bottom:504.212000pt;}
.yba{bottom:505.912000pt;}
.yde{bottom:510.733333pt;}
.y191{bottom:511.465333pt;}
.y9b{bottom:512.188000pt;}
.y11e{bottom:512.509333pt;}
.y54{bottom:513.285333pt;}
.y13c{bottom:515.288000pt;}
.y178{bottom:517.761333pt;}
.yb{bottom:519.156000pt;}
.y2f{bottom:522.277333pt;}
.yb9{bottom:523.977333pt;}
.yfe{bottom:524.746667pt;}
.ydd{bottom:528.800000pt;}
.y9a{bottom:530.253333pt;}
.y11d{bottom:530.574667pt;}
.y53{bottom:531.350667pt;}
.y13b{bottom:533.353333pt;}
.ya{bottom:535.096000pt;}
.y177{bottom:535.826667pt;}
.y15b{bottom:536.133333pt;}
.y2e{bottom:540.342667pt;}
.y190{bottom:540.440000pt;}
.y78{bottom:540.661333pt;}
.yb8{bottom:542.042667pt;}
.yfd{bottom:542.813333pt;}
.ydc{bottom:546.865333pt;}
.y99{bottom:548.318667pt;}
.y11c{bottom:548.640000pt;}
.y52{bottom:549.416000pt;}
.y9{bottom:551.036000pt;}
.y15a{bottom:554.198667pt;}
.y2d{bottom:558.408000pt;}
.y77{bottom:558.726667pt;}
.yb7{bottom:560.109333pt;}
.yfc{bottom:560.878667pt;}
.y13a{bottom:561.146667pt;}
.y176{bottom:565.848000pt;}
.y98{bottom:566.384000pt;}
.y8{bottom:566.976000pt;}
.y2c{bottom:576.474667pt;}
.y76{bottom:576.793333pt;}
.ydb{bottom:578.534667pt;}
.yfb{bottom:578.944000pt;}
.y139{bottom:579.212000pt;}
.y11b{bottom:581.992000pt;}
.y175{bottom:583.913333pt;}
.y97{bottom:584.450667pt;}
.y159{bottom:586.161333pt;}
.yb6{bottom:591.564000pt;}
.y51{bottom:594.526667pt;}
.y2b{bottom:594.540000pt;}
.y75{bottom:594.858667pt;}
.y7{bottom:596.200000pt;}
.y11a{bottom:600.057333pt;}
.y174{bottom:601.978667pt;}
.y96{bottom:602.516000pt;}
.y158{bottom:604.226667pt;}
.y138{bottom:607.005333pt;}
.yfa{bottom:609.280000pt;}
.y2a{bottom:612.605333pt;}
.y74{bottom:612.924000pt;}
.y157{bottom:622.292000pt;}
.yda{bottom:622.952000pt;}
.y137{bottom:625.072000pt;}
.yf9{bottom:627.345333pt;}
.y29{bottom:630.670667pt;}
.y73{bottom:630.989333pt;}
.y173{bottom:631.998667pt;}
.y119{bottom:633.409333pt;}
.yb5{bottom:635.665333pt;}
.y95{bottom:636.509333pt;}
.yd9{bottom:641.017333pt;}
.y136{bottom:643.137333pt;}
.yf8{bottom:645.410667pt;}
.y50{bottom:647.613333pt;}
.y72{bottom:649.054667pt;}
.y172{bottom:650.065333pt;}
.y18f{bottom:651.184000pt;}
.y118{bottom:651.474667pt;}
.yb4{bottom:653.730667pt;}
.y156{bottom:654.254667pt;}
.y28{bottom:656.706667pt;}
.yd8{bottom:659.082667pt;}
.y6{bottom:664.133333pt;}
.y4f{bottom:665.678667pt;}
.y171{bottom:668.130667pt;}
.y18e{bottom:669.249333pt;}
.y135{bottom:670.930667pt;}
.yb3{bottom:671.796000pt;}
.y155{bottom:672.320000pt;}
.y27{bottom:674.772000pt;}
.yf7{bottom:675.746667pt;}
.yd7{bottom:677.148000pt;}
.y71{bottom:680.510667pt;}
.y4{bottom:682.198667pt;}
.y4e{bottom:683.744000pt;}
.y94{bottom:684.345333pt;}
.y117{bottom:684.826667pt;}
.y134{bottom:688.996000pt;}
.yb2{bottom:689.862667pt;}
.y154{bottom:690.385333pt;}
.y26{bottom:692.837333pt;}
.yf6{bottom:693.812000pt;}
.y5{bottom:695.788000pt;}
.y170{bottom:698.150667pt;}
.y18d{bottom:699.269333pt;}
.y4d{bottom:701.809333pt;}
.y93{bottom:702.410667pt;}
.y116{bottom:702.892000pt;}
.y133{bottom:707.061333pt;}
.yb1{bottom:707.928000pt;}
.yd6{bottom:708.817333pt;}
.y25{bottom:710.904000pt;}
.y16f{bottom:716.217333pt;}
.y18c{bottom:717.334667pt;}
.y4c{bottom:719.876000pt;}
.y92{bottom:720.476000pt;}
.y153{bottom:722.348000pt;}
.yf5{bottom:724.148000pt;}
.y24{bottom:728.969333pt;}
.y70{bottom:733.645333pt;}
.y132{bottom:734.854667pt;}
.y3{bottom:734.882667pt;}
.y115{bottom:736.244000pt;}
.y4b{bottom:737.941333pt;}
.y91{bottom:738.541333pt;}
.yb0{bottom:739.382667pt;}
.y152{bottom:740.413333pt;}
.yf4{bottom:742.213333pt;}
.y16e{bottom:746.237333pt;}
.y23{bottom:747.034667pt;}
.y18b{bottom:751.341333pt;}
.y131{bottom:752.920000pt;}
.y114{bottom:754.309333pt;}
.y4a{bottom:756.006667pt;}
.y151{bottom:758.478667pt;}
.yf3{bottom:760.278667pt;}
.y2{bottom:764.106667pt;}
.y16d{bottom:764.302667pt;}
.y22{bottom:765.100000pt;}
.y130{bottom:770.985333pt;}
.y113{bottom:772.376000pt;}
.y90{bottom:772.536000pt;}
.y49{bottom:774.072000pt;}
.yd5{bottom:775.022667pt;}
.y16c{bottom:782.369333pt;}
.y21{bottom:783.165333pt;}
.yaf{bottom:783.484000pt;}
.y6f{bottom:784.228000pt;}
.y150{bottom:790.441333pt;}
.yf2{bottom:790.614667pt;}
.y48{bottom:792.137333pt;}
.y12f{bottom:798.778667pt;}
.y20{bottom:801.232000pt;}
.yae{bottom:801.550667pt;}
.y6e{bottom:802.294667pt;}
.y112{bottom:805.728000pt;}
.y14f{bottom:808.506667pt;}
.yf1{bottom:808.680000pt;}
.y47{bottom:810.204000pt;}
.y16b{bottom:812.389333pt;}
.y12e{bottom:816.844000pt;}
.y1f{bottom:819.297333pt;}
.y18a{bottom:819.353333pt;}
.y6d{bottom:820.360000pt;}
.y8f{bottom:820.372000pt;}
.y111{bottom:823.793333pt;}
.y14e{bottom:826.572000pt;}
.yf0{bottom:826.745333pt;}
.yd4{bottom:828.109333pt;}
.y46{bottom:828.269333pt;}
.y16a{bottom:830.454667pt;}
.yad{bottom:833.005333pt;}
.y12d{bottom:834.910667pt;}
.y1e{bottom:837.362667pt;}
.y8e{bottom:838.437333pt;}
.yd3{bottom:846.174667pt;}
.y45{bottom:846.334667pt;}
.y6c{bottom:846.396000pt;}
.y1d{bottom:855.428000pt;}
.y189{bottom:855.484000pt;}
.y8d{bottom:856.502667pt;}
.yef{bottom:857.081333pt;}
.y110{bottom:857.145333pt;}
.y14d{bottom:858.534667pt;}
.y169{bottom:860.476000pt;}
.y12c{bottom:862.704000pt;}
.yd2{bottom:864.240000pt;}
.y44{bottom:864.400000pt;}
.y6b{bottom:864.461333pt;}
.y19a{bottom:867.012000pt;}
.yeb{bottom:872.430667pt;}
.y1c{bottom:873.493333pt;}
.y8c{bottom:874.568000pt;}
.yee{bottom:875.146667pt;}
.y10f{bottom:875.210667pt;}
.y14c{bottom:876.600000pt;}
.yac{bottom:877.106667pt;}
.y168{bottom:878.541333pt;}
.y12b{bottom:880.769333pt;}
.yd1{bottom:882.305333pt;}
.y43{bottom:882.465333pt;}
.y6a{bottom:882.526667pt;}
.y199{bottom:885.077333pt;}
.y1{bottom:890.121333pt;}
.yea{bottom:890.497333pt;}
.y1b{bottom:891.560000pt;}
.y188{bottom:891.614667pt;}
.y8b{bottom:892.633333pt;}
.yed{bottom:893.212000pt;}
.y10e{bottom:893.276000pt;}
.y14b{bottom:894.665333pt;}
.yab{bottom:895.172000pt;}
.yd0{bottom:900.372000pt;}
.y42{bottom:900.532000pt;}
.y69{bottom:900.592000pt;}
.y198{bottom:903.142667pt;}
.ye9{bottom:908.562667pt;}
.y1a{bottom:909.625333pt;}
.y8a{bottom:910.700000pt;}
.yec{bottom:911.278667pt;}
.yaa{bottom:913.238667pt;}
.ycf{bottom:918.437333pt;}
.y41{bottom:918.597333pt;}
.y197{bottom:921.208000pt;}
.y187{bottom:925.621333pt;}
.y68{bottom:926.628000pt;}
.y19{bottom:927.690667pt;}
.y89{bottom:928.765333pt;}
.ya9{bottom:931.304000pt;}
.y196{bottom:939.273333pt;}
.ycd{bottom:943.812000pt;}
.y40{bottom:943.972000pt;}
.y67{bottom:944.693333pt;}
.y186{bottom:956.522667pt;}
.yce{bottom:961.877333pt;}
.y3f{bottom:962.037333pt;}
.y18{bottom:962.758667pt;}
.y17{bottom:1010.580000pt;}
.h5{height:0.000000pt;}
.h2{height:39.850400pt;}
.h6{height:43.636400pt;}
.h8{height:43.641733pt;}
.h4{height:47.820800pt;}
.ha{height:49.318931pt;}
.h9{height:50.909133pt;}
.h7{height:57.384800pt;}
.h3{height:68.861600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:108.000000pt;}
.x19{left:122.545333pt;}
.x1a{left:139.948000pt;}
.x2{left:143.172000pt;}
.x9{left:144.364000pt;}
.x1b{left:158.537333pt;}
.x8{left:164.289333pt;}
.x16{left:173.414667pt;}
.x10{left:218.301333pt;}
.xf{left:224.153333pt;}
.xc{left:236.486667pt;}
.x3{left:243.962667pt;}
.xe{left:245.606667pt;}
.xb{left:259.742667pt;}
.x11{left:265.950667pt;}
.x14{left:271.614667pt;}
.x4{left:301.704000pt;}
.x6{left:307.316000pt;}
.xa{left:329.600000pt;}
.x17{left:337.346667pt;}
.x18{left:351.654667pt;}
.x7{left:372.776000pt;}
.x12{left:383.545333pt;}
.x13{left:495.477333pt;}
.x5{left:509.796000pt;}
.xd{left:568.434667pt;}
.x15{left:592.625333pt;}
}




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