
    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_fda5e740eb627aaefa0ce70c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003000;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_f5094a410941d8c9ec91a2fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.032000;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_21142dcdbefa5f86bb65a4f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_503b2df60f8c26924a740df2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.509000;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_012bc1f995c0c1f98f761175.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.762000;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_cb489521f29c8d30c280e4b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948000;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_bd672aafe168b0cb8704158d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_9965cf11b9155cdf0a9ffd76.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_3613de476b2bc526446f9908.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.088000;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_90d5bf822bd3080daf923bf1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.067000;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_e3be4f4bb0881d1658056dc3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718000;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_8c8a20c5e9b2cb1e160458e2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.676000;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_52c32969646d813848a3c4e6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945000;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:ffe;src:url('chunks/assets/font_b3525259fb553b5d57c3998b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.214000;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:fff;src:url('chunks/assets/font_db062d5263ec0d4b02748be4.woff2')format("woff");}.fff{font-family:fff;line-height:0.845000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-3.840000px;}
.ls11{letter-spacing:-1.127986px;}
.lse{letter-spacing:-0.988788px;}
.ls10{letter-spacing:-0.010800px;}
.ls4{letter-spacing:-0.005400px;}
.ls8{letter-spacing:-0.003360px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003600px;}
.ls0{letter-spacing:0.004400px;}
.lsb{letter-spacing:0.005400px;}
.ls16{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.010800px;}
.ls18{letter-spacing:0.013743px;}
.ls15{letter-spacing:0.014400px;}
.ls17{letter-spacing:0.081599px;}
.ls6{letter-spacing:0.118200px;}
.ls5{letter-spacing:0.119400px;}
.ls3{letter-spacing:0.120600px;}
.lsa{letter-spacing:0.121800px;}
.ls7{letter-spacing:0.137220px;}
.lsc{letter-spacing:0.210600px;}
.lsf{letter-spacing:0.211197px;}
.ls14{letter-spacing:89.950876px;}
.lsd{letter-spacing:152.755200px;}
.ls12{letter-spacing:334.180800px;}
.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;}
}
.ws12f{word-spacing:-346.132800px;}
.ws105{word-spacing:-155.558400px;}
.ws104{word-spacing:-11.952000px;}
.ws130{word-spacing:-8.112000px;}
.ws41{word-spacing:-0.060001px;}
.ws29{word-spacing:-0.054000px;}
.ws8{word-spacing:-0.048396px;}
.wsd{word-spacing:-0.047999px;}
.ws4{word-spacing:-0.043996px;}
.ws4f{word-spacing:-0.041999px;}
.wsb5{word-spacing:-0.039599px;}
.wsab{word-spacing:-0.031995px;}
.ws40{word-spacing:0.000000px;}
.ws157{word-spacing:11.625455px;}
.ws80{word-spacing:11.851052px;}
.ws12c{word-spacing:11.942251px;}
.wsd3{word-spacing:11.966250px;}
.ws126{word-spacing:12.081449px;}
.ws1db{word-spacing:12.839839px;}
.wsb6{word-spacing:13.089436px;}
.ws18a{word-spacing:13.161435px;}
.ws116{word-spacing:13.170600px;}
.ws112{word-spacing:13.197600px;}
.wse9{word-spacing:13.257434px;}
.ws1c6{word-spacing:13.305434px;}
.wsa7{word-spacing:13.367833px;}
.ws1df{word-spacing:13.502231px;}
.ws124{word-spacing:13.516200px;}
.ws11c{word-spacing:13.527000px;}
.ws149{word-spacing:13.531031px;}
.ws2a{word-spacing:13.537800px;}
.wsbb{word-spacing:13.543200px;}
.wsc9{word-spacing:13.581000px;}
.ws19c{word-spacing:13.785428px;}
.ws1d8{word-spacing:13.828627px;}
.ws1c3{word-spacing:13.833427px;}
.ws1bb{word-spacing:13.843027px;}
.ws17c{word-spacing:13.852627px;}
.ws17e{word-spacing:13.857427px;}
.ws1b{word-spacing:13.862227px;}
.ws177{word-spacing:13.867027px;}
.ws182{word-spacing:13.886226px;}
.ws1de{word-spacing:13.915026px;}
.ws12e{word-spacing:13.939026px;}
.ws14c{word-spacing:13.953426px;}
.ws18c{word-spacing:13.958226px;}
.wsb2{word-spacing:13.963025px;}
.ws17d{word-spacing:13.972625px;}
.ws3b{word-spacing:13.977425px;}
.ws195{word-spacing:13.982225px;}
.wsb4{word-spacing:13.991825px;}
.wsdb{word-spacing:13.996625px;}
.ws199{word-spacing:14.001425px;}
.ws1d1{word-spacing:14.006225px;}
.wsb1{word-spacing:14.025425px;}
.ws1a6{word-spacing:14.030225px;}
.ws3d{word-spacing:14.044624px;}
.ws18b{word-spacing:14.054224px;}
.ws109{word-spacing:14.059024px;}
.wsd2{word-spacing:14.063824px;}
.ws127{word-spacing:14.073424px;}
.ws152{word-spacing:14.083024px;}
.ws1a{word-spacing:14.087824px;}
.ws16b{word-spacing:14.102224px;}
.wse8{word-spacing:14.107024px;}
.wse1{word-spacing:14.111824px;}
.wsaa{word-spacing:14.116624px;}
.ws154{word-spacing:14.135823px;}
.ws1c4{word-spacing:14.169423px;}
.wsdc{word-spacing:14.172958px;}
.ws3c{word-spacing:14.174223px;}
.ws1dc{word-spacing:14.179023px;}
.wsa8{word-spacing:14.193423px;}
.ws1d{word-spacing:14.203022px;}
.wsae{word-spacing:14.212622px;}
.ws14f{word-spacing:14.217422px;}
.ws1bf{word-spacing:14.222222px;}
.ws1be{word-spacing:14.227022px;}
.wsb0{word-spacing:14.255822px;}
.ws14d{word-spacing:14.299021px;}
.ws103{word-spacing:14.303821px;}
.ws1bc{word-spacing:14.313421px;}
.wsac{word-spacing:14.323021px;}
.ws1a1{word-spacing:14.327821px;}
.ws1b1{word-spacing:14.332621px;}
.ws1d7{word-spacing:14.342221px;}
.wse4{word-spacing:14.361420px;}
.ws1ea{word-spacing:14.366220px;}
.wsb3{word-spacing:14.428620px;}
.wsd4{word-spacing:14.443019px;}
.wsaf{word-spacing:14.513158px;}
.wsa9{word-spacing:14.534218px;}
.ws1c5{word-spacing:14.563018px;}
.ws19a{word-spacing:14.577418px;}
.ws1c2{word-spacing:14.587018px;}
.wsdd{word-spacing:14.591818px;}
.ws3a{word-spacing:14.707016px;}
.ws32{word-spacing:14.742000px;}
.ws13{word-spacing:14.783815px;}
.ws19b{word-spacing:14.798215px;}
.ws184{word-spacing:14.807815px;}
.ws39{word-spacing:14.860800px;}
.ws183{word-spacing:14.903814px;}
.ws2c{word-spacing:14.920200px;}
.wseb{word-spacing:14.925600px;}
.wse7{word-spacing:14.971013px;}
.ws1c0{word-spacing:14.990213px;}
.ws86{word-spacing:15.022800px;}
.ws1b0{word-spacing:15.081411px;}
.wsd1{word-spacing:15.093000px;}
.ws119{word-spacing:15.109200px;}
.wse5{word-spacing:15.129411px;}
.ws19d{word-spacing:15.139011px;}
.wse6{word-spacing:15.147900px;}
.ws1e6{word-spacing:15.187010px;}
.wsbc{word-spacing:15.206400px;}
.ws43{word-spacing:15.319800px;}
.ws190{word-spacing:15.355008px;}
.ws1e5{word-spacing:15.379008px;}
.ws178{word-spacing:15.388608px;}
.ws1e7{word-spacing:15.451007px;}
.ws75{word-spacing:15.465600px;}
.ws1c1{word-spacing:15.479806px;}
.ws191{word-spacing:15.575805px;}
.wscb{word-spacing:15.762600px;}
.ws12d{word-spacing:15.811002px;}
.ws65{word-spacing:15.849000px;}
.ws48{word-spacing:15.859800px;}
.ws25{word-spacing:15.876000px;}
.ws73{word-spacing:15.881400px;}
.wsf1{word-spacing:15.892200px;}
.wsa3{word-spacing:15.903000px;}
.ws141{word-spacing:15.935400px;}
.ws3f{word-spacing:15.951600px;}
.ws21{word-spacing:15.973200px;}
.ws69{word-spacing:15.978600px;}
.ws52{word-spacing:15.994800px;}
.ws3e{word-spacing:16.005600px;}
.ws24{word-spacing:16.016400px;}
.ws168{word-spacing:16.041399px;}
.ws125{word-spacing:16.048800px;}
.ws23{word-spacing:16.059600px;}
.ws194{word-spacing:16.065399px;}
.ws7e{word-spacing:16.070400px;}
.ws59{word-spacing:16.081200px;}
.wsa5{word-spacing:16.086600px;}
.ws5f{word-spacing:16.178400px;}
.ws72{word-spacing:16.189200px;}
.ws87{word-spacing:16.194600px;}
.ws17f{word-spacing:16.199798px;}
.ws181{word-spacing:16.204597px;}
.ws61{word-spacing:16.221600px;}
.ws167{word-spacing:16.237800px;}
.ws81{word-spacing:16.243200px;}
.ws82{word-spacing:16.254000px;}
.ws95{word-spacing:16.259400px;}
.ws180{word-spacing:16.266997px;}
.wsc4{word-spacing:16.286400px;}
.ws108{word-spacing:16.319796px;}
.ws63{word-spacing:16.324200px;}
.ws74{word-spacing:16.362000px;}
.ws1dd{word-spacing:16.382195px;}
.ws139{word-spacing:16.416000px;}
.ws51{word-spacing:16.486200px;}
.ws16c{word-spacing:16.487794px;}
.ws84{word-spacing:16.518600px;}
.ws189{word-spacing:16.554993px;}
.wsa1{word-spacing:16.567200px;}
.ws188{word-spacing:16.574193px;}
.ws173{word-spacing:16.626992px;}
.ws36{word-spacing:16.664400px;}
.ws1a5{word-spacing:16.674992px;}
.ws37{word-spacing:16.723800px;}
.ws1a3{word-spacing:16.732591px;}
.ws38{word-spacing:16.734600px;}
.ws1ba{word-spacing:16.828590px;}
.ws1a4{word-spacing:16.838190px;}
.ws161{word-spacing:16.858800px;}
.ws111{word-spacing:16.869600px;}
.ws192{word-spacing:16.881389px;}
.ws15d{word-spacing:16.902000px;}
.ws8c{word-spacing:16.934400px;}
.ws193{word-spacing:16.943788px;}
.wscc{word-spacing:16.999200px;}
.wsff{word-spacing:17.010000px;}
.ws1b8{word-spacing:17.025387px;}
.ws1e4{word-spacing:17.034987px;}
.wsbd{word-spacing:17.037000px;}
.ws134{word-spacing:17.042400px;}
.ws1e3{word-spacing:17.087786px;}
.ws53{word-spacing:17.101800px;}
.ws10f{word-spacing:17.172000px;}
.ws1b9{word-spacing:17.178985px;}
.wsc3{word-spacing:17.242200px;}
.ws16d{word-spacing:17.265384px;}
.ws138{word-spacing:17.280000px;}
.ws45{word-spacing:17.312400px;}
.ws133{word-spacing:17.344800px;}
.ws121{word-spacing:17.355600px;}
.wsba{word-spacing:17.393400px;}
.ws1d4{word-spacing:17.428582px;}
.ws13f{word-spacing:17.528400px;}
.wsc0{word-spacing:17.582400px;}
.ws1d6{word-spacing:17.639780px;}
.ws55{word-spacing:17.641800px;}
.ws26{word-spacing:17.685000px;}
.ws42{word-spacing:17.690400px;}
.ws118{word-spacing:17.701200px;}
.ws27{word-spacing:17.722800px;}
.ws6d{word-spacing:17.782200px;}
.wsfe{word-spacing:17.868600px;}
.ws77{word-spacing:17.879400px;}
.wsf5{word-spacing:17.933400px;}
.ws1d2{word-spacing:17.937376px;}
.ws66{word-spacing:18.000180px;}
.ws6e{word-spacing:18.041400px;}
.ws54{word-spacing:18.149400px;}
.ws1aa{word-spacing:18.177373px;}
.ws1da{word-spacing:18.191773px;}
.ws1d3{word-spacing:18.201372px;}
.ws143{word-spacing:18.219600px;}
.ws16e{word-spacing:18.234972px;}
.wsc5{word-spacing:18.262800px;}
.ws159{word-spacing:18.282971px;}
.ws99{word-spacing:18.300600px;}
.ws135{word-spacing:18.322200px;}
.ws1e9{word-spacing:18.326171px;}
.ws5c{word-spacing:18.381600px;}
.ws136{word-spacing:18.403200px;}
.ws1a8{word-spacing:18.422170px;}
.ws1d5{word-spacing:18.426970px;}
.wsc7{word-spacing:18.430200px;}
.ws1d9{word-spacing:18.436570px;}
.ws1a7{word-spacing:18.441369px;}
.ws10{word-spacing:18.450969px;}
.wsc1{word-spacing:18.462600px;}
.ws1a9{word-spacing:18.542168px;}
.ws1cb{word-spacing:18.551768px;}
.wsf9{word-spacing:18.559800px;}
.wsf{word-spacing:18.623767px;}
.ws142{word-spacing:18.640800px;}
.ws1e8{word-spacing:18.647767px;}
.ws1d0{word-spacing:18.662167px;}
.ws90{word-spacing:18.662400px;}
.ws9a{word-spacing:18.664800px;}
.ws171{word-spacing:18.666967px;}
.ws15f{word-spacing:18.835200px;}
.ws1cc{word-spacing:18.878164px;}
.ws97{word-spacing:18.981000px;}
.ws1cd{word-spacing:19.022162px;}
.wsb7{word-spacing:19.062000px;}
.ws13e{word-spacing:19.083600px;}
.wsf6{word-spacing:19.126800px;}
.ws158{word-spacing:19.233360px;}
.ws162{word-spacing:19.283400px;}
.ws5{word-spacing:19.509777px;}
.ws1ce{word-spacing:19.526156px;}
.ws144{word-spacing:19.580400px;}
.ws13b{word-spacing:19.623600px;}
.ws175{word-spacing:19.636555px;}
.ws7{word-spacing:19.648379px;}
.ws1cf{word-spacing:19.665354px;}
.ws13a{word-spacing:19.683000px;}
.wsb{word-spacing:19.701179px;}
.ws3{word-spacing:19.720979px;}
.wsf3{word-spacing:19.737000px;}
.wsa{word-spacing:19.760580px;}
.ws9{word-spacing:19.819980px;}
.ws6{word-spacing:19.852980px;}
.ws5d{word-spacing:19.893600px;}
.ws1ae{word-spacing:19.905351px;}
.ws8d{word-spacing:19.963800px;}
.ws113{word-spacing:19.980000px;}
.ws1af{word-spacing:20.020550px;}
.wsc{word-spacing:20.077383px;}
.ws179{word-spacing:20.140548px;}
.wscd{word-spacing:20.163600px;}
.ws31{word-spacing:20.201400px;}
.ws17a{word-spacing:20.241347px;}
.ws1a0{word-spacing:20.250947px;}
.ws17b{word-spacing:20.255747px;}
.ws7a{word-spacing:20.260800px;}
.ws19e{word-spacing:20.418945px;}
.ws6c{word-spacing:20.428200px;}
.wsbf{word-spacing:20.503800px;}
.ws71{word-spacing:20.579400px;}
.ws19f{word-spacing:20.582143px;}
.ws137{word-spacing:20.601000px;}
.ws174{word-spacing:20.654142px;}
.ws96{word-spacing:20.671200px;}
.ws10a{word-spacing:20.682000px;}
.ws13d{word-spacing:20.703600px;}
.ws93{word-spacing:20.774356px;}
.ws5e{word-spacing:20.822400px;}
.ws68{word-spacing:20.827800px;}
.ws10e{word-spacing:20.984400px;}
.ws47{word-spacing:21.016800px;}
.wsf0{word-spacing:21.043800px;}
.ws1b5{word-spacing:21.201335px;}
.ws78{word-spacing:21.232800px;}
.ws94{word-spacing:21.270600px;}
.ws1b7{word-spacing:21.273334px;}
.ws11b{word-spacing:21.292200px;}
.ws91{word-spacing:21.324600px;}
.ws11a{word-spacing:21.330000px;}
.ws11d{word-spacing:21.335400px;}
.ws92{word-spacing:21.384000px;}
.wsd0{word-spacing:21.416400px;}
.wsce{word-spacing:21.432600px;}
.ws114{word-spacing:21.524400px;}
.ws1b6{word-spacing:21.599730px;}
.ws13c{word-spacing:21.627000px;}
.wscf{word-spacing:21.643744px;}
.ws10c{word-spacing:21.664800px;}
.ws15e{word-spacing:21.735000px;}
.ws1c7{word-spacing:21.772528px;}
.wsfa{word-spacing:21.886200px;}
.ws115{word-spacing:21.929400px;}
.ws98{word-spacing:21.961800px;}
.ws7b{word-spacing:22.005000px;}
.ws1ca{word-spacing:22.079724px;}
.ws1c9{word-spacing:22.252522px;}
.wse{word-spacing:22.266922px;}
.ws1c8{word-spacing:22.281321px;}
.ws7d{word-spacing:22.302000px;}
.ws1e2{word-spacing:22.348521px;}
.ws46{word-spacing:22.377600px;}
.wsb8{word-spacing:22.383000px;}
.ws1e0{word-spacing:22.396520px;}
.ws122{word-spacing:22.399200px;}
.ws120{word-spacing:22.404600px;}
.ws57{word-spacing:22.447800px;}
.ws19{word-spacing:22.588518px;}
.ws14a{word-spacing:22.612517px;}
.ws1e1{word-spacing:22.622117px;}
.ws22{word-spacing:22.685400px;}
.ws14b{word-spacing:22.689316px;}
.ws1ad{word-spacing:22.698916px;}
.ws172{word-spacing:22.751716px;}
.ws11f{word-spacing:22.755600px;}
.wsca{word-spacing:22.788000px;}
.wsf2{word-spacing:22.804200px;}
.ws88{word-spacing:22.842000px;}
.ws5a{word-spacing:22.874400px;}
.ws1ab{word-spacing:22.953313px;}
.ws5b{word-spacing:22.960800px;}
.ws60{word-spacing:22.982400px;}
.ws8a{word-spacing:23.036400px;}
.ws2d{word-spacing:23.058000px;}
.ws1ac{word-spacing:23.073312px;}
.ws1c{word-spacing:23.265309px;}
.wsb9{word-spacing:23.322600px;}
.ws89{word-spacing:23.344744px;}
.wsf4{word-spacing:23.365800px;}
.ws10b{word-spacing:23.490000px;}
.ws11{word-spacing:23.505306px;}
.ws6f{word-spacing:23.506200px;}
.ws85{word-spacing:23.646600px;}
.ws18{word-spacing:23.740503px;}
.ws163{word-spacing:23.743800px;}
.ws160{word-spacing:23.754600px;}
.ws12{word-spacing:23.966100px;}
.ws8e{word-spacing:24.003000px;}
.wsa2{word-spacing:24.024600px;}
.ws2f{word-spacing:24.046200px;}
.ws83{word-spacing:24.165000px;}
.ws15c{word-spacing:24.278400px;}
.ws165{word-spacing:24.327000px;}
.wsc6{word-spacing:24.445800px;}
.wsf7{word-spacing:24.683400px;}
.wsc2{word-spacing:24.732000px;}
.ws166{word-spacing:24.737400px;}
.ws110{word-spacing:24.753600px;}
.ws70{word-spacing:24.802200px;}
.ws4a{word-spacing:24.894000px;}
.ws20{word-spacing:24.926400px;}
.ws7c{word-spacing:25.023600px;}
.ws33{word-spacing:25.131600px;}
.ws35{word-spacing:25.185600px;}
.ws34{word-spacing:25.239600px;}
.ws185{word-spacing:25.319684px;}
.ws1f{word-spacing:25.353000px;}
.ws1bd{word-spacing:25.545281px;}
.wsa0{word-spacing:25.655400px;}
.ws186{word-spacing:25.684479px;}
.ws101{word-spacing:25.698879px;}
.ws187{word-spacing:25.794878px;}
.ws169{word-spacing:25.958076px;}
.ws16{word-spacing:25.972475px;}
.ws117{word-spacing:25.990200px;}
.ws17{word-spacing:26.006075px;}
.ws140{word-spacing:26.098200px;}
.ws147{word-spacing:26.125200px;}
.wsbe{word-spacing:26.184600px;}
.ws8f{word-spacing:26.200800px;}
.wsf8{word-spacing:26.227800px;}
.ws64{word-spacing:26.384400px;}
.ws145{word-spacing:26.433000px;}
.ws15{word-spacing:26.548468px;}
.ws2b{word-spacing:26.578800px;}
.ws100{word-spacing:26.620467px;}
.ws14{word-spacing:26.634867px;}
.wsfb{word-spacing:26.919000px;}
.ws8b{word-spacing:26.951400px;}
.ws6a{word-spacing:27.064800px;}
.ws146{word-spacing:27.091800px;}
.wsc8{word-spacing:27.145800px;}
.ws176{word-spacing:27.172460px;}
.ws9e{word-spacing:27.356400px;}
.ws9f{word-spacing:27.426544px;}
.ws62{word-spacing:27.486000px;}
.wsed{word-spacing:27.648000px;}
.ws4e{word-spacing:27.718200px;}
.wsec{word-spacing:27.745200px;}
.ws11e{word-spacing:28.009800px;}
.wsfd{word-spacing:28.058400px;}
.ws28{word-spacing:28.128600px;}
.ws4d{word-spacing:28.188000px;}
.ws164{word-spacing:28.247400px;}
.ws4b{word-spacing:28.274400px;}
.ws15b{word-spacing:28.474200px;}
.ws15a{word-spacing:28.593000px;}
.ws9d{word-spacing:28.603800px;}
.ws16f{word-spacing:28.737241px;}
.ws4c{word-spacing:28.765800px;}
.ws10d{word-spacing:28.814400px;}
.ws79{word-spacing:28.819800px;}
.ws50{word-spacing:29.219400px;}
.wsea{word-spacing:29.732400px;}
.ws2e{word-spacing:29.835000px;}
.ws1b4{word-spacing:30.230022px;}
.ws6b{word-spacing:30.288600px;}
.ws76{word-spacing:30.380400px;}
.ws16a{word-spacing:30.407620px;}
.ws58{word-spacing:30.456000px;}
.wsef{word-spacing:30.682800px;}
.ws1b2{word-spacing:30.974013px;}
.ws148{word-spacing:31.031612px;}
.ws1b3{word-spacing:31.468407px;}
.ws132{word-spacing:31.681800px;}
.wsee{word-spacing:31.827600px;}
.ws123{word-spacing:31.870800px;}
.ws131{word-spacing:32.027400px;}
.ws30{word-spacing:32.842800px;}
.ws102{word-spacing:33.033187px;}
.ws196{word-spacing:33.844377px;}
.ws198{word-spacing:33.959576px;}
.ws197{word-spacing:34.185173px;}
.wsa4{word-spacing:34.290000px;}
.wsfc{word-spacing:34.549200px;}
.ws0{word-spacing:35.820179px;}
.ws9c{word-spacing:35.953200px;}
.ws56{word-spacing:36.158400px;}
.ws49{word-spacing:36.185400px;}
.ws107{word-spacing:36.244347px;}
.ws44{word-spacing:36.250200px;}
.ws1{word-spacing:36.264181px;}
.ws2{word-spacing:36.384182px;}
.ws67{word-spacing:36.930600px;}
.ws106{word-spacing:37.161135px;}
.ws170{word-spacing:37.617130px;}
.ws12a{word-spacing:38.961113px;}
.ws129{word-spacing:39.205910px;}
.ws9b{word-spacing:41.855400px;}
.ws12b{word-spacing:44.370645px;}
.ws1e{word-spacing:53.816400px;}
.ws1a2{word-spacing:65.903176px;}
.ws155{word-spacing:231.640304px;}
.ws156{word-spacing:244.902539px;}
.ws14e{word-spacing:257.828777px;}
.ws151{word-spacing:260.209547px;}
.ws153{word-spacing:282.822065px;}
.ws128{word-spacing:302.439419px;}
.wse2{word-spacing:365.088236px;}
.wse0{word-spacing:425.817077px;}
.wsd7{word-spacing:438.532118px;}
.wsde{word-spacing:452.015150px;}
.wsd9{word-spacing:466.770165px;}
.wsdf{word-spacing:479.144411px;}
.ws18e{word-spacing:526.212622px;}
.wse3{word-spacing:531.727753px;}
.ws18d{word-spacing:552.405895px;}
.ws18f{word-spacing:554.786665px;}
.wsd6{word-spacing:589.187835px;}
.wsd5{word-spacing:589.269434px;}
.wsa6{word-spacing:703.220010px;}
.ws150{word-spacing:733.608430px;}
.wsad{word-spacing:963.040762px;}
.wsda{word-spacing:1805.531031px;}
.wsd8{word-spacing:1916.601642px;}
.ws7f{word-spacing:2117.723928px;}
._41{margin-left:-203.074200px;}
._4b{margin-left:-184.833600px;}
._49{margin-left:-181.435200px;}
._4a{margin-left:-178.012800px;}
._4c{margin-left:-175.680000px;}
._c{margin-left:-4.333871px;}
._0{margin-left:-2.472012px;}
._2{margin-left:-1.280412px;}
._1{width:1.962231px;}
._15{width:4.115412px;}
._2a{width:5.508612px;}
._4{width:12.583209px;}
._8{width:13.905000px;}
._7{width:15.377879px;}
._3{width:17.068630px;}
._55{width:18.123047px;}
._e{width:19.132812px;}
._14{width:20.467883px;}
._b{width:22.075200px;}
._5{width:24.022527px;}
._6{width:25.401326px;}
._12{width:26.438400px;}
._a{width:28.015200px;}
._9{width:29.313037px;}
._40{width:30.381327px;}
._11{width:31.816800px;}
._17{width:33.307812px;}
._13{width:35.835012px;}
._10{width:37.341612px;}
._f{width:38.464200px;}
._16{width:40.727412px;}
._48{width:45.963053px;}
._42{width:181.425600px;}
._2b{width:212.094949px;}
._43{width:234.845492px;}
._44{width:255.798402px;}
._4e{width:265.363511px;}
._4f{width:269.343833px;}
._3e{width:275.153043px;}
._51{width:282.625267px;}
._45{width:290.578768px;}
._46{width:301.514203px;}
._47{width:315.072862px;}
._32{width:322.642410px;}
._34{width:327.914021px;}
._38{width:332.381445px;}
._30{width:335.242253px;}
._31{width:403.246587px;}
._2e{width:420.585143px;}
._3f{width:432.700191px;}
._39{width:452.063149px;}
._35{width:454.103124px;}
._57{width:462.180250px;}
._54{width:464.096322px;}
._33{width:470.360520px;}
._2f{width:475.410057px;}
._2c{width:477.022837px;}
._3d{width:482.971246px;}
._37{width:501.982525px;}
._3b{width:504.560093px;}
._5b{width:527.369131px;}
._3c{width:529.812577px;}
._2d{width:530.849364px;}
._36{width:589.586230px;}
._19{width:648.855889px;}
._1a{width:662.175723px;}
._1c{width:674.549968px;}
._26{width:686.794615px;}
._52{width:719.213091px;}
._53{width:723.667754px;}
._5a{width:782.468132px;}
._59{width:786.940563px;}
._24{width:789.162242px;}
._23{width:793.434925px;}
._21{width:806.341964px;}
._22{width:874.365498px;}
._50{width:889.227285px;}
._27{width:928.581993px;}
._4d{width:939.971078px;}
._1f{width:942.583418px;}
._1d{width:946.528968px;}
._58{width:952.500094px;}
._28{width:975.439007px;}
._56{width:986.909691px;}
._29{width:1000.715491px;}
._1b{width:1001.963475px;}
._18{width:1006.642244px;}
._25{width:1026.006375px;}
._20{width:1029.947126px;}
._1e{width:1042.532568px;}
._d{width:1404.144476px;}
._3a{width:1770.467469px;}
.fc3{color:rgb(0,174,239);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(128,130,133);}
.fc0{color:rgb(55,192,197);}
.fs4{font-size:31.995000px;}
.fs9{font-size:33.598800px;}
.fsa{font-size:35.998800px;}
.fs8{font-size:37.800000px;}
.fs7{font-size:41.999400px;}
.fs2{font-size:43.996200px;}
.fs3{font-size:47.999400px;}
.fsb{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000600px;}
.fs1{font-size:66.000600px;}
.fs0{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y198{bottom:36.225900px;}
.yb1{bottom:36.226472px;}
.y77{bottom:36.226800px;}
.ye6{bottom:36.226829px;}
.y208{bottom:36.227321px;}
.y3c{bottom:36.227550px;}
.y1d0{bottom:36.231086px;}
.y114{bottom:83.848538px;}
.y150{bottom:83.852749px;}
.y1c9{bottom:84.272868px;}
.y3a{bottom:84.273918px;}
.y76{bottom:84.281250px;}
.y121{bottom:86.758050px;}
.y197{bottom:93.967979px;}
.yb0{bottom:93.968396px;}
.ye5{bottom:94.052906px;}
.y113{bottom:97.369969px;}
.y14f{bottom:97.374180px;}
.y1c8{bottom:97.709100px;}
.y39{bottom:97.710150px;}
.y75{bottom:100.778250px;}
.y122{bottom:101.062050px;}
.ye4{bottom:108.254729px;}
.y196{bottom:108.255482px;}
.y112{bottom:110.891400px;}
.y14e{bottom:110.895611px;}
.y1c7{bottom:111.230531px;}
.y11f{bottom:115.931100px;}
.y74{bottom:117.275250px;}
.y3b{bottom:120.245700px;}
.ye3{bottom:122.543508px;}
.yaf{bottom:123.646425px;}
.y14d{bottom:124.417042px;}
.y1c6{bottom:124.751962px;}
.y157{bottom:127.023300px;}
.y125{bottom:127.023450px;}
.y120{bottom:131.390400px;}
.y73{bottom:133.772250px;}
.y11e{bottom:135.667500px;}
.y195{bottom:137.849512px;}
.y14c{bottom:137.853274px;}
.y1c5{bottom:138.273393px;}
.yae{bottom:138.613838px;}
.y124{bottom:141.949050px;}
.y156{bottom:142.998900px;}
.y72{bottom:150.269250px;}
.y1c4{bottom:151.709625px;}
.ye2{bottom:152.137538px;}
.y194{bottom:152.900924px;}
.yad{bottom:153.581250px;}
.y123{bottom:154.904250px;}
.y11d{bottom:155.864700px;}
.y158{bottom:161.194500px;}
.y1c3{bottom:165.231056px;}
.y71{bottom:166.766250px;}
.ye1{bottom:167.188950px;}
.y193{bottom:167.868337px;}
.yac{bottom:168.632662px;}
.y126{bottom:169.699050px;}
.y11c{bottom:175.979100px;}
.y1c2{bottom:178.752487px;}
.ye0{bottom:182.156363px;}
.y192{bottom:182.834775px;}
.y70{bottom:183.263250px;}
.yab{bottom:183.600075px;}
.y1c1{bottom:192.273918px;}
.y11b{bottom:196.092450px;}
.y155{bottom:196.094850px;}
.ydf{bottom:197.122576px;}
.y191{bottom:197.886187px;}
.yaa{bottom:198.651487px;}
.y6f{bottom:199.760250px;}
.y1c0{bottom:205.710150px;}
.yde{bottom:212.173988px;}
.y190{bottom:212.853600px;}
.y18e{bottom:212.854800px;}
.ya9{bottom:213.619350px;}
.y11a{bottom:215.915250px;}
.y154{bottom:215.916450px;}
.y6e{bottom:216.257250px;}
.y18f{bottom:218.211000px;}
.y1bf{bottom:219.231450px;}
.ydd{bottom:227.141400px;}
.y18d{bottom:227.906212px;}
.ya8{bottom:228.585563px;}
.y6d{bottom:232.754250px;}
.y119{bottom:235.738050px;}
.ydc{bottom:242.192812px;}
.y18c{bottom:242.872425px;}
.ya7{bottom:243.636975px;}
.y1be{bottom:254.860275px;}
.y118{bottom:255.428850px;}
.y6c{bottom:256.735650px;}
.ydb{bottom:257.159025px;}
.ya6{bottom:258.604388px;}
.y38{bottom:259.707900px;}
.y1bd{bottom:268.381706px;}
.yda{bottom:272.126438px;}
.y18b{bottom:272.891250px;}
.y6b{bottom:273.232650px;}
.ya5{bottom:273.655799px;}
.y37{bottom:274.760400px;}
.y153{bottom:275.119200px;}
.y117{bottom:275.119650px;}
.y1bc{bottom:281.903137px;}
.yd9{bottom:287.181188px;}
.ya4{bottom:288.623212px;}
.y36{bottom:289.727850px;}
.y6a{bottom:289.729650px;}
.y115{bottom:295.315650px;}
.y151{bottom:295.316400px;}
.yd8{bottom:302.147400px;}
.y18a{bottom:302.910150px;}
.ya3{bottom:303.590625px;}
.y69{bottom:306.230850px;}
.y1bb{bottom:308.860800px;}
.y152{bottom:316.363200px;}
.y116{bottom:316.363650px;}
.yd7{bottom:317.198812px;}
.ya2{bottom:318.642037px;}
.y35{bottom:319.746450px;}
.y1ba{bottom:322.382231px;}
.y68{bottom:322.727850px;}
.yd6{bottom:332.165025px;}
.y9f{bottom:333.608962px;}
.ya1{bottom:333.609450px;}
.y34{bottom:334.713900px;}
.y1b9{bottom:335.903662px;}
.ya0{bottom:338.966850px;}
.y67{bottom:339.224850px;}
.yd5{bottom:347.131238px;}
.y9e{bottom:348.660374px;}
.y1b8{bottom:349.339894px;}
.y33{bottom:349.681350px;}
.y66{bottom:355.721850px;}
.y207{bottom:359.886075px;}
.yd2{bottom:362.182537px;}
.yd4{bottom:362.182650px;}
.y100{bottom:362.615100px;}
.y1b7{bottom:362.861325px;}
.y9d{bottom:363.627787px;}
.y32{bottom:364.733850px;}
.yd3{bottom:367.455150px;}
.y170{bottom:368.489550px;}
.y65{bottom:372.218850px;}
.y206{bottom:373.322307px;}
.y1b6{bottom:376.382756px;}
.yd1{bottom:377.149950px;}
.y9c{bottom:378.595200px;}
.yff{bottom:379.112100px;}
.y16f{bottom:384.986550px;}
.y144{bottom:386.095050px;}
.y205{bottom:386.843738px;}
.y64{bottom:388.715850px;}
.y1b5{bottom:389.904187px;}
.yd0{bottom:392.201362px;}
.yfe{bottom:395.609100px;}
.y204{bottom:400.365169px;}
.y16e{bottom:401.483550px;}
.y143{bottom:402.592050px;}
.y1b4{bottom:403.340419px;}
.ycf{bottom:407.168775px;}
.y9b{bottom:408.614100px;}
.yfd{bottom:412.106100px;}
.y63{bottom:412.782300px;}
.y203{bottom:413.883300px;}
.y1b3{bottom:416.861850px;}
.y16d{bottom:417.980550px;}
.y142{bottom:419.089050px;}
.y31{bottom:420.273300px;}
.yce{bottom:422.136188px;}
.y202{bottom:427.319532px;}
.yfc{bottom:428.603100px;}
.y62{bottom:429.279300px;}
.y1b2{bottom:430.383281px;}
.y16c{bottom:434.477550px;}
.y141{bottom:435.586050px;}
.y30{bottom:436.770300px;}
.ycd{bottom:437.187599px;}
.y9a{bottom:438.633000px;}
.y201{bottom:440.840963px;}
.y1b1{bottom:443.904712px;}
.yfb{bottom:445.100100px;}
.y61{bottom:445.776300px;}
.y16b{bottom:450.974550px;}
.y140{bottom:452.083050px;}
.y2f{bottom:453.267300px;}
.y200{bottom:454.362394px;}
.y1b0{bottom:457.340944px;}
.yfa{bottom:461.597100px;}
.y60{bottom:462.273900px;}
.ycc{bottom:467.121225px;}
.y16a{bottom:467.471550px;}
.y1ff{bottom:467.883825px;}
.y13f{bottom:468.580050px;}
.y2e{bottom:469.764300px;}
.yf9{bottom:478.094100px;}
.y1fe{bottom:481.320057px;}
.ycb{bottom:482.172637px;}
.y1af{bottom:484.383806px;}
.y13e{bottom:485.077050px;}
.y2d{bottom:486.261300px;}
.y169{bottom:491.452950px;}
.y99{bottom:492.635850px;}
.yf8{bottom:494.591100px;}
.y1fd{bottom:494.841488px;}
.yca{bottom:497.140050px;}
.y1ae{bottom:497.905237px;}
.y13d{bottom:501.574050px;}
.y2c{bottom:502.758300px;}
.y168{bottom:507.949950px;}
.y1fc{bottom:508.362919px;}
.y98{bottom:509.132850px;}
.y1ad{bottom:511.341469px;}
.y5f{bottom:515.263950px;}
.y13c{bottom:518.071050px;}
.yf7{bottom:518.572500px;}
.y2b{bottom:519.255300px;}
.y1fb{bottom:521.884350px;}
.y167{bottom:524.446950px;}
.y1ac{bottom:524.862900px;}
.yc9{bottom:527.158950px;}
.y5e{bottom:531.760950px;}
.y97{bottom:533.114250px;}
.yf6{bottom:535.069500px;}
.y1fa{bottom:535.320582px;}
.y2a{bottom:535.752300px;}
.y166{bottom:540.943950px;}
.y13b{bottom:542.137500px;}
.y1f9{bottom:548.842013px;}
.y96{bottom:549.611250px;}
.yf5{bottom:551.566500px;}
.y29{bottom:552.249300px;}
.y1ab{bottom:554.546400px;}
.y5d{bottom:555.742350px;}
.y165{bottom:557.440950px;}
.y13a{bottom:558.634500px;}
.y1f8{bottom:562.363444px;}
.y95{bottom:566.108250px;}
.yf4{bottom:568.148550px;}
.y28{bottom:568.746300px;}
.y1aa{bottom:571.043400px;}
.y5c{bottom:572.239350px;}
.y164{bottom:573.937950px;}
.y139{bottom:575.131500px;}
.y1f7{bottom:575.884875px;}
.y94{bottom:582.605250px;}
.yf3{bottom:584.649750px;}
.y27{bottom:585.243300px;}
.y1a9{bottom:587.540400px;}
.y5b{bottom:588.736350px;}
.y1f6{bottom:589.321107px;}
.y163{bottom:590.434950px;}
.y138{bottom:591.628500px;}
.y93{bottom:599.105400px;}
.yf2{bottom:601.146750px;}
.y26{bottom:601.740300px;}
.y1f5{bottom:602.842538px;}
.y1a8{bottom:604.037400px;}
.y5a{bottom:605.233350px;}
.yc8{bottom:606.344850px;}
.y162{bottom:606.931950px;}
.y137{bottom:608.125500px;}
.y92{bottom:615.602400px;}
.y1f4{bottom:616.363969px;}
.yf1{bottom:617.643750px;}
.y25{bottom:618.237300px;}
.y59{bottom:621.730350px;}
.yc7{bottom:622.841850px;}
.y161{bottom:623.428950px;}
.y136{bottom:624.622500px;}
.y1f3{bottom:629.885400px;}
.y91{bottom:632.099400px;}
.yf0{bottom:634.140750px;}
.y24{bottom:634.734300px;}
.y58{bottom:638.227350px;}
.yc6{bottom:639.338850px;}
.y1a7{bottom:639.669300px;}
.y160{bottom:639.925950px;}
.y135{bottom:641.119500px;}
.y1f2{bottom:643.321632px;}
.y90{bottom:648.596400px;}
.y23{bottom:651.231300px;}
.y57{bottom:654.724350px;}
.y1a6{bottom:656.166300px;}
.y15f{bottom:656.422950px;}
.y1f1{bottom:656.843063px;}
.y134{bottom:657.616500px;}
.yef{bottom:658.122150px;}
.yc5{bottom:663.320250px;}
.y8f{bottom:665.093400px;}
.y1f0{bottom:670.364494px;}
.y56{bottom:671.221350px;}
.y1a5{bottom:672.663300px;}
.y15e{bottom:672.919950px;}
.y133{bottom:674.113500px;}
.yee{bottom:674.619150px;}
.yc4{bottom:679.817250px;}
.y8e{bottom:681.592350px;}
.y22{bottom:682.015256px;}
.y1ef{bottom:683.885925px;}
.y55{bottom:687.718350px;}
.y1a4{bottom:689.160300px;}
.y132{bottom:690.610500px;}
.yed{bottom:691.116150px;}
.y21{bottom:695.451488px;}
.yc3{bottom:696.314250px;}
.y15d{bottom:696.901350px;}
.y1ee{bottom:697.322157px;}
.y8d{bottom:698.089350px;}
.y131{bottom:707.107500px;}
.yec{bottom:707.613150px;}
.y1ed{bottom:710.843588px;}
.y54{bottom:711.784800px;}
.yc2{bottom:712.811250px;}
.y1a3{bottom:713.141700px;}
.y15c{bottom:713.398350px;}
.y8c{bottom:714.586350px;}
.y1e{bottom:722.494219px;}
.y20{bottom:722.494350px;}
.yeb{bottom:724.110150px;}
.y1ec{bottom:724.365019px;}
.y1f{bottom:727.766850px;}
.y53{bottom:728.281800px;}
.yc1{bottom:729.308250px;}
.y1a2{bottom:729.638700px;}
.y15b{bottom:729.980400px;}
.y130{bottom:731.088900px;}
.y8b{bottom:731.168400px;}
.y1b{bottom:736.015518px;}
.y1d{bottom:736.015650px;}
.y1eb{bottom:737.886450px;}
.yea{bottom:740.607750px;}
.y1c{bottom:741.288000px;}
.y52{bottom:744.778800px;}
.yc0{bottom:745.805250px;}
.y1a1{bottom:746.135700px;}
.y15a{bottom:746.477400px;}
.y12f{bottom:747.585900px;}
.y8a{bottom:747.666000px;}
.y18{bottom:749.451619px;}
.y1a{bottom:749.451750px;}
.y1ea{bottom:751.319400px;}
.y19{bottom:754.809300px;}
.y51{bottom:761.275800px;}
.ybf{bottom:762.302250px;}
.y1a0{bottom:762.632700px;}
.y15{bottom:762.972919px;}
.y17{bottom:762.973050px;}
.y159{bottom:762.974400px;}
.y12e{bottom:764.082900px;}
.y1e9{bottom:764.840831px;}
.y16{bottom:768.330450px;}
.y12{bottom:776.494219px;}
.y14{bottom:776.494350px;}
.y50{bottom:777.772800px;}
.y1e8{bottom:778.362262px;}
.y19f{bottom:779.129700px;}
.ye9{bottom:779.471400px;}
.y12d{bottom:780.579900px;}
.y13{bottom:781.766850px;}
.ybe{bottom:786.283650px;}
.y89{bottom:787.209900px;}
.yf{bottom:790.015518px;}
.y11{bottom:790.015650px;}
.y1e7{bottom:791.883693px;}
.y4f{bottom:794.269800px;}
.y10{bottom:795.288000px;}
.y19e{bottom:795.626700px;}
.ye8{bottom:795.968400px;}
.y12c{bottom:797.076900px;}
.ybd{bottom:802.780650px;}
.ye{bottom:803.451750px;}
.y88{bottom:803.710050px;}
.y1e6{bottom:805.319925px;}
.yd{bottom:808.809300px;}
.y4e{bottom:810.766800px;}
.y19d{bottom:812.208750px;}
.y12b{bottom:813.573900px;}
.yb{bottom:816.973050px;}
.y1e5{bottom:818.841356px;}
.ybc{bottom:819.277650px;}
.y87{bottom:820.207050px;}
.yc{bottom:822.330450px;}
.y4d{bottom:827.263800px;}
.y19c{bottom:828.707100px;}
.y12a{bottom:830.070900px;}
.y1e4{bottom:832.362787px;}
.ybb{bottom:835.774650px;}
.y86{bottom:836.704050px;}
.y177{bottom:841.038412px;}
.y103{bottom:841.038937px;}
.y110{bottom:843.863400px;}
.y184{bottom:843.864300px;}
.y19b{bottom:845.205450px;}
.y1e3{bottom:845.884218px;}
.y129{bottom:846.567900px;}
.y4c{bottom:851.245200px;}
.yba{bottom:852.271650px;}
.y85{bottom:853.201050px;}
.y176{bottom:854.559843px;}
.y102{bottom:854.560368px;}
.y9{bottom:854.900372px;}
.y111{bottom:858.167400px;}
.y186{bottom:858.168150px;}
.y185{bottom:858.168300px;}
.y1e2{bottom:859.320450px;}
.y19a{bottom:861.703800px;}
.ya{bottom:862.299000px;}
.y128{bottom:863.064900px;}
.y4b{bottom:867.742200px;}
.y175{bottom:867.996075px;}
.y101{bottom:867.996600px;}
.yb9{bottom:868.768650px;}
.y84{bottom:869.698050px;}
.y1e1{bottom:872.841881px;}
.y182{bottom:873.036000px;}
.y10e{bottom:873.036450px;}
.y8{bottom:874.459650px;}
.y6{bottom:874.460223px;}
.y127{bottom:879.561900px;}
.y174{bottom:881.517506px;}
.y7{bottom:881.773050px;}
.y188{bottom:884.130450px;}
.y4a{bottom:884.243250px;}
.yb8{bottom:885.265650px;}
.y83{bottom:886.196400px;}
.y1e0{bottom:886.363312px;}
.y10f{bottom:888.495600px;}
.y183{bottom:888.496500px;}
.y10d{bottom:892.772850px;}
.y181{bottom:892.773600px;}
.y4{bottom:893.933700px;}
.y173{bottom:895.038937px;}
.y1df{bottom:899.884743px;}
.y187{bottom:900.104850px;}
.y49{bottom:900.740250px;}
.y5{bottom:901.247100px;}
.yb7{bottom:901.762650px;}
.y82{bottom:902.693400px;}
.y172{bottom:908.560368px;}
.y10c{bottom:912.970050px;}
.y180{bottom:912.970800px;}
.y1de{bottom:913.320975px;}
.y1cf{bottom:916.894078px;}
.y48{bottom:917.237250px;}
.y189{bottom:918.301650px;}
.yb6{bottom:918.344700px;}
.y81{bottom:919.192500px;}
.y171{bottom:921.996600px;}
.y1dd{bottom:926.842406px;}
.y1ce{bottom:931.096008px;}
.y10b{bottom:933.084450px;}
.y17f{bottom:933.085200px;}
.y47{bottom:933.734250px;}
.yb5{bottom:934.841700px;}
.y80{bottom:935.690850px;}
.y14b{bottom:939.260856px;}
.y1dc{bottom:940.363837px;}
.y3{bottom:942.323940px;}
.yb4{bottom:951.338700px;}
.y7f{bottom:952.189200px;}
.y10a{bottom:953.200200px;}
.y17e{bottom:953.200950px;}
.y1db{bottom:953.885268px;}
.y14a{bottom:954.312268px;}
.y46{bottom:957.715650px;}
.y1cd{bottom:960.775237px;}
.y1da{bottom:967.321500px;}
.y149{bottom:969.279681px;}
.y109{bottom:973.021800px;}
.y17d{bottom:973.022550px;}
.y45{bottom:974.212650px;}
.yb3{bottom:975.320100px;}
.y1cc{bottom:975.741600px;}
.y2{bottom:978.294120px;}
.y1d9{bottom:980.842931px;}
.y148{bottom:984.331093px;}
.y1cb{bottom:990.709013px;}
.y44{bottom:990.709650px;}
.y7e{bottom:991.817100px;}
.y108{bottom:992.843400px;}
.y17c{bottom:992.844150px;}
.y1d8{bottom:994.364362px;}
.y1ca{bottom:1005.760425px;}
.y43{bottom:1007.291700px;}
.y1d7{bottom:1007.885793px;}
.y7d{bottom:1008.314100px;}
.y107{bottom:1012.534200px;}
.y17b{bottom:1012.534950px;}
.y1{bottom:1014.264300px;}
.y147{bottom:1014.264719px;}
.y1d6{bottom:1021.322025px;}
.y42{bottom:1023.788700px;}
.y7c{bottom:1024.811100px;}
.y106{bottom:1032.224550px;}
.y17a{bottom:1032.225300px;}
.y1d5{bottom:1034.843456px;}
.y146{bottom:1035.779250px;}
.y41{bottom:1040.285700px;}
.y7b{bottom:1041.308100px;}
.y1d4{bottom:1048.364887px;}
.y104{bottom:1052.421750px;}
.y178{bottom:1052.422500px;}
.y40{bottom:1056.784050px;}
.y7a{bottom:1057.805100px;}
.y1d3{bottom:1061.886318px;}
.y145{bottom:1065.713250px;}
.y3f{bottom:1073.281650px;}
.y105{bottom:1073.468550px;}
.y179{bottom:1073.469300px;}
.y79{bottom:1074.302100px;}
.y1d2{bottom:1075.322550px;}
.y3e{bottom:1095.392400px;}
.y3d{bottom:1111.889400px;}
.y199{bottom:1134.334574px;}
.yb2{bottom:1134.335145px;}
.y78{bottom:1134.335473px;}
.ye7{bottom:1134.335502px;}
.y209{bottom:1134.335994px;}
.y1d1{bottom:1134.339759px;}
.h6{height:25.787970px;}
.h10{height:34.512000px;}
.h4{height:35.460937px;}
.h9{height:35.999550px;}
.h14{height:36.012750px;}
.h8{height:37.962000px;}
.hf{height:38.674166px;}
.hd{height:38.685717px;}
.h11{height:38.686615px;}
.h12{height:38.686914px;}
.h5{height:38.687516px;}
.he{height:38.688134px;}
.hc{height:38.772000px;}
.h13{height:39.839502px;}
.h7{height:40.500000px;}
.ha{height:43.524000px;}
.hb{height:48.360484px;}
.h3{height:53.196484px;}
.h2{height:96.720484px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:55.276492px;}
.x1{left:246.614100px;}
.x13{left:251.291250px;}
.x29{left:255.628350px;}
.x23{left:260.135700px;}
.x2a{left:267.533401px;}
.x3f{left:275.101744px;}
.x24{left:280.800000px;}
.x18{left:292.705350px;}
.x19{left:297.382650px;}
.x2b{left:307.332150px;}
.x11{left:314.390400px;}
.x12{left:319.067550px;}
.x3d{left:329.357400px;}
.x20{left:350.617200px;}
.x21{left:355.294350px;}
.x2{left:357.930600px;}
.x3{left:374.598300px;}
.x22{left:391.521150px;}
.x3c{left:394.922980px;}
.x2d{left:396.368819px;}
.xa{left:400.365300px;}
.x10{left:405.892800px;}
.xb{left:417.032850px;}
.x32{left:431.489700px;}
.x1e{left:450.793650px;}
.x1f{left:455.470800px;}
.x36{left:468.294000px;}
.x34{left:478.797300px;}
.x33{left:485.061300px;}
.x35{left:491.333700px;}
.xc{left:494.673900px;}
.xd{left:501.051900px;}
.x3a{left:513.534900px;}
.x4{left:523.672350px;}
.x5{left:530.135250px;}
.x39{left:538.896900px;}
.x2c{left:543.741600px;}
.x28{left:545.270275px;}
.x38{left:546.553650px;}
.x3e{left:548.248650px;}
.x16{left:550.374600px;}
.x2e{left:551.649278px;}
.x17{left:555.051750px;}
.x3b{left:585.325800px;}
.x1c{left:605.140050px;}
.x1d{left:609.817200px;}
.xe{left:611.688000px;}
.xf{left:629.546250px;}
.x37{left:631.230450px;}
.x6{left:637.284900px;}
.x27{left:649.360500px;}
.x7{left:653.952600px;}
.x26{left:713.395050px;}
.x30{left:725.384306px;}
.x14{left:739.587300px;}
.x2f{left:740.776514px;}
.x15{left:744.264300px;}
.x31{left:748.344819px;}
.x1a{left:783.382350px;}
.x1b{left:788.059500px;}
.x8{left:798.944700px;}
.x9{left:815.527350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-3.413333pt;}
.ls11{letter-spacing:-1.002654pt;}
.lse{letter-spacing:-0.878922pt;}
.ls10{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:-0.002987pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.003200pt;}
.ls0{letter-spacing:0.003911pt;}
.lsb{letter-spacing:0.004800pt;}
.ls16{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.009600pt;}
.ls18{letter-spacing:0.012216pt;}
.ls15{letter-spacing:0.012800pt;}
.ls17{letter-spacing:0.072532pt;}
.ls6{letter-spacing:0.105067pt;}
.ls5{letter-spacing:0.106133pt;}
.ls3{letter-spacing:0.107200pt;}
.lsa{letter-spacing:0.108267pt;}
.ls7{letter-spacing:0.121973pt;}
.lsc{letter-spacing:0.187200pt;}
.lsf{letter-spacing:0.187731pt;}
.ls14{letter-spacing:79.956334pt;}
.lsd{letter-spacing:135.782400pt;}
.ls12{letter-spacing:297.049600pt;}
.ws12f{word-spacing:-307.673600pt;}
.ws105{word-spacing:-138.274133pt;}
.ws104{word-spacing:-10.624000pt;}
.ws130{word-spacing:-7.210667pt;}
.ws41{word-spacing:-0.053334pt;}
.ws29{word-spacing:-0.048000pt;}
.ws8{word-spacing:-0.043019pt;}
.wsd{word-spacing:-0.042666pt;}
.ws4{word-spacing:-0.039108pt;}
.ws4f{word-spacing:-0.037333pt;}
.wsb5{word-spacing:-0.035199pt;}
.wsab{word-spacing:-0.028440pt;}
.ws40{word-spacing:0.000000pt;}
.ws157{word-spacing:10.333737pt;}
.ws80{word-spacing:10.534268pt;}
.ws12c{word-spacing:10.615334pt;}
.wsd3{word-spacing:10.636667pt;}
.ws126{word-spacing:10.739066pt;}
.ws1db{word-spacing:11.413191pt;}
.wsb6{word-spacing:11.635055pt;}
.ws18a{word-spacing:11.699054pt;}
.ws116{word-spacing:11.707200pt;}
.ws112{word-spacing:11.731200pt;}
.wse9{word-spacing:11.784386pt;}
.ws1c6{word-spacing:11.827052pt;}
.wsa7{word-spacing:11.882518pt;}
.ws1df{word-spacing:12.001983pt;}
.ws124{word-spacing:12.014400pt;}
.ws11c{word-spacing:12.024000pt;}
.ws149{word-spacing:12.027583pt;}
.ws2a{word-spacing:12.033600pt;}
.wsbb{word-spacing:12.038400pt;}
.wsc9{word-spacing:12.072000pt;}
.ws19c{word-spacing:12.253713pt;}
.ws1d8{word-spacing:12.292113pt;}
.ws1c3{word-spacing:12.296380pt;}
.ws1bb{word-spacing:12.304913pt;}
.ws17c{word-spacing:12.313446pt;}
.ws17e{word-spacing:12.317713pt;}
.ws1b{word-spacing:12.321979pt;}
.ws177{word-spacing:12.326246pt;}
.ws182{word-spacing:12.343312pt;}
.ws1de{word-spacing:12.368912pt;}
.ws12e{word-spacing:12.390245pt;}
.ws14c{word-spacing:12.403045pt;}
.ws18c{word-spacing:12.407312pt;}
.wsb2{word-spacing:12.411578pt;}
.ws17d{word-spacing:12.420111pt;}
.ws3b{word-spacing:12.424378pt;}
.ws195{word-spacing:12.428645pt;}
.wsb4{word-spacing:12.437178pt;}
.wsdb{word-spacing:12.441444pt;}
.ws199{word-spacing:12.445711pt;}
.ws1d1{word-spacing:12.449978pt;}
.wsb1{word-spacing:12.467044pt;}
.ws1a6{word-spacing:12.471311pt;}
.ws3d{word-spacing:12.484111pt;}
.ws18b{word-spacing:12.492644pt;}
.ws109{word-spacing:12.496910pt;}
.wsd2{word-spacing:12.501177pt;}
.ws127{word-spacing:12.509710pt;}
.ws152{word-spacing:12.518244pt;}
.ws1a{word-spacing:12.522510pt;}
.ws16b{word-spacing:12.535310pt;}
.wse8{word-spacing:12.539577pt;}
.wse1{word-spacing:12.543843pt;}
.wsaa{word-spacing:12.548110pt;}
.ws154{word-spacing:12.565176pt;}
.ws1c4{word-spacing:12.595043pt;}
.wsdc{word-spacing:12.598185pt;}
.ws3c{word-spacing:12.599309pt;}
.ws1dc{word-spacing:12.603576pt;}
.wsa8{word-spacing:12.616376pt;}
.ws1d{word-spacing:12.624909pt;}
.wsae{word-spacing:12.633442pt;}
.ws14f{word-spacing:12.637709pt;}
.ws1bf{word-spacing:12.641975pt;}
.ws1be{word-spacing:12.646242pt;}
.wsb0{word-spacing:12.671842pt;}
.ws14d{word-spacing:12.710241pt;}
.ws103{word-spacing:12.714508pt;}
.ws1bc{word-spacing:12.723041pt;}
.wsac{word-spacing:12.731574pt;}
.ws1a1{word-spacing:12.735841pt;}
.ws1b1{word-spacing:12.740107pt;}
.ws1d7{word-spacing:12.748641pt;}
.wse4{word-spacing:12.765707pt;}
.ws1ea{word-spacing:12.769974pt;}
.wsb3{word-spacing:12.825440pt;}
.wsd4{word-spacing:12.838240pt;}
.wsaf{word-spacing:12.900585pt;}
.wsa9{word-spacing:12.919305pt;}
.ws1c5{word-spacing:12.944905pt;}
.ws19a{word-spacing:12.957705pt;}
.ws1c2{word-spacing:12.966238pt;}
.wsdd{word-spacing:12.970505pt;}
.ws3a{word-spacing:13.072903pt;}
.ws32{word-spacing:13.104000pt;}
.ws13{word-spacing:13.141169pt;}
.ws19b{word-spacing:13.153969pt;}
.ws184{word-spacing:13.162502pt;}
.ws39{word-spacing:13.209600pt;}
.ws183{word-spacing:13.247834pt;}
.ws2c{word-spacing:13.262400pt;}
.wseb{word-spacing:13.267200pt;}
.wse7{word-spacing:13.307567pt;}
.ws1c0{word-spacing:13.324633pt;}
.ws86{word-spacing:13.353600pt;}
.ws1b0{word-spacing:13.405699pt;}
.wsd1{word-spacing:13.416000pt;}
.ws119{word-spacing:13.430400pt;}
.wse5{word-spacing:13.448365pt;}
.ws19d{word-spacing:13.456898pt;}
.wse6{word-spacing:13.464800pt;}
.ws1e6{word-spacing:13.499565pt;}
.wsbc{word-spacing:13.516800pt;}
.ws43{word-spacing:13.617600pt;}
.ws190{word-spacing:13.648896pt;}
.ws1e5{word-spacing:13.670229pt;}
.ws178{word-spacing:13.678762pt;}
.ws1e7{word-spacing:13.734228pt;}
.ws75{word-spacing:13.747200pt;}
.ws1c1{word-spacing:13.759828pt;}
.ws191{word-spacing:13.845160pt;}
.wscb{word-spacing:14.011200pt;}
.ws12d{word-spacing:14.054224pt;}
.ws65{word-spacing:14.088000pt;}
.ws48{word-spacing:14.097600pt;}
.ws25{word-spacing:14.112000pt;}
.ws73{word-spacing:14.116800pt;}
.wsf1{word-spacing:14.126400pt;}
.wsa3{word-spacing:14.136000pt;}
.ws141{word-spacing:14.164800pt;}
.ws3f{word-spacing:14.179200pt;}
.ws21{word-spacing:14.198400pt;}
.ws69{word-spacing:14.203200pt;}
.ws52{word-spacing:14.217600pt;}
.ws3e{word-spacing:14.227200pt;}
.ws24{word-spacing:14.236800pt;}
.ws168{word-spacing:14.259022pt;}
.ws125{word-spacing:14.265600pt;}
.ws23{word-spacing:14.275200pt;}
.ws194{word-spacing:14.280355pt;}
.ws7e{word-spacing:14.284800pt;}
.ws59{word-spacing:14.294400pt;}
.wsa5{word-spacing:14.299200pt;}
.ws5f{word-spacing:14.380800pt;}
.ws72{word-spacing:14.390400pt;}
.ws87{word-spacing:14.395200pt;}
.ws17f{word-spacing:14.399820pt;}
.ws181{word-spacing:14.404087pt;}
.ws61{word-spacing:14.419200pt;}
.ws167{word-spacing:14.433600pt;}
.ws81{word-spacing:14.438400pt;}
.ws82{word-spacing:14.448000pt;}
.ws95{word-spacing:14.452800pt;}
.ws180{word-spacing:14.459553pt;}
.wsc4{word-spacing:14.476800pt;}
.ws108{word-spacing:14.506485pt;}
.ws63{word-spacing:14.510400pt;}
.ws74{word-spacing:14.544000pt;}
.ws1dd{word-spacing:14.561951pt;}
.ws139{word-spacing:14.592000pt;}
.ws51{word-spacing:14.654400pt;}
.ws16c{word-spacing:14.655817pt;}
.ws84{word-spacing:14.683200pt;}
.ws189{word-spacing:14.715549pt;}
.wsa1{word-spacing:14.726400pt;}
.ws188{word-spacing:14.732616pt;}
.ws173{word-spacing:14.779549pt;}
.ws36{word-spacing:14.812800pt;}
.ws1a5{word-spacing:14.822215pt;}
.ws37{word-spacing:14.865600pt;}
.ws1a3{word-spacing:14.873414pt;}
.ws38{word-spacing:14.875200pt;}
.ws1ba{word-spacing:14.958746pt;}
.ws1a4{word-spacing:14.967280pt;}
.ws161{word-spacing:14.985600pt;}
.ws111{word-spacing:14.995200pt;}
.ws192{word-spacing:15.005679pt;}
.ws15d{word-spacing:15.024000pt;}
.ws8c{word-spacing:15.052800pt;}
.ws193{word-spacing:15.061145pt;}
.wscc{word-spacing:15.110400pt;}
.wsff{word-spacing:15.120000pt;}
.ws1b8{word-spacing:15.133677pt;}
.ws1e4{word-spacing:15.142211pt;}
.wsbd{word-spacing:15.144000pt;}
.ws134{word-spacing:15.148800pt;}
.ws1e3{word-spacing:15.189143pt;}
.ws53{word-spacing:15.201600pt;}
.ws10f{word-spacing:15.264000pt;}
.ws1b9{word-spacing:15.270209pt;}
.wsc3{word-spacing:15.326400pt;}
.ws16d{word-spacing:15.347008pt;}
.ws138{word-spacing:15.360000pt;}
.ws45{word-spacing:15.388800pt;}
.ws133{word-spacing:15.417600pt;}
.ws121{word-spacing:15.427200pt;}
.wsba{word-spacing:15.460800pt;}
.ws1d4{word-spacing:15.492073pt;}
.ws13f{word-spacing:15.580800pt;}
.wsc0{word-spacing:15.628800pt;}
.ws1d6{word-spacing:15.679804pt;}
.ws55{word-spacing:15.681600pt;}
.ws26{word-spacing:15.720000pt;}
.ws42{word-spacing:15.724800pt;}
.ws118{word-spacing:15.734400pt;}
.ws27{word-spacing:15.753600pt;}
.ws6d{word-spacing:15.806400pt;}
.wsfe{word-spacing:15.883200pt;}
.ws77{word-spacing:15.892800pt;}
.wsf5{word-spacing:15.940800pt;}
.ws1d2{word-spacing:15.944334pt;}
.ws66{word-spacing:16.000160pt;}
.ws6e{word-spacing:16.036800pt;}
.ws54{word-spacing:16.132800pt;}
.ws1aa{word-spacing:16.157665pt;}
.ws1da{word-spacing:16.170465pt;}
.ws1d3{word-spacing:16.178998pt;}
.ws143{word-spacing:16.195200pt;}
.ws16e{word-spacing:16.208864pt;}
.wsc5{word-spacing:16.233600pt;}
.ws159{word-spacing:16.251530pt;}
.ws99{word-spacing:16.267200pt;}
.ws135{word-spacing:16.286400pt;}
.ws1e9{word-spacing:16.289930pt;}
.ws5c{word-spacing:16.339200pt;}
.ws136{word-spacing:16.358400pt;}
.ws1a8{word-spacing:16.375262pt;}
.ws1d5{word-spacing:16.379529pt;}
.wsc7{word-spacing:16.382400pt;}
.ws1d9{word-spacing:16.388062pt;}
.ws1a7{word-spacing:16.392328pt;}
.ws10{word-spacing:16.400862pt;}
.wsc1{word-spacing:16.411200pt;}
.ws1a9{word-spacing:16.481927pt;}
.ws1cb{word-spacing:16.490461pt;}
.wsf9{word-spacing:16.497600pt;}
.wsf{word-spacing:16.554460pt;}
.ws142{word-spacing:16.569600pt;}
.ws1e8{word-spacing:16.575793pt;}
.ws1d0{word-spacing:16.588593pt;}
.ws90{word-spacing:16.588800pt;}
.ws9a{word-spacing:16.590933pt;}
.ws171{word-spacing:16.592859pt;}
.ws15f{word-spacing:16.742400pt;}
.ws1cc{word-spacing:16.780590pt;}
.ws97{word-spacing:16.872000pt;}
.ws1cd{word-spacing:16.908589pt;}
.wsb7{word-spacing:16.944000pt;}
.ws13e{word-spacing:16.963200pt;}
.wsf6{word-spacing:17.001600pt;}
.ws158{word-spacing:17.096320pt;}
.ws162{word-spacing:17.140800pt;}
.ws5{word-spacing:17.342024pt;}
.ws1ce{word-spacing:17.356583pt;}
.ws144{word-spacing:17.404800pt;}
.ws13b{word-spacing:17.443200pt;}
.ws175{word-spacing:17.454715pt;}
.ws7{word-spacing:17.465225pt;}
.ws1cf{word-spacing:17.480315pt;}
.ws13a{word-spacing:17.496000pt;}
.wsb{word-spacing:17.512159pt;}
.ws3{word-spacing:17.529759pt;}
.wsf3{word-spacing:17.544000pt;}
.wsa{word-spacing:17.564960pt;}
.ws9{word-spacing:17.617760pt;}
.ws6{word-spacing:17.647094pt;}
.ws5d{word-spacing:17.683200pt;}
.ws1ae{word-spacing:17.693645pt;}
.ws8d{word-spacing:17.745600pt;}
.ws113{word-spacing:17.760000pt;}
.ws1af{word-spacing:17.796044pt;}
.wsc{word-spacing:17.846562pt;}
.ws179{word-spacing:17.902710pt;}
.wscd{word-spacing:17.923200pt;}
.ws31{word-spacing:17.956800pt;}
.ws17a{word-spacing:17.992308pt;}
.ws1a0{word-spacing:18.000842pt;}
.ws17b{word-spacing:18.005108pt;}
.ws7a{word-spacing:18.009600pt;}
.ws19e{word-spacing:18.150173pt;}
.ws6c{word-spacing:18.158400pt;}
.wsbf{word-spacing:18.225600pt;}
.ws71{word-spacing:18.292800pt;}
.ws19f{word-spacing:18.295238pt;}
.ws137{word-spacing:18.312000pt;}
.ws174{word-spacing:18.359237pt;}
.ws96{word-spacing:18.374400pt;}
.ws10a{word-spacing:18.384000pt;}
.ws13d{word-spacing:18.403200pt;}
.ws93{word-spacing:18.466094pt;}
.ws5e{word-spacing:18.508800pt;}
.ws68{word-spacing:18.513600pt;}
.ws10e{word-spacing:18.652800pt;}
.ws47{word-spacing:18.681600pt;}
.wsf0{word-spacing:18.705600pt;}
.ws1b5{word-spacing:18.845631pt;}
.ws78{word-spacing:18.873600pt;}
.ws94{word-spacing:18.907200pt;}
.ws1b7{word-spacing:18.909630pt;}
.ws11b{word-spacing:18.926400pt;}
.ws91{word-spacing:18.955200pt;}
.ws11a{word-spacing:18.960000pt;}
.ws11d{word-spacing:18.964800pt;}
.ws92{word-spacing:19.008000pt;}
.wsd0{word-spacing:19.036800pt;}
.wsce{word-spacing:19.051200pt;}
.ws114{word-spacing:19.132800pt;}
.ws1b6{word-spacing:19.199760pt;}
.ws13c{word-spacing:19.224000pt;}
.wscf{word-spacing:19.238883pt;}
.ws10c{word-spacing:19.257600pt;}
.ws15e{word-spacing:19.320000pt;}
.ws1c7{word-spacing:19.353358pt;}
.wsfa{word-spacing:19.454400pt;}
.ws115{word-spacing:19.492800pt;}
.ws98{word-spacing:19.521600pt;}
.ws7b{word-spacing:19.560000pt;}
.ws1ca{word-spacing:19.626421pt;}
.ws1c9{word-spacing:19.780019pt;}
.wse{word-spacing:19.792819pt;}
.ws1c8{word-spacing:19.805619pt;}
.ws7d{word-spacing:19.824000pt;}
.ws1e2{word-spacing:19.865352pt;}
.ws46{word-spacing:19.891200pt;}
.wsb8{word-spacing:19.896000pt;}
.ws1e0{word-spacing:19.908018pt;}
.ws122{word-spacing:19.910400pt;}
.ws120{word-spacing:19.915200pt;}
.ws57{word-spacing:19.953600pt;}
.ws19{word-spacing:20.078682pt;}
.ws14a{word-spacing:20.100015pt;}
.ws1e1{word-spacing:20.108549pt;}
.ws22{word-spacing:20.164800pt;}
.ws14b{word-spacing:20.168281pt;}
.ws1ad{word-spacing:20.176814pt;}
.ws172{word-spacing:20.223747pt;}
.ws11f{word-spacing:20.227200pt;}
.wsca{word-spacing:20.256000pt;}
.wsf2{word-spacing:20.270400pt;}
.ws88{word-spacing:20.304000pt;}
.ws5a{word-spacing:20.332800pt;}
.ws1ab{word-spacing:20.402945pt;}
.ws5b{word-spacing:20.409600pt;}
.ws60{word-spacing:20.428800pt;}
.ws8a{word-spacing:20.476800pt;}
.ws2d{word-spacing:20.496000pt;}
.ws1ac{word-spacing:20.509610pt;}
.ws1c{word-spacing:20.680275pt;}
.wsb9{word-spacing:20.731200pt;}
.ws89{word-spacing:20.750883pt;}
.wsf4{word-spacing:20.769600pt;}
.ws10b{word-spacing:20.880000pt;}
.ws11{word-spacing:20.893605pt;}
.ws6f{word-spacing:20.894400pt;}
.ws85{word-spacing:21.019200pt;}
.ws18{word-spacing:21.102670pt;}
.ws163{word-spacing:21.105600pt;}
.ws160{word-spacing:21.115200pt;}
.ws12{word-spacing:21.303200pt;}
.ws8e{word-spacing:21.336000pt;}
.wsa2{word-spacing:21.355200pt;}
.ws2f{word-spacing:21.374400pt;}
.ws83{word-spacing:21.480000pt;}
.ws15c{word-spacing:21.580800pt;}
.ws165{word-spacing:21.624000pt;}
.wsc6{word-spacing:21.729600pt;}
.wsf7{word-spacing:21.940800pt;}
.wsc2{word-spacing:21.984000pt;}
.ws166{word-spacing:21.988800pt;}
.ws110{word-spacing:22.003200pt;}
.ws70{word-spacing:22.046400pt;}
.ws4a{word-spacing:22.128000pt;}
.ws20{word-spacing:22.156800pt;}
.ws7c{word-spacing:22.243200pt;}
.ws33{word-spacing:22.339200pt;}
.ws35{word-spacing:22.387200pt;}
.ws34{word-spacing:22.435200pt;}
.ws185{word-spacing:22.506385pt;}
.ws1f{word-spacing:22.536000pt;}
.ws1bd{word-spacing:22.706916pt;}
.wsa0{word-spacing:22.804800pt;}
.ws186{word-spacing:22.830648pt;}
.ws101{word-spacing:22.843448pt;}
.ws187{word-spacing:22.928780pt;}
.ws169{word-spacing:23.073845pt;}
.ws16{word-spacing:23.086645pt;}
.ws117{word-spacing:23.102400pt;}
.ws17{word-spacing:23.116511pt;}
.ws140{word-spacing:23.198400pt;}
.ws147{word-spacing:23.222400pt;}
.wsbe{word-spacing:23.275200pt;}
.ws8f{word-spacing:23.289600pt;}
.wsf8{word-spacing:23.313600pt;}
.ws64{word-spacing:23.452800pt;}
.ws145{word-spacing:23.496000pt;}
.ws15{word-spacing:23.598638pt;}
.ws2b{word-spacing:23.625600pt;}
.ws100{word-spacing:23.662638pt;}
.ws14{word-spacing:23.675437pt;}
.wsfb{word-spacing:23.928000pt;}
.ws8b{word-spacing:23.956800pt;}
.ws6a{word-spacing:24.057600pt;}
.ws146{word-spacing:24.081600pt;}
.wsc8{word-spacing:24.129600pt;}
.ws176{word-spacing:24.153298pt;}
.ws9e{word-spacing:24.316800pt;}
.ws9f{word-spacing:24.379150pt;}
.ws62{word-spacing:24.432000pt;}
.wsed{word-spacing:24.576000pt;}
.ws4e{word-spacing:24.638400pt;}
.wsec{word-spacing:24.662400pt;}
.ws11e{word-spacing:24.897600pt;}
.wsfd{word-spacing:24.940800pt;}
.ws28{word-spacing:25.003200pt;}
.ws4d{word-spacing:25.056000pt;}
.ws164{word-spacing:25.108800pt;}
.ws4b{word-spacing:25.132800pt;}
.ws15b{word-spacing:25.310400pt;}
.ws15a{word-spacing:25.416000pt;}
.ws9d{word-spacing:25.425600pt;}
.ws16f{word-spacing:25.544214pt;}
.ws4c{word-spacing:25.569600pt;}
.ws10d{word-spacing:25.612800pt;}
.ws79{word-spacing:25.617600pt;}
.ws50{word-spacing:25.972800pt;}
.wsea{word-spacing:26.428800pt;}
.ws2e{word-spacing:26.520000pt;}
.ws1b4{word-spacing:26.871131pt;}
.ws6b{word-spacing:26.923200pt;}
.ws76{word-spacing:27.004800pt;}
.ws16a{word-spacing:27.028995pt;}
.ws58{word-spacing:27.072000pt;}
.wsef{word-spacing:27.273600pt;}
.ws1b2{word-spacing:27.532456pt;}
.ws148{word-spacing:27.583655pt;}
.ws1b3{word-spacing:27.971917pt;}
.ws132{word-spacing:28.161600pt;}
.wsee{word-spacing:28.291200pt;}
.ws123{word-spacing:28.329600pt;}
.ws131{word-spacing:28.468800pt;}
.ws30{word-spacing:29.193600pt;}
.ws102{word-spacing:29.362833pt;}
.ws196{word-spacing:30.083891pt;}
.ws198{word-spacing:30.186289pt;}
.ws197{word-spacing:30.386820pt;}
.wsa4{word-spacing:30.480000pt;}
.wsfc{word-spacing:30.710400pt;}
.ws0{word-spacing:31.840159pt;}
.ws9c{word-spacing:31.958400pt;}
.ws56{word-spacing:32.140800pt;}
.ws49{word-spacing:32.164800pt;}
.ws107{word-spacing:32.217197pt;}
.ws44{word-spacing:32.222400pt;}
.ws1{word-spacing:32.234828pt;}
.ws2{word-spacing:32.341495pt;}
.ws67{word-spacing:32.827200pt;}
.ws106{word-spacing:33.032120pt;}
.ws170{word-spacing:33.437449pt;}
.ws12a{word-spacing:34.632100pt;}
.ws129{word-spacing:34.849698pt;}
.ws9b{word-spacing:37.204800pt;}
.ws12b{word-spacing:39.440574pt;}
.ws1e{word-spacing:47.836800pt;}
.ws1a2{word-spacing:58.580601pt;}
.ws155{word-spacing:205.902493pt;}
.ws156{word-spacing:217.691145pt;}
.ws14e{word-spacing:229.181135pt;}
.ws151{word-spacing:231.297375pt;}
.ws153{word-spacing:251.397391pt;}
.ws128{word-spacing:268.835040pt;}
.wse2{word-spacing:324.522877pt;}
.wse0{word-spacing:378.504069pt;}
.wsd7{word-spacing:389.806327pt;}
.wsde{word-spacing:401.791244pt;}
.wsd9{word-spacing:414.906814pt;}
.wsdf{word-spacing:425.906143pt;}
.ws18e{word-spacing:467.744553pt;}
.wse3{word-spacing:472.646892pt;}
.ws18d{word-spacing:491.027462pt;}
.ws18f{word-spacing:493.143702pt;}
.wsd6{word-spacing:523.722520pt;}
.wsd5{word-spacing:523.795052pt;}
.wsa6{word-spacing:625.084453pt;}
.ws150{word-spacing:652.096382pt;}
.wsad{word-spacing:856.036233pt;}
.wsda{word-spacing:1604.916472pt;}
.wsd8{word-spacing:1703.645904pt;}
.ws7f{word-spacing:1882.421269pt;}
._41{margin-left:-180.510400pt;}
._4b{margin-left:-164.296533pt;}
._49{margin-left:-161.275733pt;}
._4a{margin-left:-158.233600pt;}
._4c{margin-left:-156.160000pt;}
._c{margin-left:-3.852330pt;}
._0{margin-left:-2.197344pt;}
._2{margin-left:-1.138144pt;}
._1{width:1.744205pt;}
._15{width:3.658144pt;}
._2a{width:4.896544pt;}
._4{width:11.185074pt;}
._8{width:12.360000pt;}
._7{width:13.669225pt;}
._3{width:15.172115pt;}
._55{width:16.109375pt;}
._e{width:17.006944pt;}
._14{width:18.193674pt;}
._b{width:19.622400pt;}
._5{width:21.353358pt;}
._6{width:22.578956pt;}
._12{width:23.500800pt;}
._a{width:24.902400pt;}
._9{width:26.056033pt;}
._40{width:27.005624pt;}
._11{width:28.281600pt;}
._17{width:29.606944pt;}
._13{width:31.853344pt;}
._10{width:33.192544pt;}
._f{width:34.190400pt;}
._16{width:36.202144pt;}
._48{width:40.856047pt;}
._42{width:161.267200pt;}
._2b{width:188.528843pt;}
._43{width:208.751548pt;}
._44{width:227.376358pt;}
._4e{width:235.878676pt;}
._4f{width:239.416741pt;}
._3e{width:244.580483pt;}
._51{width:251.222460pt;}
._45{width:258.292238pt;}
._46{width:268.012625pt;}
._47{width:280.064766pt;}
._32{width:286.793253pt;}
._34{width:291.479129pt;}
._38{width:295.450173pt;}
._30{width:297.993113pt;}
._31{width:358.441411pt;}
._2e{width:373.853460pt;}
._3f{width:384.622392pt;}
._39{width:401.833910pt;}
._35{width:403.647221pt;}
._57{width:410.826889pt;}
._54{width:412.530064pt;}
._33{width:418.098240pt;}
._2f{width:422.586718pt;}
._2c{width:424.020300pt;}
._3d{width:429.307774pt;}
._37{width:446.206689pt;}
._3b{width:448.497860pt;}
._5b{width:468.772561pt;}
._3c{width:470.944513pt;}
._2d{width:471.866102pt;}
._36{width:524.076649pt;}
._19{width:576.760790pt;}
._1a{width:588.600642pt;}
._1c{width:599.599972pt;}
._26{width:610.484102pt;}
._52{width:639.300526pt;}
._53{width:643.260226pt;}
._5a{width:695.527228pt;}
._59{width:699.502723pt;}
._24{width:701.477549pt;}
._23{width:705.275489pt;}
._21{width:716.748412pt;}
._22{width:777.213776pt;}
._50{width:790.424253pt;}
._27{width:825.406216pt;}
._4d{width:835.529847pt;}
._1f{width:837.851927pt;}
._1d{width:841.359083pt;}
._58{width:846.666750pt;}
._28{width:867.056895pt;}
._56{width:877.253059pt;}
._29{width:889.524881pt;}
._1b{width:890.634200pt;}
._18{width:894.793106pt;}
._25{width:912.005666pt;}
._20{width:915.508556pt;}
._1e{width:926.695616pt;}
._d{width:1248.128423pt;}
._3a{width:1573.748861pt;}
.fs4{font-size:28.440000pt;}
.fs9{font-size:29.865600pt;}
.fsa{font-size:31.998933pt;}
.fs8{font-size:33.600000pt;}
.fs7{font-size:37.332800pt;}
.fs2{font-size:39.107733pt;}
.fs3{font-size:42.666133pt;}
.fsb{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333867pt;}
.fs1{font-size:58.667200pt;}
.fs0{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:32.200800pt;}
.yb1{bottom:32.201308pt;}
.y77{bottom:32.201600pt;}
.ye6{bottom:32.201626pt;}
.y208{bottom:32.202063pt;}
.y3c{bottom:32.202267pt;}
.y1d0{bottom:32.205410pt;}
.y114{bottom:74.532034pt;}
.y150{bottom:74.535777pt;}
.y1c9{bottom:74.909216pt;}
.y3a{bottom:74.910149pt;}
.y76{bottom:74.916667pt;}
.y121{bottom:77.118267pt;}
.y197{bottom:83.527092pt;}
.yb0{bottom:83.527463pt;}
.ye5{bottom:83.602583pt;}
.y113{bottom:86.551084pt;}
.y14f{bottom:86.554827pt;}
.y1c8{bottom:86.852533pt;}
.y39{bottom:86.853467pt;}
.y75{bottom:89.580667pt;}
.y122{bottom:89.832933pt;}
.ye4{bottom:96.226425pt;}
.y196{bottom:96.227095pt;}
.y112{bottom:98.570133pt;}
.y14e{bottom:98.573877pt;}
.y1c7{bottom:98.871583pt;}
.y11f{bottom:103.049867pt;}
.y74{bottom:104.244667pt;}
.y3b{bottom:106.885067pt;}
.ye3{bottom:108.927563pt;}
.yaf{bottom:109.907933pt;}
.y14d{bottom:110.592926pt;}
.y1c6{bottom:110.890633pt;}
.y157{bottom:112.909600pt;}
.y125{bottom:112.909733pt;}
.y120{bottom:116.791467pt;}
.y73{bottom:118.908667pt;}
.y11e{bottom:120.593333pt;}
.y195{bottom:122.532900pt;}
.y14c{bottom:122.536244pt;}
.y1c5{bottom:122.909683pt;}
.yae{bottom:123.212300pt;}
.y124{bottom:126.176933pt;}
.y156{bottom:127.110133pt;}
.y72{bottom:133.572667pt;}
.y1c4{bottom:134.853000pt;}
.ye2{bottom:135.233367pt;}
.y194{bottom:135.911933pt;}
.yad{bottom:136.516667pt;}
.y123{bottom:137.692667pt;}
.y11d{bottom:138.546400pt;}
.y158{bottom:143.284000pt;}
.y1c3{bottom:146.872050pt;}
.y71{bottom:148.236667pt;}
.ye1{bottom:148.612400pt;}
.y193{bottom:149.216300pt;}
.yac{bottom:149.895700pt;}
.y126{bottom:150.843600pt;}
.y11c{bottom:156.425867pt;}
.y1c2{bottom:158.891100pt;}
.ye0{bottom:161.916767pt;}
.y192{bottom:162.519800pt;}
.y70{bottom:162.900667pt;}
.yab{bottom:163.200067pt;}
.y1c1{bottom:170.910149pt;}
.y11b{bottom:174.304400pt;}
.y155{bottom:174.306533pt;}
.ydf{bottom:175.220067pt;}
.y191{bottom:175.898833pt;}
.yaa{bottom:176.579100pt;}
.y6f{bottom:177.564667pt;}
.y1c0{bottom:182.853467pt;}
.yde{bottom:188.599100pt;}
.y190{bottom:189.203200pt;}
.y18e{bottom:189.204267pt;}
.ya9{bottom:189.883867pt;}
.y11a{bottom:191.924667pt;}
.y154{bottom:191.925733pt;}
.y6e{bottom:192.228667pt;}
.y18f{bottom:193.965333pt;}
.y1bf{bottom:194.872400pt;}
.ydd{bottom:201.903467pt;}
.y18d{bottom:202.583300pt;}
.ya8{bottom:203.187167pt;}
.y6d{bottom:206.892667pt;}
.y119{bottom:209.544933pt;}
.ydc{bottom:215.282500pt;}
.y18c{bottom:215.886600pt;}
.ya7{bottom:216.566200pt;}
.y1be{bottom:226.542467pt;}
.y118{bottom:227.047867pt;}
.y6c{bottom:228.209467pt;}
.ydb{bottom:228.585800pt;}
.ya6{bottom:229.870567pt;}
.y38{bottom:230.851467pt;}
.y1bd{bottom:238.561516pt;}
.yda{bottom:241.890167pt;}
.y18b{bottom:242.570000pt;}
.y6b{bottom:242.873467pt;}
.ya5{bottom:243.249599pt;}
.y37{bottom:244.231467pt;}
.y153{bottom:244.550400pt;}
.y117{bottom:244.550800pt;}
.y1bc{bottom:250.580566pt;}
.yd9{bottom:255.272167pt;}
.ya4{bottom:256.553967pt;}
.y36{bottom:257.535867pt;}
.y6a{bottom:257.537467pt;}
.y115{bottom:262.502800pt;}
.y151{bottom:262.503467pt;}
.yd8{bottom:268.575467pt;}
.y18a{bottom:269.253467pt;}
.ya3{bottom:269.858334pt;}
.y69{bottom:272.205200pt;}
.y1bb{bottom:274.542933pt;}
.y152{bottom:281.211733pt;}
.y116{bottom:281.212133pt;}
.yd7{bottom:281.954500pt;}
.ya2{bottom:283.237366pt;}
.y35{bottom:284.219067pt;}
.y1ba{bottom:286.561983pt;}
.y68{bottom:286.869200pt;}
.yd6{bottom:295.257800pt;}
.y9f{bottom:296.541300pt;}
.ya1{bottom:296.541733pt;}
.y34{bottom:297.523467pt;}
.y1b9{bottom:298.581033pt;}
.ya0{bottom:301.303867pt;}
.y67{bottom:301.533200pt;}
.yd5{bottom:308.561101pt;}
.y9e{bottom:309.920333pt;}
.y1b8{bottom:310.524350pt;}
.y33{bottom:310.827867pt;}
.y66{bottom:316.197200pt;}
.y207{bottom:319.898733pt;}
.yd2{bottom:321.940033pt;}
.yd4{bottom:321.940133pt;}
.y100{bottom:322.324533pt;}
.y1b7{bottom:322.543400pt;}
.y9d{bottom:323.224700pt;}
.y32{bottom:324.207867pt;}
.yd3{bottom:326.626800pt;}
.y170{bottom:327.546267pt;}
.y65{bottom:330.861200pt;}
.y206{bottom:331.842051pt;}
.y1b6{bottom:334.562450pt;}
.yd1{bottom:335.244400pt;}
.y9c{bottom:336.529067pt;}
.yff{bottom:336.988533pt;}
.y16f{bottom:342.210267pt;}
.y144{bottom:343.195600pt;}
.y205{bottom:343.861100pt;}
.y64{bottom:345.525200pt;}
.y1b5{bottom:346.581500pt;}
.yd0{bottom:348.623433pt;}
.yfe{bottom:351.652533pt;}
.y204{bottom:355.880150pt;}
.y16e{bottom:356.874267pt;}
.y143{bottom:357.859600pt;}
.y1b4{bottom:358.524817pt;}
.ycf{bottom:361.927800pt;}
.y9b{bottom:363.212533pt;}
.yfd{bottom:366.316533pt;}
.y63{bottom:366.917600pt;}
.y203{bottom:367.896267pt;}
.y1b3{bottom:370.543867pt;}
.y16d{bottom:371.538267pt;}
.y142{bottom:372.523600pt;}
.y31{bottom:373.576267pt;}
.yce{bottom:375.232167pt;}
.y202{bottom:379.839584pt;}
.yfc{bottom:380.980533pt;}
.y62{bottom:381.581600pt;}
.y1b2{bottom:382.562916pt;}
.y16c{bottom:386.202267pt;}
.y141{bottom:387.187600pt;}
.y30{bottom:388.240267pt;}
.ycd{bottom:388.611199pt;}
.y9a{bottom:389.896000pt;}
.y201{bottom:391.858634pt;}
.y1b1{bottom:394.581966pt;}
.yfb{bottom:395.644533pt;}
.y61{bottom:396.245600pt;}
.y16b{bottom:400.866267pt;}
.y140{bottom:401.851600pt;}
.y2f{bottom:402.904267pt;}
.y200{bottom:403.877684pt;}
.y1b0{bottom:406.525284pt;}
.yfa{bottom:410.308533pt;}
.y60{bottom:410.910133pt;}
.ycc{bottom:415.218867pt;}
.y16a{bottom:415.530267pt;}
.y1ff{bottom:415.896733pt;}
.y13f{bottom:416.515600pt;}
.y2e{bottom:417.568267pt;}
.yf9{bottom:424.972533pt;}
.y1fe{bottom:427.840051pt;}
.ycb{bottom:428.597900pt;}
.y1af{bottom:430.563383pt;}
.y13e{bottom:431.179600pt;}
.y2d{bottom:432.232267pt;}
.y169{bottom:436.847067pt;}
.y99{bottom:437.898533pt;}
.yf8{bottom:439.636533pt;}
.y1fd{bottom:439.859101pt;}
.yca{bottom:441.902267pt;}
.y1ae{bottom:442.582433pt;}
.y13d{bottom:445.843600pt;}
.y2c{bottom:446.896267pt;}
.y168{bottom:451.511067pt;}
.y1fc{bottom:451.878150pt;}
.y98{bottom:452.562533pt;}
.y1ad{bottom:454.525750pt;}
.y5f{bottom:458.012400pt;}
.y13c{bottom:460.507600pt;}
.yf7{bottom:460.953333pt;}
.y2b{bottom:461.560267pt;}
.y1fb{bottom:463.897200pt;}
.y167{bottom:466.175067pt;}
.y1ac{bottom:466.544800pt;}
.yc9{bottom:468.585733pt;}
.y5e{bottom:472.676400pt;}
.y97{bottom:473.879333pt;}
.yf6{bottom:475.617333pt;}
.y1fa{bottom:475.840517pt;}
.y2a{bottom:476.224267pt;}
.y166{bottom:480.839067pt;}
.y13b{bottom:481.900000pt;}
.y1f9{bottom:487.859567pt;}
.y96{bottom:488.543333pt;}
.yf5{bottom:490.281333pt;}
.y29{bottom:490.888267pt;}
.y1ab{bottom:492.930133pt;}
.y5d{bottom:493.993200pt;}
.y165{bottom:495.503067pt;}
.y13a{bottom:496.564000pt;}
.y1f8{bottom:499.878617pt;}
.y95{bottom:503.207333pt;}
.yf4{bottom:505.020933pt;}
.y28{bottom:505.552267pt;}
.y1aa{bottom:507.594133pt;}
.y5c{bottom:508.657200pt;}
.y164{bottom:510.167067pt;}
.y139{bottom:511.228000pt;}
.y1f7{bottom:511.897667pt;}
.y94{bottom:517.871333pt;}
.yf3{bottom:519.688667pt;}
.y27{bottom:520.216267pt;}
.y1a9{bottom:522.258133pt;}
.y5b{bottom:523.321200pt;}
.y1f6{bottom:523.840984pt;}
.y163{bottom:524.831067pt;}
.y138{bottom:525.892000pt;}
.y93{bottom:532.538133pt;}
.yf2{bottom:534.352667pt;}
.y26{bottom:534.880267pt;}
.y1f5{bottom:535.860034pt;}
.y1a8{bottom:536.922133pt;}
.y5a{bottom:537.985200pt;}
.yc8{bottom:538.973200pt;}
.y162{bottom:539.495067pt;}
.y137{bottom:540.556000pt;}
.y92{bottom:547.202133pt;}
.y1f4{bottom:547.879084pt;}
.yf1{bottom:549.016667pt;}
.y25{bottom:549.544267pt;}
.y59{bottom:552.649200pt;}
.yc7{bottom:553.637200pt;}
.y161{bottom:554.159067pt;}
.y136{bottom:555.220000pt;}
.y1f3{bottom:559.898133pt;}
.y91{bottom:561.866133pt;}
.yf0{bottom:563.680667pt;}
.y24{bottom:564.208267pt;}
.y58{bottom:567.313200pt;}
.yc6{bottom:568.301200pt;}
.y1a7{bottom:568.594933pt;}
.y160{bottom:568.823067pt;}
.y135{bottom:569.884000pt;}
.y1f2{bottom:571.841451pt;}
.y90{bottom:576.530133pt;}
.y23{bottom:578.872267pt;}
.y57{bottom:581.977200pt;}
.y1a6{bottom:583.258933pt;}
.y15f{bottom:583.487067pt;}
.y1f1{bottom:583.860500pt;}
.y134{bottom:584.548000pt;}
.yef{bottom:584.997467pt;}
.yc5{bottom:589.618000pt;}
.y8f{bottom:591.194133pt;}
.y1f0{bottom:595.879550pt;}
.y56{bottom:596.641200pt;}
.y1a5{bottom:597.922933pt;}
.y15e{bottom:598.151067pt;}
.y133{bottom:599.212000pt;}
.yee{bottom:599.661467pt;}
.yc4{bottom:604.282000pt;}
.y8e{bottom:605.859867pt;}
.y22{bottom:606.235783pt;}
.y1ef{bottom:607.898600pt;}
.y55{bottom:611.305200pt;}
.y1a4{bottom:612.586933pt;}
.y132{bottom:613.876000pt;}
.yed{bottom:614.325467pt;}
.y21{bottom:618.179100pt;}
.yc3{bottom:618.946000pt;}
.y15d{bottom:619.467867pt;}
.y1ee{bottom:619.841917pt;}
.y8d{bottom:620.523867pt;}
.y131{bottom:628.540000pt;}
.yec{bottom:628.989467pt;}
.y1ed{bottom:631.860967pt;}
.y54{bottom:632.697600pt;}
.yc2{bottom:633.610000pt;}
.y1a3{bottom:633.903733pt;}
.y15c{bottom:634.131867pt;}
.y8c{bottom:635.187867pt;}
.y1e{bottom:642.217084pt;}
.y20{bottom:642.217200pt;}
.yeb{bottom:643.653467pt;}
.y1ec{bottom:643.880017pt;}
.y1f{bottom:646.903867pt;}
.y53{bottom:647.361600pt;}
.yc1{bottom:648.274000pt;}
.y1a2{bottom:648.567733pt;}
.y15b{bottom:648.871467pt;}
.y130{bottom:649.856800pt;}
.y8b{bottom:649.927467pt;}
.y1b{bottom:654.236016pt;}
.y1d{bottom:654.236133pt;}
.y1eb{bottom:655.899067pt;}
.yea{bottom:658.318000pt;}
.y1c{bottom:658.922667pt;}
.y52{bottom:662.025600pt;}
.yc0{bottom:662.938000pt;}
.y1a1{bottom:663.231733pt;}
.y15a{bottom:663.535467pt;}
.y12f{bottom:664.520800pt;}
.y8a{bottom:664.592000pt;}
.y18{bottom:666.179217pt;}
.y1a{bottom:666.179333pt;}
.y1ea{bottom:667.839467pt;}
.y19{bottom:670.941600pt;}
.y51{bottom:676.689600pt;}
.ybf{bottom:677.602000pt;}
.y1a0{bottom:677.895733pt;}
.y15{bottom:678.198150pt;}
.y17{bottom:678.198267pt;}
.y159{bottom:678.199467pt;}
.y12e{bottom:679.184800pt;}
.y1e9{bottom:679.858517pt;}
.y16{bottom:682.960400pt;}
.y12{bottom:690.217084pt;}
.y14{bottom:690.217200pt;}
.y50{bottom:691.353600pt;}
.y1e8{bottom:691.877566pt;}
.y19f{bottom:692.559733pt;}
.ye9{bottom:692.863467pt;}
.y12d{bottom:693.848800pt;}
.y13{bottom:694.903867pt;}
.ybe{bottom:698.918800pt;}
.y89{bottom:699.742133pt;}
.yf{bottom:702.236016pt;}
.y11{bottom:702.236133pt;}
.y1e7{bottom:703.896616pt;}
.y4f{bottom:706.017600pt;}
.y10{bottom:706.922667pt;}
.y19e{bottom:707.223733pt;}
.ye8{bottom:707.527467pt;}
.y12c{bottom:708.512800pt;}
.ybd{bottom:713.582800pt;}
.ye{bottom:714.179333pt;}
.y88{bottom:714.408933pt;}
.y1e6{bottom:715.839933pt;}
.yd{bottom:718.941600pt;}
.y4e{bottom:720.681600pt;}
.y19d{bottom:721.963333pt;}
.y12b{bottom:723.176800pt;}
.yb{bottom:726.198267pt;}
.y1e5{bottom:727.858983pt;}
.ybc{bottom:728.246800pt;}
.y87{bottom:729.072933pt;}
.yc{bottom:730.960400pt;}
.y4d{bottom:735.345600pt;}
.y19c{bottom:736.628533pt;}
.y12a{bottom:737.840800pt;}
.y1e4{bottom:739.878033pt;}
.ybb{bottom:742.910800pt;}
.y86{bottom:743.736933pt;}
.y177{bottom:747.589700pt;}
.y103{bottom:747.590166pt;}
.y110{bottom:750.100800pt;}
.y184{bottom:750.101600pt;}
.y19b{bottom:751.293733pt;}
.y1e3{bottom:751.897083pt;}
.y129{bottom:752.504800pt;}
.y4c{bottom:756.662400pt;}
.yba{bottom:757.574800pt;}
.y85{bottom:758.400933pt;}
.y176{bottom:759.608749pt;}
.y102{bottom:759.609216pt;}
.y9{bottom:759.911442pt;}
.y111{bottom:762.815467pt;}
.y186{bottom:762.816133pt;}
.y185{bottom:762.816267pt;}
.y1e2{bottom:763.840400pt;}
.y19a{bottom:765.958933pt;}
.ya{bottom:766.488000pt;}
.y128{bottom:767.168800pt;}
.y4b{bottom:771.326400pt;}
.y175{bottom:771.552067pt;}
.y101{bottom:771.552533pt;}
.yb9{bottom:772.238800pt;}
.y84{bottom:773.064933pt;}
.y1e1{bottom:775.859450pt;}
.y182{bottom:776.032000pt;}
.y10e{bottom:776.032400pt;}
.y8{bottom:777.297467pt;}
.y6{bottom:777.297976pt;}
.y127{bottom:781.832800pt;}
.y174{bottom:783.571116pt;}
.y7{bottom:783.798267pt;}
.y188{bottom:785.893733pt;}
.y4a{bottom:785.994000pt;}
.yb8{bottom:786.902800pt;}
.y83{bottom:787.730133pt;}
.y1e0{bottom:787.878500pt;}
.y10f{bottom:789.773867pt;}
.y183{bottom:789.774667pt;}
.y10d{bottom:793.575867pt;}
.y181{bottom:793.576533pt;}
.y4{bottom:794.607733pt;}
.y173{bottom:795.590166pt;}
.y1df{bottom:799.897549pt;}
.y187{bottom:800.093200pt;}
.y49{bottom:800.658000pt;}
.y5{bottom:801.108533pt;}
.yb7{bottom:801.566800pt;}
.y82{bottom:802.394133pt;}
.y172{bottom:807.609216pt;}
.y10c{bottom:811.528933pt;}
.y180{bottom:811.529600pt;}
.y1de{bottom:811.840867pt;}
.y1cf{bottom:815.016958pt;}
.y48{bottom:815.322000pt;}
.y189{bottom:816.268133pt;}
.yb6{bottom:816.306400pt;}
.y81{bottom:817.060000pt;}
.y171{bottom:819.552533pt;}
.y1dd{bottom:823.859916pt;}
.y1ce{bottom:827.640896pt;}
.y10b{bottom:829.408400pt;}
.y17f{bottom:829.409067pt;}
.y47{bottom:829.986000pt;}
.yb5{bottom:830.970400pt;}
.y80{bottom:831.725200pt;}
.y14b{bottom:834.898539pt;}
.y1dc{bottom:835.878966pt;}
.y3{bottom:837.621280pt;}
.yb4{bottom:845.634400pt;}
.y7f{bottom:846.390400pt;}
.y10a{bottom:847.289067pt;}
.y17e{bottom:847.289733pt;}
.y1db{bottom:847.898016pt;}
.y14a{bottom:848.277572pt;}
.y46{bottom:851.302800pt;}
.y1cd{bottom:854.022433pt;}
.y1da{bottom:859.841333pt;}
.y149{bottom:861.581939pt;}
.y109{bottom:864.908267pt;}
.y17d{bottom:864.908933pt;}
.y45{bottom:865.966800pt;}
.yb3{bottom:866.951200pt;}
.y1cc{bottom:867.325867pt;}
.y2{bottom:869.594773pt;}
.y1d9{bottom:871.860383pt;}
.y148{bottom:874.960972pt;}
.y1cb{bottom:880.630234pt;}
.y44{bottom:880.630800pt;}
.y7e{bottom:881.615200pt;}
.y108{bottom:882.527467pt;}
.y17c{bottom:882.528133pt;}
.y1d8{bottom:883.879433pt;}
.y1ca{bottom:894.009267pt;}
.y43{bottom:895.370400pt;}
.y1d7{bottom:895.898483pt;}
.y7d{bottom:896.279200pt;}
.y107{bottom:900.030400pt;}
.y17b{bottom:900.031067pt;}
.y1{bottom:901.568267pt;}
.y147{bottom:901.568639pt;}
.y1d6{bottom:907.841800pt;}
.y42{bottom:910.034400pt;}
.y7c{bottom:910.943200pt;}
.y106{bottom:917.532933pt;}
.y17a{bottom:917.533600pt;}
.y1d5{bottom:919.860850pt;}
.y146{bottom:920.692667pt;}
.y41{bottom:924.698400pt;}
.y7b{bottom:925.607200pt;}
.y1d4{bottom:931.879900pt;}
.y104{bottom:935.486000pt;}
.y178{bottom:935.486667pt;}
.y40{bottom:939.363600pt;}
.y7a{bottom:940.271200pt;}
.y1d3{bottom:943.898949pt;}
.y145{bottom:947.300667pt;}
.y3f{bottom:954.028133pt;}
.y105{bottom:954.194267pt;}
.y179{bottom:954.194933pt;}
.y79{bottom:954.935200pt;}
.y1d2{bottom:955.842267pt;}
.y3e{bottom:973.682133pt;}
.y3d{bottom:988.346133pt;}
.y199{bottom:1008.297399pt;}
.yb2{bottom:1008.297907pt;}
.y78{bottom:1008.298199pt;}
.ye7{bottom:1008.298224pt;}
.y209{bottom:1008.298662pt;}
.y1d1{bottom:1008.302008pt;}
.h6{height:22.922640pt;}
.h10{height:30.677333pt;}
.h4{height:31.520833pt;}
.h9{height:31.999600pt;}
.h14{height:32.011333pt;}
.h8{height:33.744000pt;}
.hf{height:34.377037pt;}
.hd{height:34.387304pt;}
.h11{height:34.388103pt;}
.h12{height:34.388368pt;}
.h5{height:34.388903pt;}
.he{height:34.389452pt;}
.hc{height:34.464000pt;}
.h13{height:35.412891pt;}
.h7{height:36.000000pt;}
.ha{height:38.688000pt;}
.hb{height:42.987097pt;}
.h3{height:47.285763pt;}
.h2{height:85.973763pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:49.134659pt;}
.x1{left:219.212533pt;}
.x13{left:223.370000pt;}
.x29{left:227.225200pt;}
.x23{left:231.231733pt;}
.x2a{left:237.807468pt;}
.x3f{left:244.534883pt;}
.x24{left:249.600000pt;}
.x18{left:260.182533pt;}
.x19{left:264.340133pt;}
.x2b{left:273.184133pt;}
.x11{left:279.458133pt;}
.x12{left:283.615600pt;}
.x3d{left:292.762133pt;}
.x20{left:311.659733pt;}
.x21{left:315.817200pt;}
.x2{left:318.160533pt;}
.x3{left:332.976267pt;}
.x22{left:348.018800pt;}
.x3c{left:351.042649pt;}
.x2d{left:352.327839pt;}
.xa{left:355.880267pt;}
.x10{left:360.793600pt;}
.xb{left:370.695867pt;}
.x32{left:383.546400pt;}
.x1e{left:400.705467pt;}
.x1f{left:404.862933pt;}
.x36{left:416.261333pt;}
.x34{left:425.597600pt;}
.x33{left:431.165600pt;}
.x35{left:436.741067pt;}
.xc{left:439.710133pt;}
.xd{left:445.379467pt;}
.x3a{left:456.475467pt;}
.x4{left:465.486533pt;}
.x5{left:471.231333pt;}
.x39{left:479.019467pt;}
.x2c{left:483.325867pt;}
.x28{left:484.684689pt;}
.x38{left:485.825467pt;}
.x3e{left:487.332133pt;}
.x16{left:489.221867pt;}
.x2e{left:490.354914pt;}
.x17{left:493.379333pt;}
.x3b{left:520.289600pt;}
.x1c{left:537.902267pt;}
.x1d{left:542.059733pt;}
.xe{left:543.722667pt;}
.xf{left:559.596667pt;}
.x37{left:561.093733pt;}
.x6{left:566.475467pt;}
.x27{left:577.209333pt;}
.x7{left:581.291200pt;}
.x26{left:634.128933pt;}
.x30{left:644.786050pt;}
.x14{left:657.410933pt;}
.x2f{left:658.468012pt;}
.x15{left:661.568267pt;}
.x31{left:665.195395pt;}
.x1a{left:696.339867pt;}
.x1b{left:700.497333pt;}
.x8{left:710.173067pt;}
.x9{left:724.913200pt;}
}




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