
    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_a2b008273374d56488367dc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.923500;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_e2036574a77da81fe369821b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962500;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_c8f0a75b2a62fccbd67ed018.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.071500;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_f6d0f20aa3d11cdfeb5ec81f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.744500;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_5547da3bedd055fe0e737674.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_c13acb8bad07cdb7cdb85a1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.071000;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_171984c557db5f715ad2cc36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_a077e515792216ec8857437a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739000;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_da24db7b324ac4bc0d024fca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922500;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_c3ca53fa95659a4d83e8316c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959000;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_a077e515792216ec8857437a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739000;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:ffc;src:url('chunks/assets/font_1bdedcd6f0fa31abb49c2dbd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959000;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:ffd;src:url('chunks/assets/font_a077e515792216ec8857437a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739000;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);}
.v3{vertical-align:-22.596000px;}
.v1{vertical-align:-10.668000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.126000px;}
.v4{vertical-align:32.402400px;}
.ls6{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004152px;}
.ls1{letter-spacing:8.966340px;}
.ls17{letter-spacing:10.868939px;}
.lsb{letter-spacing:11.080958px;}
.ls16{letter-spacing:12.062939px;}
.ls7{letter-spacing:12.241176px;}
.ls8{letter-spacing:12.247176px;}
.lse{letter-spacing:12.286510px;}
.ls0{letter-spacing:13.394052px;}
.lsc{letter-spacing:15.296939px;}
.lsd{letter-spacing:15.302939px;}
.ls4{letter-spacing:16.757952px;}
.ls5{letter-spacing:16.763952px;}
.ls13{letter-spacing:18.268958px;}
.ls10{letter-spacing:18.496958px;}
.ls15{letter-spacing:19.004939px;}
.lsf{letter-spacing:20.852939px;}
.ls14{letter-spacing:22.160939px;}
.ls18{letter-spacing:24.710939px;}
.ls11{letter-spacing:36.422939px;}
.ls12{letter-spacing:36.868958px;}
.ls3{letter-spacing:50.276052px;}
.ls2{letter-spacing:50.282052px;}
.lsa{letter-spacing:746.315400px;}
.ls9{letter-spacing:881.343000px;}
.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;}
}
.ws15{word-spacing:-47.880256px;}
.ws9e{word-spacing:-45.486387px;}
.ws112{word-spacing:-44.592598px;}
.ws3{word-spacing:-43.092518px;}
.ws9f{word-spacing:-42.363102px;}
.ws16{word-spacing:-38.136972px;}
.ws189{word-spacing:-37.598852px;}
.ws1a0{word-spacing:-37.539077px;}
.ws191{word-spacing:-37.249801px;}
.ws192{word-spacing:-37.060872px;}
.ws14a{word-spacing:-37.001096px;}
.ws184{word-spacing:-36.851512px;}
.ws16c{word-spacing:-36.821770px;}
.ws183{word-spacing:-36.642443px;}
.wsfe{word-spacing:-36.343565px;}
.wsfc{word-spacing:-36.164238px;}
.ws13e{word-spacing:-36.104462px;}
.ws172{word-spacing:-36.044687px;}
.ws139{word-spacing:-35.984911px;}
.ws11e{word-spacing:-35.865360px;}
.ws151{word-spacing:-35.686033px;}
.ws152{word-spacing:-35.626258px;}
.ws14b{word-spacing:-35.446931px;}
.ws171{word-spacing:-35.387155px;}
.ws16d{word-spacing:-35.207828px;}
.ws190{word-spacing:-35.088277px;}
.ws100{word-spacing:-35.028502px;}
.ws111{word-spacing:-34.968726px;}
.ws137{word-spacing:-34.729624px;}
.ws144{word-spacing:-34.490521px;}
.ws13c{word-spacing:-34.430746px;}
.wsfd{word-spacing:-34.311194px;}
.ws141{word-spacing:-34.251419px;}
.ws133{word-spacing:-34.191643px;}
.ws142{word-spacing:-34.072092px;}
.ws13d{word-spacing:-34.012316px;}
.ws178{word-spacing:-33.892765px;}
.ws193{word-spacing:-33.832990px;}
.wsf1{word-spacing:-33.773214px;}
.ws173{word-spacing:-33.713438px;}
.ws18c{word-spacing:-33.593887px;}
.ws134{word-spacing:-33.534112px;}
.ws182{word-spacing:-33.466753px;}
.ws135{word-spacing:-33.414560px;}
.ws8b{word-spacing:-33.295009px;}
.ws14c{word-spacing:-33.235234px;}
.wsdb{word-spacing:-33.175458px;}
.ws13{word-spacing:-33.115682px;}
.ws31{word-spacing:-33.055907px;}
.ws136{word-spacing:-32.996131px;}
.ws99{word-spacing:-32.936460px;}
.ws6a{word-spacing:-32.936356px;}
.ws181{word-spacing:-32.934064px;}
.wsc5{word-spacing:-32.876580px;}
.ws6d{word-spacing:-32.816804px;}
.ws149{word-spacing:-32.786834px;}
.ws13a{word-spacing:-32.757029px;}
.ws16e{word-spacing:-32.724865px;}
.ws146{word-spacing:-32.724334px;}
.ws166{word-spacing:-32.723588px;}
.ws19d{word-spacing:-32.723144px;}
.wse1{word-spacing:-32.697253px;}
.ws14{word-spacing:-32.693242px;}
.ws15d{word-spacing:-32.692440px;}
.ws163{word-spacing:-32.666258px;}
.ws167{word-spacing:-32.664905px;}
.wsc{word-spacing:-32.637478px;}
.ws179{word-spacing:-32.633516px;}
.ws70{word-spacing:-32.577702px;}
.ws18d{word-spacing:-32.576689px;}
.ws18b{word-spacing:-32.576233px;}
.ws13b{word-spacing:-32.517926px;}
.wsa8{word-spacing:-32.458151px;}
.ws11c{word-spacing:-32.398375px;}
.ws113{word-spacing:-32.338600px;}
.wsa4{word-spacing:-32.278824px;}
.ws55{word-spacing:-32.219048px;}
.ws10a{word-spacing:-32.159273px;}
.wsde{word-spacing:-32.099497px;}
.ws147{word-spacing:-32.039722px;}
.ws69{word-spacing:-31.979946px;}
.ws63{word-spacing:-31.920170px;}
.ws140{word-spacing:-31.860395px;}
.ws126{word-spacing:-31.800619px;}
.ws32{word-spacing:-31.740844px;}
.ws168{word-spacing:-31.681068px;}
.ws6{word-spacing:-31.657237px;}
.ws17d{word-spacing:-31.625297px;}
.wsc0{word-spacing:-31.621292px;}
.ws71{word-spacing:-31.561517px;}
.ws23{word-spacing:-31.501741px;}
.wsbf{word-spacing:-31.441966px;}
.wsaa{word-spacing:-31.382190px;}
.ws6c{word-spacing:-31.322414px;}
.ws54{word-spacing:-31.262639px;}
.ws105{word-spacing:-31.202863px;}
.wsd3{word-spacing:-31.143088px;}
.ws78{word-spacing:-31.083312px;}
.ws150{word-spacing:-31.023536px;}
.ws9b{word-spacing:-31.005702px;}
.ws7c{word-spacing:-30.963761px;}
.ws9d{word-spacing:-30.948915px;}
.wsb6{word-spacing:-30.903985px;}
.ws5e{word-spacing:-30.844210px;}
.wsb9{word-spacing:-30.784434px;}
.wsbe{word-spacing:-30.724658px;}
.ws4d{word-spacing:-30.664883px;}
.wsdd{word-spacing:-30.605107px;}
.ws3b{word-spacing:-30.545332px;}
.ws8c{word-spacing:-30.485556px;}
.ws2f{word-spacing:-30.425780px;}
.ws5a{word-spacing:-30.366005px;}
.ws185{word-spacing:-30.306229px;}
.wsa6{word-spacing:-30.246454px;}
.ws110{word-spacing:-30.126902px;}
.ws8f{word-spacing:-30.067127px;}
.wse7{word-spacing:-30.007351px;}
.wsac{word-spacing:-29.947576px;}
.wsce{word-spacing:-29.887800px;}
.ws170{word-spacing:-29.828024px;}
.ws1a{word-spacing:-29.768249px;}
.wsfb{word-spacing:-29.708473px;}
.ws12d{word-spacing:-29.648698px;}
.ws125{word-spacing:-29.588922px;}
.wscd{word-spacing:-29.529146px;}
.ws188{word-spacing:-29.495628px;}
.ws138{word-spacing:-29.469371px;}
.ws14e{word-spacing:-29.435449px;}
.ws107{word-spacing:-29.409595px;}
.wsa{word-spacing:-29.373926px;}
.wsec{word-spacing:-29.349820px;}
.wsb4{word-spacing:-29.290044px;}
.ws198{word-spacing:-29.289281px;}
.ws45{word-spacing:-29.230268px;}
.wsb8{word-spacing:-29.170493px;}
.wsa2{word-spacing:-29.110717px;}
.ws2d{word-spacing:-29.050942px;}
.ws96{word-spacing:-28.991166px;}
.ws2a{word-spacing:-28.931390px;}
.ws34{word-spacing:-28.811839px;}
.ws79{word-spacing:-28.752064px;}
.ws1c{word-spacing:-28.692288px;}
.ws143{word-spacing:-28.653928px;}
.wsd1{word-spacing:-28.572737px;}
.wsdf{word-spacing:-28.512961px;}
.wsd4{word-spacing:-28.453186px;}
.ws19{word-spacing:-28.393410px;}
.ws36{word-spacing:-28.333634px;}
.ws117{word-spacing:-28.273859px;}
.ws49{word-spacing:-28.154308px;}
.ws124{word-spacing:-28.121077px;}
.ws4b{word-spacing:-28.094532px;}
.ws120{word-spacing:-28.034756px;}
.ws11f{word-spacing:-27.993732px;}
.ws41{word-spacing:-27.974981px;}
.ws73{word-spacing:-27.915205px;}
.ws6b{word-spacing:-27.855430px;}
.wsda{word-spacing:-27.795654px;}
.wsaf{word-spacing:-27.735878px;}
.wsea{word-spacing:-27.676103px;}
.wsd0{word-spacing:-27.616327px;}
.wse5{word-spacing:-27.556552px;}
.ws8a{word-spacing:-27.496776px;}
.wsff{word-spacing:-27.437000px;}
.ws53{word-spacing:-27.377225px;}
.ws127{word-spacing:-27.314165px;}
.ws65{word-spacing:-27.257674px;}
.ws67{word-spacing:-27.197898px;}
.ws59{word-spacing:-27.158023px;}
.ws5b{word-spacing:-27.138122px;}
.ws157{word-spacing:-27.078347px;}
.ws60{word-spacing:-27.018571px;}
.wsef{word-spacing:-26.958796px;}
.ws10f{word-spacing:-26.944085px;}
.ws8d{word-spacing:-26.899020px;}
.ws7e{word-spacing:-26.839244px;}
.wsf4{word-spacing:-26.779469px;}
.ws1b{word-spacing:-26.719693px;}
.wsc6{word-spacing:-26.659918px;}
.ws5c{word-spacing:-26.600142px;}
.ws194{word-spacing:-26.540366px;}
.ws6e{word-spacing:-26.480591px;}
.wsba{word-spacing:-26.420815px;}
.ws5d{word-spacing:-26.361040px;}
.ws7f{word-spacing:-26.301264px;}
.ws11d{word-spacing:-26.241488px;}
.ws22{word-spacing:-26.181713px;}
.ws10d{word-spacing:-26.121937px;}
.ws24{word-spacing:-26.110048px;}
.ws47{word-spacing:-26.062162px;}
.ws4f{word-spacing:-26.062093px;}
.ws16f{word-spacing:-26.002386px;}
.ws18{word-spacing:-25.942610px;}
.ws3d{word-spacing:-25.882835px;}
.ws18a{word-spacing:-25.839382px;}
.ws58{word-spacing:-25.823059px;}
.wsc4{word-spacing:-25.763284px;}
.wsa9{word-spacing:-25.703508px;}
.ws75{word-spacing:-25.643732px;}
.ws40{word-spacing:-25.583957px;}
.wsf2{word-spacing:-25.524181px;}
.ws94{word-spacing:-25.464406px;}
.ws11{word-spacing:-25.344854px;}
.wsf0{word-spacing:-25.285079px;}
.wsad{word-spacing:-25.225303px;}
.ws104{word-spacing:-25.165528px;}
.wsab{word-spacing:-25.045976px;}
.wsd9{word-spacing:-24.986201px;}
.ws4a{word-spacing:-24.964734px;}
.wsbd{word-spacing:-24.926425px;}
.ws199{word-spacing:-24.866650px;}
.ws2b{word-spacing:-24.806874px;}
.ws132{word-spacing:-24.747098px;}
.wsc3{word-spacing:-24.687323px;}
.wsd6{word-spacing:-24.627547px;}
.ws103{word-spacing:-24.567772px;}
.ws9{word-spacing:-24.534749px;}
.ws8{word-spacing:-24.498490px;}
.ws38{word-spacing:-24.448220px;}
.wse9{word-spacing:-24.388445px;}
.ws128{word-spacing:-24.268894px;}
.ws7{word-spacing:-24.245146px;}
.ws68{word-spacing:-24.209118px;}
.ws26{word-spacing:-24.173414px;}
.wscc{word-spacing:-24.149342px;}
.wscf{word-spacing:-24.089567px;}
.ws77{word-spacing:-23.970016px;}
.ws66{word-spacing:-23.919836px;}
.wsf8{word-spacing:-23.910240px;}
.wsb7{word-spacing:-23.802731px;}
.ws3c{word-spacing:-23.790689px;}
.wsb5{word-spacing:-23.730913px;}
.wsf3{word-spacing:-23.671138px;}
.ws1f{word-spacing:-23.611362px;}
.ws160{word-spacing:-23.551586px;}
.ws42{word-spacing:-23.491811px;}
.ws130{word-spacing:-23.432035px;}
.ws12{word-spacing:-23.372260px;}
.wsf6{word-spacing:-23.312484px;}
.ws93{word-spacing:-23.252708px;}
.ws6f{word-spacing:-23.192933px;}
.ws17f{word-spacing:-23.181432px;}
.ws12f{word-spacing:-23.133157px;}
.ws145{word-spacing:-23.013606px;}
.ws3f{word-spacing:-22.894055px;}
.ws15c{word-spacing:-22.834279px;}
.ws1a2{word-spacing:-22.774504px;}
.ws48{word-spacing:-22.715560px;}
.ws108{word-spacing:-22.654952px;}
.ws158{word-spacing:-22.602685px;}
.ws12b{word-spacing:-22.475626px;}
.ws2e{word-spacing:-22.415850px;}
.ws81{word-spacing:-22.356074px;}
.wsb0{word-spacing:-22.296299px;}
.ws20{word-spacing:-22.236523px;}
.ws0{word-spacing:-22.224649px;}
.wseb{word-spacing:-22.176748px;}
.ws86{word-spacing:-22.116972px;}
.ws119{word-spacing:-22.057196px;}
.ws17e{word-spacing:-21.997421px;}
.ws74{word-spacing:-21.818094px;}
.ws12c{word-spacing:-21.519216px;}
.ws159{word-spacing:-21.459440px;}
.ws56{word-spacing:-21.399665px;}
.ws15b{word-spacing:-21.339889px;}
.wsd5{word-spacing:-21.280114px;}
.ws1e{word-spacing:-21.220338px;}
.ws129{word-spacing:-21.160562px;}
.wsc2{word-spacing:-21.100787px;}
.ws7d{word-spacing:-21.041011px;}
.ws102{word-spacing:-20.981236px;}
.ws90{word-spacing:-20.861684px;}
.ws27{word-spacing:-20.801909px;}
.wsb2{word-spacing:-20.742133px;}
.ws84{word-spacing:-20.682358px;}
.ws19f{word-spacing:-20.562806px;}
.ws19c{word-spacing:-20.448832px;}
.ws101{word-spacing:-20.443255px;}
.ws15a{word-spacing:-20.383480px;}
.ws121{word-spacing:-20.336165px;}
.ws97{word-spacing:-20.230868px;}
.ws92{word-spacing:-20.204153px;}
.ws3a{word-spacing:-20.144377px;}
.ws131{word-spacing:-20.084602px;}
.ws83{word-spacing:-19.905275px;}
.ws5{word-spacing:-19.845499px;}
.ws11b{word-spacing:-19.785724px;}
.wse0{word-spacing:-19.725948px;}
.ws35{word-spacing:-19.666172px;}
.ws187{word-spacing:-19.606397px;}
.wsb{word-spacing:-19.602916px;}
.wsd{word-spacing:-19.574142px;}
.wsf{word-spacing:-19.569793px;}
.ws76{word-spacing:-19.546621px;}
.wse{word-spacing:-19.487044px;}
.wsa3{word-spacing:-19.486846px;}
.ws61{word-spacing:-19.427070px;}
.wscb{word-spacing:-19.367294px;}
.ws162{word-spacing:-19.307519px;}
.wsdc{word-spacing:-19.247743px;}
.ws80{word-spacing:-19.187968px;}
.wsf7{word-spacing:-19.128192px;}
.ws57{word-spacing:-18.889090px;}
.ws122{word-spacing:-18.829314px;}
.ws98{word-spacing:-18.796497px;}
.ws95{word-spacing:-18.769538px;}
.wse6{word-spacing:-18.709763px;}
.ws4c{word-spacing:-18.590212px;}
.ws14d{word-spacing:-18.581590px;}
.ws72{word-spacing:-18.530436px;}
.ws19e{word-spacing:-18.410885px;}
.ws17{word-spacing:-18.291334px;}
.wsd8{word-spacing:-18.231558px;}
.ws30{word-spacing:-18.112007px;}
.ws21{word-spacing:-17.932680px;}
.ws116{word-spacing:-17.872904px;}
.ws2{word-spacing:-17.861069px;}
.ws17c{word-spacing:-17.813129px;}
.ws1{word-spacing:-17.805360px;}
.ws11a{word-spacing:-17.753353px;}
.wsbc{word-spacing:-17.693578px;}
.wsae{word-spacing:-17.574026px;}
.ws118{word-spacing:-17.514251px;}
.ws64{word-spacing:-17.454475px;}
.ws5f{word-spacing:-17.394700px;}
.ws186{word-spacing:-17.095822px;}
.ws51{word-spacing:-17.036046px;}
.ws62{word-spacing:-16.916495px;}
.ws15f{word-spacing:-16.856719px;}
.wsa1{word-spacing:-16.677392px;}
.ws14f{word-spacing:-16.438290px;}
.ws28{word-spacing:-16.318739px;}
.wsf5{word-spacing:-16.258963px;}
.ws109{word-spacing:-16.199188px;}
.ws7a{word-spacing:-15.900310px;}
.ws4e{word-spacing:-15.876439px;}
.ws29{word-spacing:-15.840534px;}
.wsb3{word-spacing:-15.601432px;}
.ws123{word-spacing:-15.537493px;}
.ws3e{word-spacing:-15.481880px;}
.ws33{word-spacing:-15.422105px;}
.wsca{word-spacing:-15.362329px;}
.ws169{word-spacing:-15.302554px;}
.ws88{word-spacing:-15.242778px;}
.wsa5{word-spacing:-15.183002px;}
.ws12e{word-spacing:-14.943900px;}
.ws91{word-spacing:-14.592000px;}
.ws180{word-spacing:-14.585246px;}
.ws155{word-spacing:-14.286368px;}
.ws8e{word-spacing:-14.107042px;}
.ws39{word-spacing:-13.987490px;}
.wse3{word-spacing:-13.824000px;}
.wsc7{word-spacing:-13.748388px;}
.wsc9{word-spacing:-13.688612px;}
.wsd2{word-spacing:-13.509286px;}
.wsa7{word-spacing:-13.329959px;}
.ws89{word-spacing:-13.270183px;}
.ws161{word-spacing:-13.150632px;}
.ws12a{word-spacing:-13.058165px;}
.ws10b{word-spacing:-13.031081px;}
.ws10c{word-spacing:-12.971305px;}
.ws106{word-spacing:-12.911530px;}
.ws46{word-spacing:-12.791978px;}
.ws15e{word-spacing:-12.732203px;}
.wse8{word-spacing:-12.373549px;}
.ws10{word-spacing:-12.258136px;}
.ws19a{word-spacing:-12.253998px;}
.ws115{word-spacing:-12.134447px;}
.ws19b{word-spacing:-12.074671px;}
.ws37{word-spacing:-12.014896px;}
.ws18f{word-spacing:-11.955120px;}
.ws50{word-spacing:-11.596466px;}
.ws16b{word-spacing:-11.476915px;}
.ws16a{word-spacing:-11.357364px;}
.ws43{word-spacing:-11.297588px;}
.ws13f{word-spacing:-11.178037px;}
.ws17a{word-spacing:-11.058486px;}
.ws156{word-spacing:-11.052546px;}
.ws17b{word-spacing:-10.998710px;}
.wsc8{word-spacing:-10.474574px;}
.wsed{word-spacing:-10.400954px;}
.wsfa{word-spacing:-9.922750px;}
.ws114{word-spacing:-9.444545px;}
.ws44{word-spacing:-9.384769px;}
.wsc1{word-spacing:-9.205442px;}
.ws85{word-spacing:-8.966340px;}
.ws10e{word-spacing:-8.667462px;}
.ws1d{word-spacing:-8.488135px;}
.ws164{word-spacing:-8.009930px;}
.wse2{word-spacing:-7.412174px;}
.wsd7{word-spacing:-6.694867px;}
.wsee{word-spacing:-6.515540px;}
.wsb1{word-spacing:-6.455765px;}
.wsbb{word-spacing:-6.276438px;}
.ws2c{word-spacing:-5.320028px;}
.ws87{word-spacing:-4.901599px;}
.ws7b{word-spacing:-4.423394px;}
.ws175{word-spacing:-4.244068px;}
.ws148{word-spacing:-3.825638px;}
.ws174{word-spacing:-3.765863px;}
.wsf9{word-spacing:-2.510575px;}
.ws25{word-spacing:0.000000px;}
.ws154{word-spacing:0.478205px;}
.ws1a1{word-spacing:0.896634px;}
.ws153{word-spacing:1.434614px;}
.ws18e{word-spacing:2.510575px;}
.ws165{word-spacing:4.244068px;}
.ws195{word-spacing:5.379804px;}
.ws196{word-spacing:6.850618px;}
.ws52{word-spacing:11.417140px;}
.ws197{word-spacing:15.362329px;}
.ws176{word-spacing:18.410885px;}
.ws177{word-spacing:21.041011px;}
.ws82{word-spacing:21.578992px;}
.ws9c{word-spacing:387.972291px;}
.wsa0{word-spacing:398.022549px;}
.ws9a{word-spacing:427.155726px;}
.wse4{word-spacing:1058.110278px;}
.ws4{word-spacing:1761.306952px;}
._9{margin-left:-13.632848px;}
._1{margin-left:-12.373632px;}
._4{margin-left:-9.659761px;}
._7{margin-left:-7.298669px;}
._1b{margin-left:-6.144882px;}
._0{margin-left:-4.142477px;}
._2{margin-left:-2.474726px;}
._3{margin-left:-1.434614px;}
._10{width:1.017204px;}
._22{width:2.200007px;}
._23{width:3.777553px;}
._24{width:9.754152px;}
._25{width:12.409614px;}
._1a{width:13.712539px;}
._26{width:15.142952px;}
._6{width:16.347869px;}
._17{width:17.645807px;}
._1d{width:19.594475px;}
._a{width:20.885611px;}
._1f{width:22.361177px;}
._5{width:23.725033px;}
._1c{width:24.747098px;}
._21{width:26.719693px;}
._f{width:28.333634px;}
._8{width:30.400171px;}
._18{width:31.681068px;}
._19{width:33.534112px;}
._e{width:34.849175px;}
._29{width:36.595660px;}
._c{width:39.655150px;}
._1e{width:41.544042px;}
._28{width:66.181446px;}
._27{width:67.467012px;}
._16{width:123.630241px;}
._15{width:170.931133px;}
._12{width:245.007767px;}
._13{width:265.651505px;}
._14{width:443.651527px;}
._b{width:504.953406px;}
._11{width:548.495049px;}
._20{width:1654.003664px;}
._d{width:1667.869664px;}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,62,116);}
.fs6{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:56.787000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:65.753400px;}
.fs5{font-size:71.731200px;}
.fs4{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.yd4{bottom:14.009760px;}
.ycf{bottom:14.010450px;}
.ya0{bottom:19.643550px;}
.ya5{bottom:19.644150px;}
.yd3{bottom:60.549000px;}
.y4d{bottom:61.321500px;}
.y23{bottom:61.339500px;}
.ya4{bottom:66.181650px;}
.ycd{bottom:68.427450px;}
.yd5{bottom:68.521350px;}
.y9e{bottom:74.060550px;}
.ya6{bottom:74.156850px;}
.yd2{bottom:76.747200px;}
.ya3{bottom:82.381650px;}
.y123{bottom:108.121500px;}
.yd8{bottom:113.039100px;}
.ydb{bottom:113.039700px;}
.y127{bottom:113.040300px;}
.y9a{bottom:116.827500px;}
.yc1{bottom:118.881000px;}
.yfc{bottom:119.629500px;}
.yd9{bottom:121.012500px;}
.yda{bottom:121.013700px;}
.ydc{bottom:121.038300px;}
.y15e{bottom:121.683000px;}
.y4c{bottom:121.684500px;}
.y77{bottom:122.431500px;}
.y144{bottom:122.989500px;}
.ya8{bottom:124.484250px;}
.ya7{bottom:125.274000px;}
.yaa{bottom:126.672600px;}
.yd7{bottom:129.238500px;}
.y125{bottom:129.239100px;}
.y126{bottom:129.240300px;}
.y122{bottom:130.537500px;}
.y99{bottom:139.243500px;}
.yc0{bottom:141.297000px;}
.yfb{bottom:142.045500px;}
.yea{bottom:144.099000px;}
.y4b{bottom:144.100500px;}
.y163{bottom:144.846000px;}
.y76{bottom:144.847500px;}
.y143{bottom:145.405500px;}
.y121{bottom:152.953500px;}
.y98{bottom:161.659500px;}
.ybf{bottom:163.713000px;}
.yfa{bottom:164.461500px;}
.yd1{bottom:165.370500px;}
.ye9{bottom:166.515000px;}
.y4a{bottom:166.516500px;}
.y162{bottom:167.262000px;}
.y75{bottom:167.263500px;}
.y142{bottom:167.821500px;}
.ya2{bottom:171.005100px;}
.ycc{bottom:173.250450px;}
.yd6{bottom:173.344500px;}
.y120{bottom:175.369500px;}
.y16f{bottom:177.898500px;}
.y9d{bottom:178.883550px;}
.ya9{bottom:178.977000px;}
.yd0{bottom:181.570500px;}
.y97{bottom:184.075500px;}
.yf9{bottom:186.876000px;}
.y155{bottom:186.877500px;}
.ya1{bottom:187.204500px;}
.y22{bottom:188.290500px;}
.ye8{bottom:188.931000px;}
.ybd{bottom:188.932500px;}
.y15a{bottom:189.678000px;}
.y74{bottom:189.679500px;}
.y141{bottom:190.237500px;}
.y11f{bottom:197.785500px;}
.y16e{bottom:200.314500px;}
.yc3{bottom:206.490000px;}
.y96{bottom:206.491500px;}
.ybe{bottom:208.545000px;}
.y154{bottom:209.293500px;}
.ybb{bottom:210.513000px;}
.y21{bottom:210.705000px;}
.ye7{bottom:211.345500px;}
.y49{bottom:211.347000px;}
.y159{bottom:212.094000px;}
.y73{bottom:212.095500px;}
.y140{bottom:212.653500px;}
.y11e{bottom:220.201500px;}
.y16d{bottom:222.730500px;}
.ycb{bottom:228.883500px;}
.yce{bottom:228.883950px;}
.y95{bottom:228.906000px;}
.yf8{bottom:231.708000px;}
.ye6{bottom:233.761500px;}
.y48{bottom:233.763000px;}
.y161{bottom:234.510000px;}
.y72{bottom:234.511500px;}
.y9f{bottom:234.515550px;}
.y9c{bottom:234.516000px;}
.y13f{bottom:235.069500px;}
.yba{bottom:235.956000px;}
.y11d{bottom:242.617500px;}
.y94{bottom:251.322000px;}
.yb9{bottom:253.888500px;}
.yf7{bottom:254.124000px;}
.y20{bottom:255.537000px;}
.ye5{bottom:256.177500px;}
.y47{bottom:256.179000px;}
.y71{bottom:256.926000px;}
.y13e{bottom:257.485500px;}
.y11c{bottom:265.033500px;}
.yb8{bottom:271.821000px;}
.y93{bottom:273.738000px;}
.yf6{bottom:276.540000px;}
.y1f{bottom:277.953000px;}
.ye4{bottom:278.593500px;}
.y46{bottom:278.595000px;}
.y70{bottom:279.342000px;}
.y13d{bottom:279.901500px;}
.y11b{bottom:287.449500px;}
.y16c{bottom:291.385500px;}
.y92{bottom:296.154000px;}
.yb7{bottom:297.264000px;}
.yf5{bottom:298.956000px;}
.y1e{bottom:300.369000px;}
.ye3{bottom:301.009500px;}
.y45{bottom:301.011000px;}
.y6f{bottom:301.758000px;}
.y13c{bottom:302.317500px;}
.y11a{bottom:309.865500px;}
.y16b{bottom:313.801500px;}
.yb6{bottom:315.196500px;}
.y91{bottom:318.570000px;}
.yf4{bottom:321.372000px;}
.y1d{bottom:322.785000px;}
.ye2{bottom:323.425500px;}
.y44{bottom:323.427000px;}
.y6e{bottom:324.174000px;}
.y13b{bottom:324.733500px;}
.y16a{bottom:336.217500px;}
.yb5{bottom:340.639500px;}
.y90{bottom:340.986000px;}
.yf3{bottom:343.788000px;}
.y1c{bottom:345.201000px;}
.ye1{bottom:345.841500px;}
.y43{bottom:345.843000px;}
.y6d{bottom:346.590000px;}
.y13a{bottom:347.149500px;}
.y119{bottom:352.755000px;}
.yb4{bottom:358.572000px;}
.y169{bottom:358.633500px;}
.y158{bottom:363.402000px;}
.yf2{bottom:366.204000px;}
.y1b{bottom:367.617000px;}
.ye0{bottom:368.257500px;}
.y42{bottom:368.259000px;}
.y6c{bottom:369.006000px;}
.y118{bottom:375.171000px;}
.yb3{bottom:385.623000px;}
.y8f{bottom:385.818000px;}
.yf1{bottom:388.620000px;}
.y1a{bottom:390.033000px;}
.ydf{bottom:390.673500px;}
.y41{bottom:390.675000px;}
.yfd{bottom:391.422000px;}
.y139{bottom:391.981500px;}
.y117{bottom:397.587000px;}
.y8e{bottom:408.234000px;}
.yf0{bottom:411.036000px;}
.y19{bottom:412.449000px;}
.yde{bottom:413.089500px;}
.y40{bottom:413.091000px;}
.y6b{bottom:413.838000px;}
.y138{bottom:414.397500px;}
.yb2{bottom:426.307500px;}
.y168{bottom:427.287000px;}
.y8d{bottom:430.650000px;}
.yef{bottom:433.452000px;}
.y18{bottom:434.865000px;}
.y3f{bottom:435.507000px;}
.y6a{bottom:436.254000px;}
.y137{bottom:436.813500px;}
.y116{bottom:440.475000px;}
.yb1{bottom:448.723500px;}
.y167{bottom:449.703000px;}
.y8c{bottom:453.066000px;}
.yee{bottom:455.868000px;}
.ydd{bottom:456.091500px;}
.y17{bottom:457.281000px;}
.y3e{bottom:457.923000px;}
.y69{bottom:458.670000px;}
.y136{bottom:459.229500px;}
.y115{bottom:462.891000px;}
.yb0{bottom:471.139500px;}
.y166{bottom:472.119000px;}
.y8b{bottom:475.482000px;}
.yed{bottom:478.284000px;}
.y16{bottom:479.697000px;}
.y3d{bottom:480.339000px;}
.y68{bottom:481.086000px;}
.yca{bottom:483.588000px;}
.y114{bottom:485.307000px;}
.yaf{bottom:493.555500px;}
.y165{bottom:494.535000px;}
.y8a{bottom:497.898000px;}
.yec{bottom:500.700000px;}
.y15{bottom:502.113000px;}
.y3c{bottom:502.755000px;}
.y67{bottom:503.502000px;}
.y135{bottom:504.061500px;}
.y113{bottom:507.723000px;}
.yae{bottom:515.971500px;}
.y89{bottom:520.314000px;}
.y153{bottom:523.116000px;}
.y14{bottom:524.529000px;}
.y3b{bottom:525.171000px;}
.y66{bottom:525.918000px;}
.y134{bottom:526.477500px;}
.y112{bottom:530.139000px;}
.y164{bottom:533.389500px;}
.yad{bottom:538.387500px;}
.y88{bottom:542.730000px;}
.yeb{bottom:545.532000px;}
.y13{bottom:546.945000px;}
.y3a{bottom:547.587000px;}
.y65{bottom:548.334000px;}
.y133{bottom:548.893500px;}
.y111{bottom:552.555000px;}
.yac{bottom:560.803500px;}
.y87{bottom:565.146000px;}
.y152{bottom:567.948000px;}
.y12{bottom:569.361000px;}
.y39{bottom:570.003000px;}
.y64{bottom:570.750000px;}
.y132{bottom:571.309500px;}
.y86{bottom:587.562000px;}
.y151{bottom:590.364000px;}
.y38{bottom:592.419000px;}
.y63{bottom:593.166000px;}
.y131{bottom:593.725500px;}
.y110{bottom:595.444500px;}
.yab{bottom:603.804000px;}
.y85{bottom:609.978000px;}
.y150{bottom:612.780000px;}
.ybc{bottom:614.835000px;}
.y62{bottom:615.582000px;}
.y130{bottom:616.140000px;}
.y9b{bottom:631.302000px;}
.y84{bottom:632.394000px;}
.y14f{bottom:635.196000px;}
.y11{bottom:636.609000px;}
.y37{bottom:637.251000px;}
.y61{bottom:637.998000px;}
.y12f{bottom:638.556000px;}
.y10f{bottom:641.136000px;}
.y83{bottom:654.810000px;}
.y10{bottom:657.529500px;}
.y14e{bottom:657.612000px;}
.y15d{bottom:659.665500px;}
.y36{bottom:659.667000px;}
.y60{bottom:660.414000px;}
.y12e{bottom:660.972000px;}
.y10e{bottom:663.552000px;}
.y82{bottom:677.226000px;}
.yf{bottom:678.451500px;}
.y14d{bottom:680.028000px;}
.y15c{bottom:682.081500px;}
.y35{bottom:682.083000px;}
.y5f{bottom:682.830000px;}
.y12d{bottom:683.388000px;}
.y10d{bottom:685.968000px;}
.ye{bottom:699.373500px;}
.y81{bottom:699.642000px;}
.y14c{bottom:702.444000px;}
.y34{bottom:704.497500px;}
.y160{bottom:705.244500px;}
.y5e{bottom:705.246000px;}
.y12c{bottom:705.804000px;}
.y10c{bottom:708.384000px;}
.y157{bottom:722.056500px;}
.y14b{bottom:724.860000px;}
.y33{bottom:726.913500px;}
.y15f{bottom:727.660500px;}
.y5d{bottom:727.662000px;}
.y12b{bottom:728.220000px;}
.y10b{bottom:730.800000px;}
.yd{bottom:742.710000px;}
.y80{bottom:744.472500px;}
.y14a{bottom:747.274500px;}
.y32{bottom:749.329500px;}
.y5c{bottom:750.076500px;}
.y12a{bottom:750.636000px;}
.y10a{bottom:753.216000px;}
.y7f{bottom:766.888500px;}
.yc9{bottom:769.690500px;}
.y31{bottom:771.745500px;}
.y5b{bottom:772.492500px;}
.y129{bottom:773.052000px;}
.y109{bottom:775.632000px;}
.yc{bottom:787.542000px;}
.y7e{bottom:789.304500px;}
.yc8{bottom:792.106500px;}
.y30{bottom:794.161500px;}
.yc2{bottom:794.908500px;}
.y108{bottom:798.048000px;}
.y7d{bottom:811.720500px;}
.yc7{bottom:814.522500px;}
.y2f{bottom:816.577500px;}
.y5a{bottom:817.324500px;}
.y107{bottom:820.464000px;}
.y128{bottom:823.264500px;}
.y7c{bottom:834.136500px;}
.y149{bottom:836.938500px;}
.yb{bottom:838.024500px;}
.y2e{bottom:838.993500px;}
.y59{bottom:839.740500px;}
.y106{bottom:842.878500px;}
.y124{bottom:850.761000px;}
.ya{bottom:855.957000px;}
.y7b{bottom:856.552500px;}
.yc6{bottom:859.354500px;}
.y2d{bottom:861.409500px;}
.y58{bottom:862.156500px;}
.y9{bottom:873.889500px;}
.y7a{bottom:878.968500px;}
.yc5{bottom:881.770500px;}
.y173{bottom:882.418500px;}
.y2c{bottom:883.825500px;}
.y57{bottom:884.572500px;}
.y105{bottom:885.768000px;}
.y79{bottom:901.384500px;}
.y148{bottom:904.186500px;}
.y172{bottom:904.834500px;}
.y2b{bottom:906.241500px;}
.y56{bottom:906.988500px;}
.y104{bottom:908.184000px;}
.y8{bottom:908.589000px;}
.y156{bottom:923.800500px;}
.yc4{bottom:926.602500px;}
.y171{bottom:927.250500px;}
.y2a{bottom:928.657500px;}
.y55{bottom:929.404500px;}
.y103{bottom:930.600000px;}
.y7{bottom:931.005000px;}
.y78{bottom:946.216500px;}
.y147{bottom:949.018500px;}
.y170{bottom:949.666500px;}
.y29{bottom:951.073500px;}
.y54{bottom:951.820500px;}
.y102{bottom:953.016000px;}
.y146{bottom:971.434500px;}
.y28{bottom:973.489500px;}
.y53{bottom:974.236500px;}
.y101{bottom:975.432000px;}
.y6{bottom:975.837000px;}
.y27{bottom:995.905500px;}
.y52{bottom:996.652500px;}
.y100{bottom:997.848000px;}
.y5{bottom:1007.218500px;}
.y145{bottom:1016.266500px;}
.y26{bottom:1018.321500px;}
.y51{bottom:1019.068500px;}
.yff{bottom:1020.264000px;}
.y25{bottom:1040.737500px;}
.y50{bottom:1041.484500px;}
.yfe{bottom:1042.680000px;}
.y15b{bottom:1063.153500px;}
.y4f{bottom:1063.900500px;}
.y4{bottom:1076.785500px;}
.y24{bottom:1085.569500px;}
.y4e{bottom:1086.316500px;}
.y3{bottom:1144.000500px;}
.y2{bottom:1161.933000px;}
.y1{bottom:1179.865500px;}
.h8{height:31.884518px;}
.he{height:39.852000px;}
.hf{height:41.667000px;}
.h14{height:41.958000px;}
.h3{height:42.016550px;}
.hd{height:42.066000px;}
.ha{height:42.512513px;}
.h5{height:44.024729px;}
.h13{height:44.289000px;}
.h10{height:44.350647px;}
.h4{height:47.826778px;}
.h2{height:48.854776px;}
.h11{height:50.483643px;}
.h9{height:53.140508px;}
.h17{height:53.146508px;}
.hb{height:53.296282px;}
.h7{height:65.656706px;}
.h6{height:71.491797px;}
.h15{height:74.360400px;}
.h16{height:74.859600px;}
.h12{height:250.200000px;}
.hc{height:262.050000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:585.150000px;}
.w4{width:593.100000px;}
.w2{width:595.800000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:16.719000px;}
.x7{left:21.711000px;}
.x2e{left:78.107250px;}
.x1e{left:91.899000px;}
.x1{left:93.543000px;}
.x2c{left:100.337700px;}
.x15{left:102.508500px;}
.x3{left:111.237000px;}
.x38{left:115.959000px;}
.x2{left:117.778500px;}
.x2b{left:126.560700px;}
.x35{left:127.678650px;}
.x4{left:130.903500px;}
.x5{left:147.957000px;}
.x31{left:149.457000px;}
.x1f{left:153.207000px;}
.x32{left:161.347035px;}
.x27{left:193.791000px;}
.xe{left:198.784500px;}
.x23{left:200.748000px;}
.x24{left:202.330620px;}
.x6{left:203.643000px;}
.xa{left:205.740000px;}
.xb{left:207.322035px;}
.x39{left:212.598000px;}
.x22{left:221.244000px;}
.x9{left:226.236000px;}
.x14{left:239.353500px;}
.x30{left:284.236500px;}
.x18{left:287.830500px;}
.x37{left:300.001500px;}
.x17{left:303.720000px;}
.x2f{left:320.360925px;}
.x36{left:322.522500px;}
.x2a{left:345.097500px;}
.x12{left:350.091000px;}
.x29{left:402.694500px;}
.x21{left:406.132500px;}
.x11{left:407.688000px;}
.x25{left:408.966000px;}
.x8{left:411.126000px;}
.xc{left:413.958000px;}
.xf{left:418.032000px;}
.x28{left:420.782580px;}
.x26{left:423.704670px;}
.x10{left:425.775165px;}
.xd{left:428.697255px;}
.x1a{left:455.617500px;}
.x13{left:460.825500px;}
.x2d{left:474.538500px;}
.x19{left:479.254500px;}
.x33{left:496.932000px;}
.x34{left:507.712665px;}
.x1c{left:634.552500px;}
.x1b{left:660.190500px;}
.x16{left:672.990000px;}
.x1d{left:687.874500px;}
@media print{
.v3{vertical-align:-20.085333pt;}
.v1{vertical-align:-9.482667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.778667pt;}
.v4{vertical-align:28.802133pt;}
.ls6{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003691pt;}
.ls1{letter-spacing:7.970080pt;}
.ls17{letter-spacing:9.661279pt;}
.lsb{letter-spacing:9.849741pt;}
.ls16{letter-spacing:10.722612pt;}
.ls7{letter-spacing:10.881045pt;}
.ls8{letter-spacing:10.886379pt;}
.lse{letter-spacing:10.921342pt;}
.ls0{letter-spacing:11.905824pt;}
.lsc{letter-spacing:13.597279pt;}
.lsd{letter-spacing:13.602612pt;}
.ls4{letter-spacing:14.895957pt;}
.ls5{letter-spacing:14.901291pt;}
.ls13{letter-spacing:16.239074pt;}
.ls10{letter-spacing:16.441741pt;}
.ls15{letter-spacing:16.893279pt;}
.lsf{letter-spacing:18.535946pt;}
.ls14{letter-spacing:19.698612pt;}
.ls18{letter-spacing:21.965279pt;}
.ls11{letter-spacing:32.375946pt;}
.ls12{letter-spacing:32.772407pt;}
.ls3{letter-spacing:44.689824pt;}
.ls2{letter-spacing:44.695157pt;}
.lsa{letter-spacing:663.391467pt;}
.ls9{letter-spacing:783.416000pt;}
.ws15{word-spacing:-42.560227pt;}
.ws9e{word-spacing:-40.432344pt;}
.ws112{word-spacing:-39.637865pt;}
.ws3{word-spacing:-38.304461pt;}
.ws9f{word-spacing:-37.656091pt;}
.ws16{word-spacing:-33.899531pt;}
.ws189{word-spacing:-33.421202pt;}
.ws1a0{word-spacing:-33.368068pt;}
.ws191{word-spacing:-33.110934pt;}
.ws192{word-spacing:-32.942997pt;}
.ws14a{word-spacing:-32.889863pt;}
.ws184{word-spacing:-32.756899pt;}
.ws16c{word-spacing:-32.730462pt;}
.ws183{word-spacing:-32.571060pt;}
.wsfe{word-spacing:-32.305391pt;}
.wsfc{word-spacing:-32.145989pt;}
.ws13e{word-spacing:-32.092855pt;}
.ws172{word-spacing:-32.039722pt;}
.ws139{word-spacing:-31.986588pt;}
.ws11e{word-spacing:-31.880320pt;}
.ws151{word-spacing:-31.720918pt;}
.ws152{word-spacing:-31.667785pt;}
.ws14b{word-spacing:-31.508383pt;}
.ws171{word-spacing:-31.455249pt;}
.ws16d{word-spacing:-31.295847pt;}
.ws190{word-spacing:-31.189580pt;}
.ws100{word-spacing:-31.136446pt;}
.ws111{word-spacing:-31.083312pt;}
.ws137{word-spacing:-30.870777pt;}
.ws144{word-spacing:-30.658241pt;}
.ws13c{word-spacing:-30.605107pt;}
.wsfd{word-spacing:-30.498839pt;}
.ws141{word-spacing:-30.445706pt;}
.ws133{word-spacing:-30.392572pt;}
.ws142{word-spacing:-30.286304pt;}
.ws13d{word-spacing:-30.233170pt;}
.ws178{word-spacing:-30.126902pt;}
.ws193{word-spacing:-30.073769pt;}
.wsf1{word-spacing:-30.020635pt;}
.ws173{word-spacing:-29.967501pt;}
.ws18c{word-spacing:-29.861233pt;}
.ws134{word-spacing:-29.808099pt;}
.ws182{word-spacing:-29.748225pt;}
.ws135{word-spacing:-29.701831pt;}
.ws8b{word-spacing:-29.595564pt;}
.ws14c{word-spacing:-29.542430pt;}
.wsdb{word-spacing:-29.489296pt;}
.ws13{word-spacing:-29.436162pt;}
.ws31{word-spacing:-29.383028pt;}
.ws136{word-spacing:-29.329894pt;}
.ws99{word-spacing:-29.276853pt;}
.ws6a{word-spacing:-29.276761pt;}
.ws181{word-spacing:-29.274723pt;}
.wsc5{word-spacing:-29.223627pt;}
.ws6d{word-spacing:-29.170493pt;}
.ws149{word-spacing:-29.143853pt;}
.ws13a{word-spacing:-29.117359pt;}
.ws16e{word-spacing:-29.088769pt;}
.ws146{word-spacing:-29.088297pt;}
.ws166{word-spacing:-29.087634pt;}
.ws19d{word-spacing:-29.087239pt;}
.wse1{word-spacing:-29.064225pt;}
.ws14{word-spacing:-29.060659pt;}
.ws15d{word-spacing:-29.059947pt;}
.ws163{word-spacing:-29.036674pt;}
.ws167{word-spacing:-29.035471pt;}
.wsc{word-spacing:-29.011091pt;}
.ws179{word-spacing:-29.007570pt;}
.ws70{word-spacing:-28.957957pt;}
.ws18d{word-spacing:-28.957057pt;}
.ws18b{word-spacing:-28.956652pt;}
.ws13b{word-spacing:-28.904823pt;}
.wsa8{word-spacing:-28.851690pt;}
.ws11c{word-spacing:-28.798556pt;}
.ws113{word-spacing:-28.745422pt;}
.wsa4{word-spacing:-28.692288pt;}
.ws55{word-spacing:-28.639154pt;}
.ws10a{word-spacing:-28.586020pt;}
.wsde{word-spacing:-28.532886pt;}
.ws147{word-spacing:-28.479753pt;}
.ws69{word-spacing:-28.426619pt;}
.ws63{word-spacing:-28.373485pt;}
.ws140{word-spacing:-28.320351pt;}
.ws126{word-spacing:-28.267217pt;}
.ws32{word-spacing:-28.214083pt;}
.ws168{word-spacing:-28.160949pt;}
.ws6{word-spacing:-28.139766pt;}
.ws17d{word-spacing:-28.111375pt;}
.wsc0{word-spacing:-28.107815pt;}
.ws71{word-spacing:-28.054682pt;}
.ws23{word-spacing:-28.001548pt;}
.wsbf{word-spacing:-27.948414pt;}
.wsaa{word-spacing:-27.895280pt;}
.ws6c{word-spacing:-27.842146pt;}
.ws54{word-spacing:-27.789012pt;}
.ws105{word-spacing:-27.735878pt;}
.wsd3{word-spacing:-27.682745pt;}
.ws78{word-spacing:-27.629611pt;}
.ws150{word-spacing:-27.576477pt;}
.ws9b{word-spacing:-27.560624pt;}
.ws7c{word-spacing:-27.523343pt;}
.ws9d{word-spacing:-27.510147pt;}
.wsb6{word-spacing:-27.470209pt;}
.ws5e{word-spacing:-27.417075pt;}
.wsb9{word-spacing:-27.363941pt;}
.wsbe{word-spacing:-27.310807pt;}
.ws4d{word-spacing:-27.257674pt;}
.wsdd{word-spacing:-27.204540pt;}
.ws3b{word-spacing:-27.151406pt;}
.ws8c{word-spacing:-27.098272pt;}
.ws2f{word-spacing:-27.045138pt;}
.ws5a{word-spacing:-26.992004pt;}
.ws185{word-spacing:-26.938870pt;}
.wsa6{word-spacing:-26.885737pt;}
.ws110{word-spacing:-26.779469pt;}
.ws8f{word-spacing:-26.726335pt;}
.wse7{word-spacing:-26.673201pt;}
.wsac{word-spacing:-26.620067pt;}
.wsce{word-spacing:-26.566933pt;}
.ws170{word-spacing:-26.513799pt;}
.ws1a{word-spacing:-26.460666pt;}
.wsfb{word-spacing:-26.407532pt;}
.ws12d{word-spacing:-26.354398pt;}
.ws125{word-spacing:-26.301264pt;}
.wscd{word-spacing:-26.248130pt;}
.ws188{word-spacing:-26.218336pt;}
.ws138{word-spacing:-26.194996pt;}
.ws14e{word-spacing:-26.164844pt;}
.ws107{word-spacing:-26.141862pt;}
.wsa{word-spacing:-26.110157pt;}
.wsec{word-spacing:-26.088729pt;}
.wsb4{word-spacing:-26.035595pt;}
.ws198{word-spacing:-26.034916pt;}
.ws45{word-spacing:-25.982461pt;}
.wsb8{word-spacing:-25.929327pt;}
.wsa2{word-spacing:-25.876193pt;}
.ws2d{word-spacing:-25.823059pt;}
.ws96{word-spacing:-25.769925pt;}
.ws2a{word-spacing:-25.716791pt;}
.ws34{word-spacing:-25.610524pt;}
.ws79{word-spacing:-25.557390pt;}
.ws1c{word-spacing:-25.504256pt;}
.ws143{word-spacing:-25.470158pt;}
.wsd1{word-spacing:-25.397988pt;}
.wsdf{word-spacing:-25.344854pt;}
.wsd4{word-spacing:-25.291721pt;}
.ws19{word-spacing:-25.238587pt;}
.ws36{word-spacing:-25.185453pt;}
.ws117{word-spacing:-25.132319pt;}
.ws49{word-spacing:-25.026051pt;}
.ws124{word-spacing:-24.996513pt;}
.ws4b{word-spacing:-24.972917pt;}
.ws120{word-spacing:-24.919783pt;}
.ws11f{word-spacing:-24.883317pt;}
.ws41{word-spacing:-24.866650pt;}
.ws73{word-spacing:-24.813516pt;}
.ws6b{word-spacing:-24.760382pt;}
.wsda{word-spacing:-24.707248pt;}
.wsaf{word-spacing:-24.654114pt;}
.wsea{word-spacing:-24.600980pt;}
.wsd0{word-spacing:-24.547846pt;}
.wse5{word-spacing:-24.494713pt;}
.ws8a{word-spacing:-24.441579pt;}
.wsff{word-spacing:-24.388445pt;}
.ws53{word-spacing:-24.335311pt;}
.ws127{word-spacing:-24.279258pt;}
.ws65{word-spacing:-24.229043pt;}
.ws67{word-spacing:-24.175909pt;}
.ws59{word-spacing:-24.140465pt;}
.ws5b{word-spacing:-24.122775pt;}
.ws157{word-spacing:-24.069642pt;}
.ws60{word-spacing:-24.016508pt;}
.wsef{word-spacing:-23.963374pt;}
.ws10f{word-spacing:-23.950298pt;}
.ws8d{word-spacing:-23.910240pt;}
.ws7e{word-spacing:-23.857106pt;}
.wsf4{word-spacing:-23.803972pt;}
.ws1b{word-spacing:-23.750838pt;}
.wsc6{word-spacing:-23.697705pt;}
.ws5c{word-spacing:-23.644571pt;}
.ws194{word-spacing:-23.591437pt;}
.ws6e{word-spacing:-23.538303pt;}
.wsba{word-spacing:-23.485169pt;}
.ws5d{word-spacing:-23.432035pt;}
.ws7f{word-spacing:-23.378901pt;}
.ws11d{word-spacing:-23.325767pt;}
.ws22{word-spacing:-23.272634pt;}
.ws10d{word-spacing:-23.219500pt;}
.ws24{word-spacing:-23.208931pt;}
.ws47{word-spacing:-23.166366pt;}
.ws4f{word-spacing:-23.166305pt;}
.ws16f{word-spacing:-23.113232pt;}
.ws18{word-spacing:-23.060098pt;}
.ws3d{word-spacing:-23.006964pt;}
.ws18a{word-spacing:-22.968339pt;}
.ws58{word-spacing:-22.953830pt;}
.wsc4{word-spacing:-22.900697pt;}
.wsa9{word-spacing:-22.847563pt;}
.ws75{word-spacing:-22.794429pt;}
.ws40{word-spacing:-22.741295pt;}
.wsf2{word-spacing:-22.688161pt;}
.ws94{word-spacing:-22.635027pt;}
.ws11{word-spacing:-22.528759pt;}
.wsf0{word-spacing:-22.475626pt;}
.wsad{word-spacing:-22.422492pt;}
.ws104{word-spacing:-22.369358pt;}
.wsab{word-spacing:-22.263090pt;}
.wsd9{word-spacing:-22.209956pt;}
.ws4a{word-spacing:-22.190875pt;}
.wsbd{word-spacing:-22.156822pt;}
.ws199{word-spacing:-22.103689pt;}
.ws2b{word-spacing:-22.050555pt;}
.ws132{word-spacing:-21.997421pt;}
.wsc3{word-spacing:-21.944287pt;}
.wsd6{word-spacing:-21.891153pt;}
.ws103{word-spacing:-21.838019pt;}
.ws9{word-spacing:-21.808666pt;}
.ws8{word-spacing:-21.776435pt;}
.ws38{word-spacing:-21.731751pt;}
.wse9{word-spacing:-21.678618pt;}
.ws128{word-spacing:-21.572350pt;}
.ws7{word-spacing:-21.551241pt;}
.ws68{word-spacing:-21.519216pt;}
.ws26{word-spacing:-21.487479pt;}
.wscc{word-spacing:-21.466082pt;}
.wscf{word-spacing:-21.412948pt;}
.ws77{word-spacing:-21.306681pt;}
.ws66{word-spacing:-21.262077pt;}
.wsf8{word-spacing:-21.253547pt;}
.wsb7{word-spacing:-21.157983pt;}
.ws3c{word-spacing:-21.147279pt;}
.wsb5{word-spacing:-21.094145pt;}
.wsf3{word-spacing:-21.041011pt;}
.ws1f{word-spacing:-20.987877pt;}
.ws160{word-spacing:-20.934743pt;}
.ws42{word-spacing:-20.881610pt;}
.ws130{word-spacing:-20.828476pt;}
.ws12{word-spacing:-20.775342pt;}
.wsf6{word-spacing:-20.722208pt;}
.ws93{word-spacing:-20.669074pt;}
.ws6f{word-spacing:-20.615940pt;}
.ws17f{word-spacing:-20.605717pt;}
.ws12f{word-spacing:-20.562806pt;}
.ws145{word-spacing:-20.456539pt;}
.ws3f{word-spacing:-20.350271pt;}
.ws15c{word-spacing:-20.297137pt;}
.ws1a2{word-spacing:-20.244003pt;}
.ws48{word-spacing:-20.191609pt;}
.ws108{word-spacing:-20.137735pt;}
.ws158{word-spacing:-20.091276pt;}
.ws12b{word-spacing:-19.978334pt;}
.ws2e{word-spacing:-19.925200pt;}
.ws81{word-spacing:-19.872066pt;}
.wsb0{word-spacing:-19.818932pt;}
.ws20{word-spacing:-19.765798pt;}
.ws0{word-spacing:-19.755244pt;}
.wseb{word-spacing:-19.712665pt;}
.ws86{word-spacing:-19.659531pt;}
.ws119{word-spacing:-19.606397pt;}
.ws17e{word-spacing:-19.553263pt;}
.ws74{word-spacing:-19.393861pt;}
.ws12c{word-spacing:-19.128192pt;}
.ws159{word-spacing:-19.075058pt;}
.ws56{word-spacing:-19.021924pt;}
.ws15b{word-spacing:-18.968790pt;}
.wsd5{word-spacing:-18.915657pt;}
.ws1e{word-spacing:-18.862523pt;}
.ws129{word-spacing:-18.809389pt;}
.wsc2{word-spacing:-18.756255pt;}
.ws7d{word-spacing:-18.703121pt;}
.ws102{word-spacing:-18.649987pt;}
.ws90{word-spacing:-18.543719pt;}
.ws27{word-spacing:-18.490586pt;}
.wsb2{word-spacing:-18.437452pt;}
.ws84{word-spacing:-18.384318pt;}
.ws19f{word-spacing:-18.278050pt;}
.ws19c{word-spacing:-18.176739pt;}
.ws101{word-spacing:-18.171782pt;}
.ws15a{word-spacing:-18.118649pt;}
.ws121{word-spacing:-18.076591pt;}
.ws97{word-spacing:-17.982994pt;}
.ws92{word-spacing:-17.959247pt;}
.ws3a{word-spacing:-17.906113pt;}
.ws131{word-spacing:-17.852979pt;}
.ws83{word-spacing:-17.693578pt;}
.ws5{word-spacing:-17.640444pt;}
.ws11b{word-spacing:-17.587310pt;}
.wse0{word-spacing:-17.534176pt;}
.ws35{word-spacing:-17.481042pt;}
.ws187{word-spacing:-17.427908pt;}
.wsb{word-spacing:-17.424814pt;}
.wsd{word-spacing:-17.399237pt;}
.wsf{word-spacing:-17.395372pt;}
.ws76{word-spacing:-17.374774pt;}
.wse{word-spacing:-17.321817pt;}
.wsa3{word-spacing:-17.321641pt;}
.ws61{word-spacing:-17.268507pt;}
.wscb{word-spacing:-17.215373pt;}
.ws162{word-spacing:-17.162239pt;}
.wsdc{word-spacing:-17.109105pt;}
.ws80{word-spacing:-17.055971pt;}
.wsf7{word-spacing:-17.002837pt;}
.ws57{word-spacing:-16.790302pt;}
.ws122{word-spacing:-16.737168pt;}
.ws98{word-spacing:-16.707997pt;}
.ws95{word-spacing:-16.684034pt;}
.wse6{word-spacing:-16.630900pt;}
.ws4c{word-spacing:-16.524633pt;}
.ws14d{word-spacing:-16.516969pt;}
.ws72{word-spacing:-16.471499pt;}
.ws19e{word-spacing:-16.365231pt;}
.ws17{word-spacing:-16.258963pt;}
.wsd8{word-spacing:-16.205829pt;}
.ws30{word-spacing:-16.099562pt;}
.ws21{word-spacing:-15.940160pt;}
.ws116{word-spacing:-15.887026pt;}
.ws2{word-spacing:-15.876506pt;}
.ws17c{word-spacing:-15.833892pt;}
.ws1{word-spacing:-15.826987pt;}
.ws11a{word-spacing:-15.780758pt;}
.wsbc{word-spacing:-15.727625pt;}
.wsae{word-spacing:-15.621357pt;}
.ws118{word-spacing:-15.568223pt;}
.ws64{word-spacing:-15.515089pt;}
.ws5f{word-spacing:-15.461955pt;}
.ws186{word-spacing:-15.196286pt;}
.ws51{word-spacing:-15.143152pt;}
.ws62{word-spacing:-15.036884pt;}
.ws15f{word-spacing:-14.983750pt;}
.wsa1{word-spacing:-14.824349pt;}
.ws14f{word-spacing:-14.611813pt;}
.ws28{word-spacing:-14.505546pt;}
.wsf5{word-spacing:-14.452412pt;}
.ws109{word-spacing:-14.399278pt;}
.ws7a{word-spacing:-14.133609pt;}
.ws4e{word-spacing:-14.112390pt;}
.ws29{word-spacing:-14.080475pt;}
.wsb3{word-spacing:-13.867939pt;}
.ws123{word-spacing:-13.811105pt;}
.ws3e{word-spacing:-13.761671pt;}
.ws33{word-spacing:-13.708538pt;}
.wsca{word-spacing:-13.655404pt;}
.ws169{word-spacing:-13.602270pt;}
.ws88{word-spacing:-13.549136pt;}
.wsa5{word-spacing:-13.496002pt;}
.ws12e{word-spacing:-13.283467pt;}
.ws91{word-spacing:-12.970667pt;}
.ws180{word-spacing:-12.964663pt;}
.ws155{word-spacing:-12.698994pt;}
.ws8e{word-spacing:-12.539593pt;}
.ws39{word-spacing:-12.433325pt;}
.wse3{word-spacing:-12.288000pt;}
.wsc7{word-spacing:-12.220789pt;}
.wsc9{word-spacing:-12.167655pt;}
.wsd2{word-spacing:-12.008254pt;}
.wsa7{word-spacing:-11.848852pt;}
.ws89{word-spacing:-11.795718pt;}
.ws161{word-spacing:-11.689451pt;}
.ws12a{word-spacing:-11.607258pt;}
.ws10b{word-spacing:-11.583183pt;}
.ws10c{word-spacing:-11.530049pt;}
.ws106{word-spacing:-11.476915pt;}
.ws46{word-spacing:-11.370647pt;}
.ws15e{word-spacing:-11.317514pt;}
.wse8{word-spacing:-10.998710pt;}
.ws10{word-spacing:-10.896121pt;}
.ws19a{word-spacing:-10.892443pt;}
.ws115{word-spacing:-10.786175pt;}
.ws19b{word-spacing:-10.733041pt;}
.ws37{word-spacing:-10.679907pt;}
.ws18f{word-spacing:-10.626773pt;}
.ws50{word-spacing:-10.307970pt;}
.ws16b{word-spacing:-10.201702pt;}
.ws16a{word-spacing:-10.095435pt;}
.ws43{word-spacing:-10.042301pt;}
.ws13f{word-spacing:-9.936033pt;}
.ws17a{word-spacing:-9.829765pt;}
.ws156{word-spacing:-9.824485pt;}
.ws17b{word-spacing:-9.776631pt;}
.wsc8{word-spacing:-9.310733pt;}
.wsed{word-spacing:-9.245293pt;}
.wsfa{word-spacing:-8.820222pt;}
.ws114{word-spacing:-8.395151pt;}
.ws44{word-spacing:-8.342017pt;}
.wsc1{word-spacing:-8.182615pt;}
.ws85{word-spacing:-7.970080pt;}
.ws10e{word-spacing:-7.704411pt;}
.ws1d{word-spacing:-7.545009pt;}
.ws164{word-spacing:-7.119938pt;}
.wse2{word-spacing:-6.588599pt;}
.wsd7{word-spacing:-5.950993pt;}
.wsee{word-spacing:-5.791591pt;}
.wsb1{word-spacing:-5.738458pt;}
.wsbb{word-spacing:-5.579056pt;}
.ws2c{word-spacing:-4.728914pt;}
.ws87{word-spacing:-4.356977pt;}
.ws7b{word-spacing:-3.931906pt;}
.ws175{word-spacing:-3.772505pt;}
.ws148{word-spacing:-3.400567pt;}
.ws174{word-spacing:-3.347434pt;}
.wsf9{word-spacing:-2.231622pt;}
.ws25{word-spacing:0.000000pt;}
.ws154{word-spacing:0.425071pt;}
.ws1a1{word-spacing:0.797008pt;}
.ws153{word-spacing:1.275213pt;}
.ws18e{word-spacing:2.231622pt;}
.ws165{word-spacing:3.772505pt;}
.ws195{word-spacing:4.782048pt;}
.ws196{word-spacing:6.089438pt;}
.ws52{word-spacing:10.148569pt;}
.ws197{word-spacing:13.655404pt;}
.ws176{word-spacing:16.365231pt;}
.ws177{word-spacing:18.703121pt;}
.ws82{word-spacing:19.181326pt;}
.ws9c{word-spacing:344.864259pt;}
.wsa0{word-spacing:353.797821pt;}
.ws9a{word-spacing:379.693979pt;}
.wse4{word-spacing:940.542470pt;}
.ws4{word-spacing:1565.606179pt;}
._9{margin-left:-12.118087pt;}
._1{margin-left:-10.998784pt;}
._4{margin-left:-8.586454pt;}
._7{margin-left:-6.487706pt;}
._1b{margin-left:-5.462117pt;}
._0{margin-left:-3.682202pt;}
._2{margin-left:-2.199757pt;}
._3{margin-left:-1.275213pt;}
._10{width:0.904182pt;}
._22{width:1.955562pt;}
._23{width:3.357825pt;}
._24{width:8.670357pt;}
._25{width:11.030768pt;}
._1a{width:12.188924pt;}
._26{width:13.460402pt;}
._6{width:14.531439pt;}
._17{width:15.685162pt;}
._1d{width:17.417311pt;}
._a{width:18.564988pt;}
._1f{width:19.876602pt;}
._5{width:21.088918pt;}
._1c{width:21.997421pt;}
._21{width:23.750838pt;}
._f{width:25.185453pt;}
._8{width:27.022374pt;}
._18{width:28.160949pt;}
._19{width:29.808099pt;}
._e{width:30.977044pt;}
._29{width:32.529475pt;}
._c{width:35.249022pt;}
._1e{width:36.928037pt;}
._28{width:58.827952pt;}
._27{width:59.970677pt;}
._16{width:109.893548pt;}
._15{width:151.938785pt;}
._12{width:217.784682pt;}
._13{width:236.134671pt;}
._14{width:394.356913pt;}
._b{width:448.847472pt;}
._11{width:487.551155pt;}
._20{width:1470.225479pt;}
._d{width:1482.550813pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.477333pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:58.447467pt;}
.fs5{font-size:63.761067pt;}
.fs4{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:12.453120pt;}
.ycf{bottom:12.453733pt;}
.ya0{bottom:17.460933pt;}
.ya5{bottom:17.461467pt;}
.yd3{bottom:53.821333pt;}
.y4d{bottom:54.508000pt;}
.y23{bottom:54.524000pt;}
.ya4{bottom:58.828133pt;}
.ycd{bottom:60.824400pt;}
.yd5{bottom:60.907867pt;}
.y9e{bottom:65.831600pt;}
.ya6{bottom:65.917200pt;}
.yd2{bottom:68.219733pt;}
.ya3{bottom:73.228133pt;}
.y123{bottom:96.108000pt;}
.yd8{bottom:100.479200pt;}
.ydb{bottom:100.479733pt;}
.y127{bottom:100.480267pt;}
.y9a{bottom:103.846667pt;}
.yc1{bottom:105.672000pt;}
.yfc{bottom:106.337333pt;}
.yd9{bottom:107.566667pt;}
.yda{bottom:107.567733pt;}
.ydc{bottom:107.589600pt;}
.y15e{bottom:108.162667pt;}
.y4c{bottom:108.164000pt;}
.y77{bottom:108.828000pt;}
.y144{bottom:109.324000pt;}
.ya8{bottom:110.652667pt;}
.ya7{bottom:111.354667pt;}
.yaa{bottom:112.597867pt;}
.yd7{bottom:114.878667pt;}
.y125{bottom:114.879200pt;}
.y126{bottom:114.880267pt;}
.y122{bottom:116.033333pt;}
.y99{bottom:123.772000pt;}
.yc0{bottom:125.597333pt;}
.yfb{bottom:126.262667pt;}
.yea{bottom:128.088000pt;}
.y4b{bottom:128.089333pt;}
.y163{bottom:128.752000pt;}
.y76{bottom:128.753333pt;}
.y143{bottom:129.249333pt;}
.y121{bottom:135.958667pt;}
.y98{bottom:143.697333pt;}
.ybf{bottom:145.522667pt;}
.yfa{bottom:146.188000pt;}
.yd1{bottom:146.996000pt;}
.ye9{bottom:148.013333pt;}
.y4a{bottom:148.014667pt;}
.y162{bottom:148.677333pt;}
.y75{bottom:148.678667pt;}
.y142{bottom:149.174667pt;}
.ya2{bottom:152.004533pt;}
.ycc{bottom:154.000400pt;}
.yd6{bottom:154.084000pt;}
.y120{bottom:155.884000pt;}
.y16f{bottom:158.132000pt;}
.y9d{bottom:159.007600pt;}
.ya9{bottom:159.090667pt;}
.yd0{bottom:161.396000pt;}
.y97{bottom:163.622667pt;}
.yf9{bottom:166.112000pt;}
.y155{bottom:166.113333pt;}
.ya1{bottom:166.404000pt;}
.y22{bottom:167.369333pt;}
.ye8{bottom:167.938667pt;}
.ybd{bottom:167.940000pt;}
.y15a{bottom:168.602667pt;}
.y74{bottom:168.604000pt;}
.y141{bottom:169.100000pt;}
.y11f{bottom:175.809333pt;}
.y16e{bottom:178.057333pt;}
.yc3{bottom:183.546667pt;}
.y96{bottom:183.548000pt;}
.ybe{bottom:185.373333pt;}
.y154{bottom:186.038667pt;}
.ybb{bottom:187.122667pt;}
.y21{bottom:187.293333pt;}
.ye7{bottom:187.862667pt;}
.y49{bottom:187.864000pt;}
.y159{bottom:188.528000pt;}
.y73{bottom:188.529333pt;}
.y140{bottom:189.025333pt;}
.y11e{bottom:195.734667pt;}
.y16d{bottom:197.982667pt;}
.ycb{bottom:203.452000pt;}
.yce{bottom:203.452400pt;}
.y95{bottom:203.472000pt;}
.yf8{bottom:205.962667pt;}
.ye6{bottom:207.788000pt;}
.y48{bottom:207.789333pt;}
.y161{bottom:208.453333pt;}
.y72{bottom:208.454667pt;}
.y9f{bottom:208.458267pt;}
.y9c{bottom:208.458667pt;}
.y13f{bottom:208.950667pt;}
.yba{bottom:209.738667pt;}
.y11d{bottom:215.660000pt;}
.y94{bottom:223.397333pt;}
.yb9{bottom:225.678667pt;}
.yf7{bottom:225.888000pt;}
.y20{bottom:227.144000pt;}
.ye5{bottom:227.713333pt;}
.y47{bottom:227.714667pt;}
.y71{bottom:228.378667pt;}
.y13e{bottom:228.876000pt;}
.y11c{bottom:235.585333pt;}
.yb8{bottom:241.618667pt;}
.y93{bottom:243.322667pt;}
.yf6{bottom:245.813333pt;}
.y1f{bottom:247.069333pt;}
.ye4{bottom:247.638667pt;}
.y46{bottom:247.640000pt;}
.y70{bottom:248.304000pt;}
.y13d{bottom:248.801333pt;}
.y11b{bottom:255.510667pt;}
.y16c{bottom:259.009333pt;}
.y92{bottom:263.248000pt;}
.yb7{bottom:264.234667pt;}
.yf5{bottom:265.738667pt;}
.y1e{bottom:266.994667pt;}
.ye3{bottom:267.564000pt;}
.y45{bottom:267.565333pt;}
.y6f{bottom:268.229333pt;}
.y13c{bottom:268.726667pt;}
.y11a{bottom:275.436000pt;}
.y16b{bottom:278.934667pt;}
.yb6{bottom:280.174667pt;}
.y91{bottom:283.173333pt;}
.yf4{bottom:285.664000pt;}
.y1d{bottom:286.920000pt;}
.ye2{bottom:287.489333pt;}
.y44{bottom:287.490667pt;}
.y6e{bottom:288.154667pt;}
.y13b{bottom:288.652000pt;}
.y16a{bottom:298.860000pt;}
.yb5{bottom:302.790667pt;}
.y90{bottom:303.098667pt;}
.yf3{bottom:305.589333pt;}
.y1c{bottom:306.845333pt;}
.ye1{bottom:307.414667pt;}
.y43{bottom:307.416000pt;}
.y6d{bottom:308.080000pt;}
.y13a{bottom:308.577333pt;}
.y119{bottom:313.560000pt;}
.yb4{bottom:318.730667pt;}
.y169{bottom:318.785333pt;}
.y158{bottom:323.024000pt;}
.yf2{bottom:325.514667pt;}
.y1b{bottom:326.770667pt;}
.ye0{bottom:327.340000pt;}
.y42{bottom:327.341333pt;}
.y6c{bottom:328.005333pt;}
.y118{bottom:333.485333pt;}
.yb3{bottom:342.776000pt;}
.y8f{bottom:342.949333pt;}
.yf1{bottom:345.440000pt;}
.y1a{bottom:346.696000pt;}
.ydf{bottom:347.265333pt;}
.y41{bottom:347.266667pt;}
.yfd{bottom:347.930667pt;}
.y139{bottom:348.428000pt;}
.y117{bottom:353.410667pt;}
.y8e{bottom:362.874667pt;}
.yf0{bottom:365.365333pt;}
.y19{bottom:366.621333pt;}
.yde{bottom:367.190667pt;}
.y40{bottom:367.192000pt;}
.y6b{bottom:367.856000pt;}
.y138{bottom:368.353333pt;}
.yb2{bottom:378.940000pt;}
.y168{bottom:379.810667pt;}
.y8d{bottom:382.800000pt;}
.yef{bottom:385.290667pt;}
.y18{bottom:386.546667pt;}
.y3f{bottom:387.117333pt;}
.y6a{bottom:387.781333pt;}
.y137{bottom:388.278667pt;}
.y116{bottom:391.533333pt;}
.yb1{bottom:398.865333pt;}
.y167{bottom:399.736000pt;}
.y8c{bottom:402.725333pt;}
.yee{bottom:405.216000pt;}
.ydd{bottom:405.414667pt;}
.y17{bottom:406.472000pt;}
.y3e{bottom:407.042667pt;}
.y69{bottom:407.706667pt;}
.y136{bottom:408.204000pt;}
.y115{bottom:411.458667pt;}
.yb0{bottom:418.790667pt;}
.y166{bottom:419.661333pt;}
.y8b{bottom:422.650667pt;}
.yed{bottom:425.141333pt;}
.y16{bottom:426.397333pt;}
.y3d{bottom:426.968000pt;}
.y68{bottom:427.632000pt;}
.yca{bottom:429.856000pt;}
.y114{bottom:431.384000pt;}
.yaf{bottom:438.716000pt;}
.y165{bottom:439.586667pt;}
.y8a{bottom:442.576000pt;}
.yec{bottom:445.066667pt;}
.y15{bottom:446.322667pt;}
.y3c{bottom:446.893333pt;}
.y67{bottom:447.557333pt;}
.y135{bottom:448.054667pt;}
.y113{bottom:451.309333pt;}
.yae{bottom:458.641333pt;}
.y89{bottom:462.501333pt;}
.y153{bottom:464.992000pt;}
.y14{bottom:466.248000pt;}
.y3b{bottom:466.818667pt;}
.y66{bottom:467.482667pt;}
.y134{bottom:467.980000pt;}
.y112{bottom:471.234667pt;}
.y164{bottom:474.124000pt;}
.yad{bottom:478.566667pt;}
.y88{bottom:482.426667pt;}
.yeb{bottom:484.917333pt;}
.y13{bottom:486.173333pt;}
.y3a{bottom:486.744000pt;}
.y65{bottom:487.408000pt;}
.y133{bottom:487.905333pt;}
.y111{bottom:491.160000pt;}
.yac{bottom:498.492000pt;}
.y87{bottom:502.352000pt;}
.y152{bottom:504.842667pt;}
.y12{bottom:506.098667pt;}
.y39{bottom:506.669333pt;}
.y64{bottom:507.333333pt;}
.y132{bottom:507.830667pt;}
.y86{bottom:522.277333pt;}
.y151{bottom:524.768000pt;}
.y38{bottom:526.594667pt;}
.y63{bottom:527.258667pt;}
.y131{bottom:527.756000pt;}
.y110{bottom:529.284000pt;}
.yab{bottom:536.714667pt;}
.y85{bottom:542.202667pt;}
.y150{bottom:544.693333pt;}
.ybc{bottom:546.520000pt;}
.y62{bottom:547.184000pt;}
.y130{bottom:547.680000pt;}
.y9b{bottom:561.157333pt;}
.y84{bottom:562.128000pt;}
.y14f{bottom:564.618667pt;}
.y11{bottom:565.874667pt;}
.y37{bottom:566.445333pt;}
.y61{bottom:567.109333pt;}
.y12f{bottom:567.605333pt;}
.y10f{bottom:569.898667pt;}
.y83{bottom:582.053333pt;}
.y10{bottom:584.470667pt;}
.y14e{bottom:584.544000pt;}
.y15d{bottom:586.369333pt;}
.y36{bottom:586.370667pt;}
.y60{bottom:587.034667pt;}
.y12e{bottom:587.530667pt;}
.y10e{bottom:589.824000pt;}
.y82{bottom:601.978667pt;}
.yf{bottom:603.068000pt;}
.y14d{bottom:604.469333pt;}
.y15c{bottom:606.294667pt;}
.y35{bottom:606.296000pt;}
.y5f{bottom:606.960000pt;}
.y12d{bottom:607.456000pt;}
.y10d{bottom:609.749333pt;}
.ye{bottom:621.665333pt;}
.y81{bottom:621.904000pt;}
.y14c{bottom:624.394667pt;}
.y34{bottom:626.220000pt;}
.y160{bottom:626.884000pt;}
.y5e{bottom:626.885333pt;}
.y12c{bottom:627.381333pt;}
.y10c{bottom:629.674667pt;}
.y157{bottom:641.828000pt;}
.y14b{bottom:644.320000pt;}
.y33{bottom:646.145333pt;}
.y15f{bottom:646.809333pt;}
.y5d{bottom:646.810667pt;}
.y12b{bottom:647.306667pt;}
.y10b{bottom:649.600000pt;}
.yd{bottom:660.186667pt;}
.y80{bottom:661.753333pt;}
.y14a{bottom:664.244000pt;}
.y32{bottom:666.070667pt;}
.y5c{bottom:666.734667pt;}
.y12a{bottom:667.232000pt;}
.y10a{bottom:669.525333pt;}
.y7f{bottom:681.678667pt;}
.yc9{bottom:684.169333pt;}
.y31{bottom:685.996000pt;}
.y5b{bottom:686.660000pt;}
.y129{bottom:687.157333pt;}
.y109{bottom:689.450667pt;}
.yc{bottom:700.037333pt;}
.y7e{bottom:701.604000pt;}
.yc8{bottom:704.094667pt;}
.y30{bottom:705.921333pt;}
.yc2{bottom:706.585333pt;}
.y108{bottom:709.376000pt;}
.y7d{bottom:721.529333pt;}
.yc7{bottom:724.020000pt;}
.y2f{bottom:725.846667pt;}
.y5a{bottom:726.510667pt;}
.y107{bottom:729.301333pt;}
.y128{bottom:731.790667pt;}
.y7c{bottom:741.454667pt;}
.y149{bottom:743.945333pt;}
.yb{bottom:744.910667pt;}
.y2e{bottom:745.772000pt;}
.y59{bottom:746.436000pt;}
.y106{bottom:749.225333pt;}
.y124{bottom:756.232000pt;}
.ya{bottom:760.850667pt;}
.y7b{bottom:761.380000pt;}
.yc6{bottom:763.870667pt;}
.y2d{bottom:765.697333pt;}
.y58{bottom:766.361333pt;}
.y9{bottom:776.790667pt;}
.y7a{bottom:781.305333pt;}
.yc5{bottom:783.796000pt;}
.y173{bottom:784.372000pt;}
.y2c{bottom:785.622667pt;}
.y57{bottom:786.286667pt;}
.y105{bottom:787.349333pt;}
.y79{bottom:801.230667pt;}
.y148{bottom:803.721333pt;}
.y172{bottom:804.297333pt;}
.y2b{bottom:805.548000pt;}
.y56{bottom:806.212000pt;}
.y104{bottom:807.274667pt;}
.y8{bottom:807.634667pt;}
.y156{bottom:821.156000pt;}
.yc4{bottom:823.646667pt;}
.y171{bottom:824.222667pt;}
.y2a{bottom:825.473333pt;}
.y55{bottom:826.137333pt;}
.y103{bottom:827.200000pt;}
.y7{bottom:827.560000pt;}
.y78{bottom:841.081333pt;}
.y147{bottom:843.572000pt;}
.y170{bottom:844.148000pt;}
.y29{bottom:845.398667pt;}
.y54{bottom:846.062667pt;}
.y102{bottom:847.125333pt;}
.y146{bottom:863.497333pt;}
.y28{bottom:865.324000pt;}
.y53{bottom:865.988000pt;}
.y101{bottom:867.050667pt;}
.y6{bottom:867.410667pt;}
.y27{bottom:885.249333pt;}
.y52{bottom:885.913333pt;}
.y100{bottom:886.976000pt;}
.y5{bottom:895.305333pt;}
.y145{bottom:903.348000pt;}
.y26{bottom:905.174667pt;}
.y51{bottom:905.838667pt;}
.yff{bottom:906.901333pt;}
.y25{bottom:925.100000pt;}
.y50{bottom:925.764000pt;}
.yfe{bottom:926.826667pt;}
.y15b{bottom:945.025333pt;}
.y4f{bottom:945.689333pt;}
.y4{bottom:957.142667pt;}
.y24{bottom:964.950667pt;}
.y4e{bottom:965.614667pt;}
.y3{bottom:1016.889333pt;}
.y2{bottom:1032.829333pt;}
.y1{bottom:1048.769333pt;}
.h8{height:28.341794pt;}
.he{height:35.424000pt;}
.hf{height:37.037333pt;}
.h14{height:37.296000pt;}
.h3{height:37.348045pt;}
.hd{height:37.392000pt;}
.ha{height:37.788901pt;}
.h5{height:39.133093pt;}
.h13{height:39.368000pt;}
.h10{height:39.422797pt;}
.h4{height:42.512691pt;}
.h2{height:43.426468pt;}
.h11{height:44.874349pt;}
.h9{height:47.236007pt;}
.h17{height:47.241341pt;}
.hb{height:47.374473pt;}
.h7{height:58.361516pt;}
.h6{height:63.548264pt;}
.h15{height:66.098133pt;}
.h16{height:66.541867pt;}
.h12{height:222.400000pt;}
.hc{height:232.933333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:520.133333pt;}
.w4{width:527.200000pt;}
.w2{width:529.600000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:14.861333pt;}
.x7{left:19.298667pt;}
.x2e{left:69.428667pt;}
.x1e{left:81.688000pt;}
.x1{left:83.149333pt;}
.x2c{left:89.189067pt;}
.x15{left:91.118667pt;}
.x3{left:98.877333pt;}
.x38{left:103.074667pt;}
.x2{left:104.692000pt;}
.x2b{left:112.498400pt;}
.x35{left:113.492133pt;}
.x4{left:116.358667pt;}
.x5{left:131.517333pt;}
.x31{left:132.850667pt;}
.x1f{left:136.184000pt;}
.x32{left:143.419587pt;}
.x27{left:172.258667pt;}
.xe{left:176.697333pt;}
.x23{left:178.442667pt;}
.x24{left:179.849440pt;}
.x6{left:181.016000pt;}
.xa{left:182.880000pt;}
.xb{left:184.286253pt;}
.x39{left:188.976000pt;}
.x22{left:196.661333pt;}
.x9{left:201.098667pt;}
.x14{left:212.758667pt;}
.x30{left:252.654667pt;}
.x18{left:255.849333pt;}
.x37{left:266.668000pt;}
.x17{left:269.973333pt;}
.x2f{left:284.765267pt;}
.x36{left:286.686667pt;}
.x2a{left:306.753333pt;}
.x12{left:311.192000pt;}
.x29{left:357.950667pt;}
.x21{left:361.006667pt;}
.x11{left:362.389333pt;}
.x25{left:363.525333pt;}
.x8{left:365.445333pt;}
.xc{left:367.962667pt;}
.xf{left:371.584000pt;}
.x28{left:374.028960pt;}
.x26{left:376.626373pt;}
.x10{left:378.466813pt;}
.xd{left:381.064227pt;}
.x1a{left:404.993333pt;}
.x13{left:409.622667pt;}
.x2d{left:421.812000pt;}
.x19{left:426.004000pt;}
.x33{left:441.717333pt;}
.x34{left:451.300147pt;}
.x1c{left:564.046667pt;}
.x1b{left:586.836000pt;}
.x16{left:598.213333pt;}
.x1d{left:611.444000pt;}
}




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