
    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_96c40d473f8e6d8bf05f0bc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_8f3c9c55157d193104b791eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_04c10e3b9de2dcc69d64880c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d5ddb5f6d95d3de3f886ef2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.868000;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_6f7a0f6b5c247a0f93a4847c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5b9537b8a6c77c9452cbea1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_13a61102d55ade8f2545a1b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c350207d5623b1c64549ffa5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_67245254e35e40e7f02fec80.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6bdd0bf9dbb18b6264b5997d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.636000;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_71d2cb9f3486db6f960fc2d0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897000;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_a5c56dc0cc995be6dcdf3086.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.901000;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_5fef20c971c3c35751135ca0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5cf9e9b49be861666764d59b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_548b1019a41a3b1899b3164f.woff2')format("woff");}.fff{font-family:fff;line-height:0.806000;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:ff10;src:url('chunks/assets/font_0aa2b6f75edaac90614a4af6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910000;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:ff11;src:url('chunks/assets/font_485bcbfb44c404d40377721a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f0eb9db3b17cc4ada393b2ac.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.867000;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);}
.v2{vertical-align:-23.952000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.264000px;}
.v1{vertical-align:26.124000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006792px;}
.ls6{letter-spacing:0.019800px;}
.ls1{letter-spacing:2.982480px;}
.lsf{letter-spacing:2.985600px;}
.ls0{letter-spacing:2.988480px;}
.lsb{letter-spacing:2.991600px;}
.ls5{letter-spacing:3.786000px;}
.ls11{letter-spacing:5.418600px;}
.ls15{letter-spacing:12.402000px;}
.ls1b{letter-spacing:13.332000px;}
.ls3{letter-spacing:17.335595px;}
.ls1d{letter-spacing:19.926000px;}
.ls1c{letter-spacing:20.625600px;}
.ls2{letter-spacing:21.978000px;}
.ls14{letter-spacing:22.954672px;}
.ls13{letter-spacing:25.947600px;}
.ls12{letter-spacing:27.534000px;}
.lse{letter-spacing:29.398672px;}
.lsa{letter-spacing:30.286672px;}
.ls8{letter-spacing:30.953646px;}
.lsc{letter-spacing:31.059600px;}
.ls1a{letter-spacing:31.413600px;}
.ls10{letter-spacing:32.391600px;}
.lsd{letter-spacing:32.856000px;}
.ls19{letter-spacing:34.101600px;}
.ls18{letter-spacing:34.107600px;}
.ls16{letter-spacing:40.806600px;}
.ls9{letter-spacing:43.626000px;}
.ls17{letter-spacing:47.838000px;}
.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;}
}
.ws183{word-spacing:-19.164000px;}
.ws5{word-spacing:-18.334800px;}
.wsdb{word-spacing:-16.606328px;}
.ws1a{word-spacing:-13.344000px;}
.ws18e{word-spacing:-5.868000px;}
.ws18d{word-spacing:-3.335596px;}
.ws18f{word-spacing:-3.330857px;}
.wsd6{word-spacing:-3.216191px;}
.ws4a{word-spacing:-3.036725px;}
.wsb5{word-spacing:-2.730414px;}
.ws43{word-spacing:-2.677970px;}
.ws76{word-spacing:-2.259754px;}
.ws4b{word-spacing:-2.140349px;}
.ws7a{word-spacing:-2.080346px;}
.ws92{word-spacing:-2.061062px;}
.ws79{word-spacing:-2.020344px;}
.wsba{word-spacing:-1.965424px;}
.ws7d{word-spacing:-1.960941px;}
.wsff{word-spacing:-1.900939px;}
.ws90{word-spacing:-1.823648px;}
.ws91{word-spacing:-1.822025px;}
.wsd7{word-spacing:-1.662130px;}
.ws60{word-spacing:-1.661830px;}
.ws9d{word-spacing:-1.602127px;}
.ws12a{word-spacing:-1.602067px;}
.wscd{word-spacing:-1.487229px;}
.ws49{word-spacing:-1.482482px;}
.wsde{word-spacing:-1.422720px;}
.ws107{word-spacing:-1.243373px;}
.ws65{word-spacing:-1.183610px;}
.ws1b2{word-spacing:-1.183310px;}
.wsc1{word-spacing:-1.152433px;}
.ws30{word-spacing:-1.123908px;}
.ws136{word-spacing:-1.063906px;}
.ws2e{word-spacing:-0.944501px;}
.ws111{word-spacing:-0.705691px;}
.ws93{word-spacing:-0.674239px;}
.ws57{word-spacing:-0.645688px;}
.ws23{word-spacing:-0.585806px;}
.wsd1{word-spacing:-0.585686px;}
.ws95{word-spacing:-0.530840px;}
.ws35{word-spacing:-0.526284px;}
.ws10{word-spacing:-0.526044px;}
.ws5d{word-spacing:-0.466282px;}
.wsd2{word-spacing:-0.406879px;}
.ws5c{word-spacing:-0.406519px;}
.ws5e{word-spacing:-0.406279px;}
.ws74{word-spacing:-0.387442px;}
.ws75{word-spacing:-0.346877px;}
.wse2{word-spacing:-0.346697px;}
.wsf6{word-spacing:-0.286875px;}
.ws58{word-spacing:-0.167470px;}
.wsfc{word-spacing:-0.107467px;}
.wsf2{word-spacing:-0.100645px;}
.ws11d{word-spacing:-0.060000px;}
.ws12c{word-spacing:-0.047825px;}
.ws73{word-spacing:-0.047820px;}
.ws3{word-spacing:-0.046200px;}
.wsc{word-spacing:-0.027000px;}
.ws1b{word-spacing:0.000000px;}
.ws6d{word-spacing:0.011938px;}
.wsd3{word-spacing:0.071940px;}
.wsbe{word-spacing:0.090753px;}
.ws71{word-spacing:0.090873px;}
.wsf8{word-spacing:0.131342px;}
.wsfe{word-spacing:0.131522px;}
.ws14a{word-spacing:0.191285px;}
.ws39{word-spacing:0.251047px;}
.ws132{word-spacing:0.251347px;}
.ws102{word-spacing:0.430394px;}
.ws109{word-spacing:0.490157px;}
.ws9e{word-spacing:0.550159px;}
.ws1b7{word-spacing:0.558000px;}
.ws105{word-spacing:0.609562px;}
.ws128{word-spacing:0.609742px;}
.wsfb{word-spacing:0.728966px;}
.ws11{word-spacing:0.729266px;}
.ws135{word-spacing:0.788969px;}
.wse3{word-spacing:0.789569px;}
.ws13{word-spacing:0.848971px;}
.wsa0{word-spacing:0.903803px;}
.wsb1{word-spacing:0.968376px;}
.ws147{word-spacing:1.027778px;}
.ws117{word-spacing:1.028198px;}
.ws148{word-spacing:1.028378px;}
.wsa9{word-spacing:1.047141px;}
.ws52{word-spacing:1.087961px;}
.ws1af{word-spacing:1.147783px;}
.ws5f{word-spacing:1.267188px;}
.ws66{word-spacing:1.386593px;}
.wsc6{word-spacing:1.446595px;}
.ws121{word-spacing:1.506418px;}
.ws78{word-spacing:1.566000px;}
.wsbc{word-spacing:1.573335px;}
.wscf{word-spacing:1.621095px;}
.wsf0{word-spacing:1.625942px;}
.ws1e{word-spacing:1.626002px;}
.wsf4{word-spacing:1.668734px;}
.ws12b{word-spacing:1.685405px;}
.ws18a{word-spacing:1.686004px;}
.ws7f{word-spacing:1.745407px;}
.ws47{word-spacing:1.745527px;}
.wscc{word-spacing:1.764553px;}
.wscb{word-spacing:1.764733px;}
.wsb9{word-spacing:1.812133px;}
.ws1a3{word-spacing:1.865052px;}
.ws12d{word-spacing:1.924874px;}
.ws59{word-spacing:2.044219px;}
.ws5b{word-spacing:2.044399px;}
.ws48{word-spacing:2.104162px;}
.ws5a{word-spacing:2.104221px;}
.ws137{word-spacing:2.163984px;}
.ws80{word-spacing:2.223626px;}
.ws12f{word-spacing:2.283029px;}
.wse9{word-spacing:2.283509px;}
.ws22{word-spacing:2.283628px;}
.wsc8{word-spacing:2.290567px;}
.ws86{word-spacing:2.343031px;}
.ws84{word-spacing:2.343631px;}
.ws123{word-spacing:2.403033px;}
.ws14c{word-spacing:2.403094px;}
.ws6a{word-spacing:2.462856px;}
.ws85{word-spacing:2.463036px;}
.ws3a{word-spacing:2.522439px;}
.ws2f{word-spacing:2.522618px;}
.wsbd{word-spacing:2.577724px;}
.ws3c{word-spacing:2.642443px;}
.wsce{word-spacing:2.673123px;}
.wsfd{word-spacing:2.701845px;}
.ws14b{word-spacing:2.736000px;}
.ws106{word-spacing:2.761728px;}
.ws99{word-spacing:2.816521px;}
.wsaa{word-spacing:2.816581px;}
.ws122{word-spacing:2.881313px;}
.ws110{word-spacing:2.941075px;}
.ws1b4{word-spacing:3.000657px;}
.ws1b3{word-spacing:3.060660px;}
.wsb{word-spacing:3.105000px;}
.ws1b6{word-spacing:3.120662px;}
.ws1b8{word-spacing:3.124903px;}
.wsd0{word-spacing:3.151317px;}
.ws1ae{word-spacing:3.180065px;}
.wsad{word-spacing:3.180185px;}
.ws77{word-spacing:3.240067px;}
.wsf3{word-spacing:3.294715px;}
.ws31{word-spacing:3.299469px;}
.ws3b{word-spacing:3.299770px;}
.ws83{word-spacing:3.300070px;}
.ws18b{word-spacing:3.304243px;}
.ws1b0{word-spacing:3.315515px;}
.ws24{word-spacing:3.359472px;}
.ws63{word-spacing:3.359532px;}
.ws11c{word-spacing:3.363211px;}
.ws20{word-spacing:3.419294px;}
.ws1ad{word-spacing:3.419474px;}
.wsd8{word-spacing:3.478876px;}
.ws70{word-spacing:3.486053px;}
.ws10a{word-spacing:3.538879px;}
.ws129{word-spacing:3.598642px;}
.ws4{word-spacing:3.643200px;}
.ws67{word-spacing:3.718166px;}
.ws17e{word-spacing:3.718286px;}
.wse8{word-spacing:3.777689px;}
.wse5{word-spacing:3.777989px;}
.ws139{word-spacing:3.778289px;}
.wsdd{word-spacing:4.017098px;}
.wsf{word-spacing:4.076861px;}
.ws115{word-spacing:4.136503px;}
.ws2a{word-spacing:4.136623px;}
.ws98{word-spacing:4.155705px;}
.ws119{word-spacing:4.196505px;}
.ws7c{word-spacing:4.197600px;}
.ws8d{word-spacing:4.203105px;}
.wse1{word-spacing:4.256208px;}
.wsab{word-spacing:4.263600px;}
.ws6b{word-spacing:4.315910px;}
.wsaf{word-spacing:4.375913px;}
.ws68{word-spacing:4.435315px;}
.wse7{word-spacing:4.495318px;}
.ws56{word-spacing:4.500000px;}
.wsbb{word-spacing:4.537901px;}
.wsc5{word-spacing:4.555320px;}
.wsc3{word-spacing:4.614722px;}
.ws176{word-spacing:4.632214px;}
.ws16{word-spacing:4.674724px;}
.wsf5{word-spacing:4.729299px;}
.wsa5{word-spacing:4.777298px;}
.ws9a{word-spacing:4.794129px;}
.ws38{word-spacing:4.854131px;}
.ws14e{word-spacing:4.854278px;}
.ws17c{word-spacing:4.873992px;}
.ws55{word-spacing:4.891123px;}
.ws150{word-spacing:4.908343px;}
.ws37{word-spacing:4.913774px;}
.wse0{word-spacing:4.973536px;}
.ws16c{word-spacing:5.033299px;}
.wsec{word-spacing:5.033539px;}
.ws7b{word-spacing:5.092942px;}
.wsd{word-spacing:5.103000px;}
.ws6c{word-spacing:5.152884px;}
.wsdf{word-spacing:5.152944px;}
.wsc0{word-spacing:5.207493px;}
.wsbf{word-spacing:5.208093px;}
.ws9c{word-spacing:5.212346px;}
.ws21{word-spacing:5.272348px;}
.ws81{word-spacing:5.332351px;}
.wseb{word-spacing:5.391753px;}
.ws12{word-spacing:5.391994px;}
.ws4e{word-spacing:5.451755px;}
.wsa3{word-spacing:5.489508px;}
.wsa4{word-spacing:5.494290px;}
.ws1d{word-spacing:5.511758px;}
.wsa6{word-spacing:5.542349px;}
.ws134{word-spacing:5.571160px;}
.ws14{word-spacing:5.631103px;}
.wsae{word-spacing:5.631163px;}
.wsa8{word-spacing:5.637688px;}
.ws8f{word-spacing:5.685688px;}
.ws8e{word-spacing:5.685808px;}
.ws1b1{word-spacing:5.690565px;}
.ws2c{word-spacing:5.690865px;}
.wsda{word-spacing:5.750568px;}
.ws114{word-spacing:5.810570px;}
.ws82{word-spacing:5.869972px;}
.ws10b{word-spacing:5.870212px;}
.ws33{word-spacing:5.929975px;}
.wsfa{word-spacing:5.989377px;}
.wsac{word-spacing:5.989737px;}
.ws6e{word-spacing:5.989977px;}
.ws13e{word-spacing:6.109382px;}
.ws29{word-spacing:6.168784px;}
.ws1c{word-spacing:6.169084px;}
.ws27{word-spacing:6.228787px;}
.ws26{word-spacing:6.228847px;}
.ws28{word-spacing:6.229387px;}
.ws133{word-spacing:6.288669px;}
.ws116{word-spacing:6.288789px;}
.ws4f{word-spacing:6.348792px;}
.wsa2{word-spacing:6.355280px;}
.wsa1{word-spacing:6.403099px;}
.ws12e{word-spacing:6.408194px;}
.ws130{word-spacing:6.467956px;}
.ws131{word-spacing:6.468197px;}
.wsb7{word-spacing:6.498678px;}
.wsb6{word-spacing:6.498738px;}
.ws17{word-spacing:6.527599px;}
.ws100{word-spacing:6.587541px;}
.ws141{word-spacing:6.587601px;}
.ws42{word-spacing:6.647003px;}
.ws41{word-spacing:6.647303px;}
.wsf9{word-spacing:6.707006px;}
.ws108{word-spacing:6.707066px;}
.ws4d{word-spacing:6.766888px;}
.ws9b{word-spacing:6.767008px;}
.ws54{word-spacing:6.826411px;}
.ws7{word-spacing:6.885000px;}
.ws69{word-spacing:6.886413px;}
.wsca{word-spacing:6.976872px;}
.wsc9{word-spacing:6.976933px;}
.ws113{word-spacing:7.005818px;}
.ws112{word-spacing:7.065760px;}
.ws87{word-spacing:7.065821px;}
.ws16e{word-spacing:7.125223px;}
.wsee{word-spacing:7.185345px;}
.wsea{word-spacing:7.245107px;}
.ws40{word-spacing:7.245228px;}
.ws94{word-spacing:7.311668px;}
.ws3f{word-spacing:7.364632px;}
.wsef{word-spacing:7.424035px;}
.wsd5{word-spacing:7.424634px;}
.ws10e{word-spacing:7.484037px;}
.ws9{word-spacing:7.533000px;}
.ws18{word-spacing:7.543979px;}
.wsc2{word-spacing:7.663445px;}
.ws101{word-spacing:7.723447px;}
.ws8b{word-spacing:7.783089px;}
.ws72{word-spacing:7.789863px;}
.ws7e{word-spacing:7.902854px;}
.ws89{word-spacing:7.962256px;}
.ws96{word-spacing:7.981141px;}
.ws97{word-spacing:7.981261px;}
.ws2b{word-spacing:8.141663px;}
.ws51{word-spacing:8.201546px;}
.ws19{word-spacing:8.201666px;}
.ws1cb{word-spacing:8.261308px;}
.wsa{word-spacing:8.289000px;}
.wse4{word-spacing:8.321071px;}
.ws50{word-spacing:8.380893px;}
.wsb2{word-spacing:8.381073px;}
.ws46{word-spacing:8.440475px;}
.ws45{word-spacing:8.440655px;}
.ws11e{word-spacing:8.500478px;}
.ws44{word-spacing:8.560480px;}
.wsd9{word-spacing:8.619882px;}
.ws88{word-spacing:8.620003px;}
.wse6{word-spacing:8.679765px;}
.ws174{word-spacing:8.978697px;}
.ws53{word-spacing:9.038459px;}
.ws11a{word-spacing:9.098102px;}
.wsed{word-spacing:9.158104px;}
.wsb0{word-spacing:9.217506px;}
.ws169{word-spacing:9.217747px;}
.ws25{word-spacing:9.337511px;}
.ws8a{word-spacing:9.456856px;}
.wsa7{word-spacing:9.463603px;}
.ws8{word-spacing:9.477000px;}
.ws15{word-spacing:9.516919px;}
.ws10f{word-spacing:9.636203px;}
.ws10c{word-spacing:9.695726px;}
.wsdc{word-spacing:9.695966px;}
.ws13f{word-spacing:9.755728px;}
.ws171{word-spacing:9.815551px;}
.ws140{word-spacing:9.815731px;}
.ws17d{word-spacing:9.875133px;}
.ws16d{word-spacing:9.875313px;}
.ws1ba{word-spacing:9.935135px;}
.ws19c{word-spacing:9.942000px;}
.ws3e{word-spacing:9.995137px;}
.wsb8{word-spacing:10.037437px;}
.ws198{word-spacing:10.054540px;}
.ws18c{word-spacing:10.114542px;}
.ws64{word-spacing:10.173945px;}
.ws11f{word-spacing:10.234007px;}
.ws1b9{word-spacing:10.293350px;}
.wsb3{word-spacing:10.293770px;}
.ws197{word-spacing:10.293950px;}
.wsc4{word-spacing:10.353352px;}
.ws1b5{word-spacing:10.413355px;}
.wsd4{word-spacing:10.652164px;}
.ws167{word-spacing:10.772169px;}
.ws3d{word-spacing:10.831751px;}
.ws13d{word-spacing:10.891574px;}
.ws61{word-spacing:11.019360px;}
.ws62{word-spacing:11.070981px;}
.ws2d{word-spacing:11.130683px;}
.ws10d{word-spacing:11.190446px;}
.ws32{word-spacing:11.369793px;}
.ws13b{word-spacing:11.417358px;}
.ws13c{word-spacing:11.429195px;}
.ws13a{word-spacing:11.429795px;}
.ws142{word-spacing:11.609203px;}
.ws170{word-spacing:11.668605px;}
.ws146{word-spacing:11.788009px;}
.ws145{word-spacing:11.848012px;}
.ws159{word-spacing:11.967417px;}
.ws160{word-spacing:12.027419px;}
.ws175{word-spacing:12.087422px;}
.ws1a2{word-spacing:12.146884px;}
.ws120{word-spacing:12.206646px;}
.wsf7{word-spacing:12.206827px;}
.ws36{word-spacing:12.266469px;}
.ws34{word-spacing:12.326231px;}
.ws165{word-spacing:12.505638px;}
.ws19d{word-spacing:12.509683px;}
.ws16b{word-spacing:12.744448px;}
.wsb4{word-spacing:13.102707px;}
.ws103{word-spacing:13.103262px;}
.ws15f{word-spacing:13.163264px;}
.ws16f{word-spacing:13.282669px;}
.ws1ca{word-spacing:13.641364px;}
.ws16a{word-spacing:13.760888px;}
.ws138{word-spacing:14.358512px;}
.ws1f{word-spacing:14.418455px;}
.ws163{word-spacing:14.418515px;}
.ws144{word-spacing:14.537920px;}
.ws149{word-spacing:14.597802px;}
.ws19a{word-spacing:15.374954px;}
.ws1c7{word-spacing:15.494358px;}
.ws14f{word-spacing:15.494478px;}
.ws6{word-spacing:15.525000px;}
.ws14d{word-spacing:15.554240px;}
.ws15b{word-spacing:15.554361px;}
.ws15d{word-spacing:15.673765px;}
.ws180{word-spacing:15.858000px;}
.wsf1{word-spacing:16.115332px;}
.ws166{word-spacing:16.151985px;}
.ws15c{word-spacing:16.749608px;}
.ws1c1{word-spacing:16.809611px;}
.ws1c0{word-spacing:16.831708px;}
.ws191{word-spacing:16.929015px;}
.ws168{word-spacing:16.989018px;}
.ws9f{word-spacing:17.215179px;}
.ws162{word-spacing:17.586642px;}
.ws184{word-spacing:17.646644px;}
.ws182{word-spacing:17.706227px;}
.ws192{word-spacing:17.885454px;}
.ws104{word-spacing:17.964000px;}
.ws164{word-spacing:18.064861px;}
.ws17f{word-spacing:18.423556px;}
.ws161{word-spacing:18.423675px;}
.ws181{word-spacing:18.602903px;}
.ws190{word-spacing:18.603083px;}
.ws1a6{word-spacing:18.686355px;}
.ws1a7{word-spacing:18.722488px;}
.ws158{word-spacing:18.782490px;}
.wsc7{word-spacing:18.888920px;}
.ws172{word-spacing:18.961297px;}
.ws193{word-spacing:19.021299px;}
.ws1c2{word-spacing:19.858333px;}
.ws11b{word-spacing:19.918736px;}
.ws6f{word-spacing:20.227864px;}
.ws1bc{word-spacing:20.276550px;}
.ws15a{word-spacing:20.515960px;}
.wse{word-spacing:20.958000px;}
.ws199{word-spacing:20.994178px;}
.ws8c{word-spacing:21.088614px;}
.ws19b{word-spacing:21.173586px;}
.ws189{word-spacing:21.651805px;}
.ws124{word-spacing:22.177331px;}
.ws126{word-spacing:22.177391px;}
.ws127{word-spacing:22.218792px;}
.ws125{word-spacing:22.219152px;}
.ws19e{word-spacing:22.249429px;}
.ws4c{word-spacing:22.309431px;}
.ws1{word-spacing:22.752000px;}
.ws2{word-spacing:22.824000px;}
.ws173{word-spacing:23.026460px;}
.ws1c8{word-spacing:23.922896px;}
.ws1bd{word-spacing:25.178506px;}
.ws1a5{word-spacing:25.536961px;}
.ws151{word-spacing:25.955777px;}
.ws1bf{word-spacing:26.373994px;}
.ws143{word-spacing:26.903657px;}
.ws1a4{word-spacing:26.911616px;}
.ws1be{word-spacing:29.123845px;}
.ws0{word-spacing:30.702000px;}
.ws118{word-spacing:31.440000px;}
.ws1a8{word-spacing:32.590843px;}
.ws19f{word-spacing:33.189067px;}
.ws1c9{word-spacing:34.862534px;}
.ws153{word-spacing:39.824133px;}
.ws152{word-spacing:40.900096px;}
.ws185{word-spacing:40.959979px;}
.ws1a9{word-spacing:42.812853px;}
.ws186{word-spacing:43.111665px;}
.ws154{word-spacing:44.666327px;}
.ws195{word-spacing:47.714449px;}
.ws155{word-spacing:50.046143px;}
.ws1ab{word-spacing:50.584364px;}
.ws1aa{word-spacing:50.624752px;}
.ws194{word-spacing:51.540202px;}
.ws1a0{word-spacing:52.078424px;}
.ws156{word-spacing:56.246615px;}
.ws157{word-spacing:56.262992px;}
.ws178{word-spacing:56.442399px;}
.ws1bb{word-spacing:65.468861px;}
.ws188{word-spacing:65.724855px;}
.ws177{word-spacing:65.767973px;}
.ws187{word-spacing:65.783381px;}
.ws15e{word-spacing:72.104227px;}
.ws1c4{word-spacing:72.990916px;}
.ws1c5{word-spacing:73.000663px;}
.ws179{word-spacing:74.046476px;}
.ws17a{word-spacing:74.076506px;}
.ws1c3{word-spacing:82.923860px;}
.ws196{word-spacing:83.940301px;}
.ws1a1{word-spacing:89.286461px;}
.ws1ac{word-spacing:181.498211px;}
.ws17b{word-spacing:273.316891px;}
.ws1c6{word-spacing:337.905167px;}
._9{margin-left:-1579.294560px;}
._a{margin-left:-1443.359040px;}
._d{margin-left:-995.375520px;}
._c{margin-left:-931.343520px;}
._b{margin-left:-875.136000px;}
._8{margin-left:-768.239520px;}
._e{margin-left:-437.471520px;}
._1d{margin-left:-29.715665px;}
._1e{margin-left:-27.524597px;}
._0{margin-left:-8.058000px;}
._17{margin-left:-6.696000px;}
._4{margin-left:-5.382000px;}
._6{margin-left:-3.696000px;}
._1{margin-left:-1.944000px;}
._5{width:1.848000px;}
._3{width:2.999640px;}
._11{width:4.157453px;}
._14{width:13.299766px;}
._18{width:16.041897px;}
._f{width:17.863750px;}
._16{width:19.970229px;}
._10{width:21.525071px;}
._7{width:23.764797px;}
._19{width:27.540883px;}
._1b{width:29.888998px;}
._1f{width:31.294776px;}
._13{width:35.578086px;}
._15{width:37.950000px;}
._12{width:40.464000px;}
._2{width:45.632400px;}
._1c{width:57.451301px;}
._1a{width:60.732000px;}
._20{width:67.374974px;}
._23{width:87.183188px;}
._22{width:88.504453px;}
._21{width:91.285933px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.844000px;}
.fsc{font-size:42.000000px;}
.fs3{font-size:46.200000px;}
.fsa{font-size:47.820000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.778000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y154{bottom:283.818000px;}
.y1e{bottom:283.819500px;}
.y85{bottom:329.244000px;}
.y97{bottom:330.075000px;}
.y13d{bottom:330.814500px;}
.y1cf{bottom:333.787500px;}
.y1e3{bottom:334.123500px;}
.ybc{bottom:339.687000px;}
.y175{bottom:341.103000px;}
.y18d{bottom:342.619500px;}
.y4e{bottom:345.339000px;}
.y1d{bottom:346.551000px;}
.y84{bottom:347.244000px;}
.y96{bottom:348.075000px;}
.y10b{bottom:348.574500px;}
.y13c{bottom:348.814500px;}
.y1ce{bottom:351.787500px;}
.y1af{bottom:354.844500px;}
.ybb{bottom:357.687000px;}
.y174{bottom:359.103000px;}
.y18c{bottom:360.619500px;}
.y4d{bottom:363.339000px;}
.y1c{bottom:364.551000px;}
.y83{bottom:365.244000px;}
.y95{bottom:366.075000px;}
.y10a{bottom:366.574500px;}
.y13b{bottom:366.814500px;}
.y1e2{bottom:367.068000px;}
.y1cd{bottom:369.787500px;}
.y1ae{bottom:372.844500px;}
.ye5{bottom:374.091000px;}
.yba{bottom:375.687000px;}
.y173{bottom:377.103000px;}
.y18b{bottom:378.619500px;}
.y4c{bottom:381.339000px;}
.y1b{bottom:382.551000px;}
.y82{bottom:383.244000px;}
.y94{bottom:384.075000px;}
.y109{bottom:384.574500px;}
.y13a{bottom:384.814500px;}
.y1e1{bottom:385.068000px;}
.y68{bottom:385.990500px;}
.y1cc{bottom:387.787500px;}
.y1ad{bottom:390.844500px;}
.ye4{bottom:392.091000px;}
.yad{bottom:393.687000px;}
.y172{bottom:395.103000px;}
.y18a{bottom:396.619500px;}
.y4b{bottom:399.339000px;}
.y1a{bottom:400.551000px;}
.y81{bottom:401.244000px;}
.y93{bottom:402.075000px;}
.y108{bottom:402.574500px;}
.y139{bottom:402.814500px;}
.y67{bottom:403.990500px;}
.y1cb{bottom:405.787500px;}
.y1ac{bottom:408.844500px;}
.ye3{bottom:410.091000px;}
.yac{bottom:411.687000px;}
.y171{bottom:413.103000px;}
.y189{bottom:414.619500px;}
.y4a{bottom:417.339000px;}
.y1e0{bottom:418.012500px;}
.y19{bottom:418.551000px;}
.y80{bottom:419.244000px;}
.y92{bottom:420.075000px;}
.y107{bottom:420.574500px;}
.y138{bottom:420.814500px;}
.y66{bottom:421.990500px;}
.yb9{bottom:425.421000px;}
.y1ab{bottom:426.844500px;}
.ye2{bottom:428.091000px;}
.yab{bottom:429.687000px;}
.y170{bottom:431.103000px;}
.y49{bottom:435.339000px;}
.y1df{bottom:436.012500px;}
.y18{bottom:436.551000px;}
.y7f{bottom:437.244000px;}
.y91{bottom:438.075000px;}
.y106{bottom:438.574500px;}
.y1ca{bottom:438.732000px;}
.y137{bottom:438.814500px;}
.y65{bottom:439.990500px;}
.yb8{bottom:443.421000px;}
.ye1{bottom:446.091000px;}
.y188{bottom:447.564000px;}
.yaa{bottom:447.687000px;}
.y16f{bottom:449.103000px;}
.y48{bottom:453.339000px;}
.y17{bottom:454.551000px;}
.y7e{bottom:455.244000px;}
.y105{bottom:456.574500px;}
.y1c9{bottom:456.732000px;}
.y136{bottom:456.814500px;}
.y64{bottom:457.990500px;}
.y1aa{bottom:459.787500px;}
.yd2{bottom:460.941000px;}
.yb7{bottom:461.421000px;}
.ye0{bottom:464.091000px;}
.y187{bottom:465.564000px;}
.ya9{bottom:465.687000px;}
.y16e{bottom:467.103000px;}
.y1de{bottom:468.955500px;}
.y47{bottom:471.339000px;}
.y16{bottom:472.551000px;}
.y7d{bottom:473.244000px;}
.y104{bottom:474.574500px;}
.y1c8{bottom:474.732000px;}
.y135{bottom:474.814500px;}
.y63{bottom:475.990500px;}
.y1a9{bottom:477.787500px;}
.yd1{bottom:478.941000px;}
.yb6{bottom:479.421000px;}
.ydf{bottom:482.091000px;}
.y186{bottom:483.564000px;}
.ya8{bottom:483.687000px;}
.y90{bottom:485.019000px;}
.y16d{bottom:485.103000px;}
.y1dd{bottom:486.955500px;}
.y46{bottom:489.339000px;}
.y15{bottom:490.551000px;}
.y7c{bottom:491.244000px;}
.y103{bottom:492.574500px;}
.y1c7{bottom:492.732000px;}
.y134{bottom:492.814500px;}
.y62{bottom:493.990500px;}
.y1a8{bottom:495.787500px;}
.yd0{bottom:496.941000px;}
.yb5{bottom:497.421000px;}
.y8f{bottom:499.216500px;}
.yde{bottom:500.091000px;}
.y185{bottom:501.564000px;}
.ya7{bottom:501.687000px;}
.y16c{bottom:503.103000px;}
.y45{bottom:507.339000px;}
.y14{bottom:508.551000px;}
.y7b{bottom:509.244000px;}
.y133{bottom:510.814500px;}
.y61{bottom:511.990500px;}
.y8e{bottom:513.412500px;}
.y1a7{bottom:513.787500px;}
.ycf{bottom:514.941000px;}
.yb4{bottom:515.421000px;}
.ydd{bottom:518.091000px;}
.y102{bottom:519.541500px;}
.ya6{bottom:519.687000px;}
.y1dc{bottom:519.900000px;}
.y16b{bottom:521.103000px;}
.yd8{bottom:522.694500px;}
.y44{bottom:525.339000px;}
.y1c6{bottom:525.676500px;}
.y13{bottom:526.551000px;}
.y7a{bottom:527.244000px;}
.y8d{bottom:527.610000px;}
.y132{bottom:528.814500px;}
.y60{bottom:529.990500px;}
.yce{bottom:532.941000px;}
.yb3{bottom:533.421000px;}
.y184{bottom:534.507000px;}
.ydc{bottom:536.091000px;}
.ya5{bottom:537.687000px;}
.y1db{bottom:537.900000px;}
.y16a{bottom:539.103000px;}
.y8c{bottom:541.806000px;}
.y43{bottom:543.339000px;}
.y1c5{bottom:543.676500px;}
.y79{bottom:545.244000px;}
.y1a6{bottom:546.732000px;}
.y131{bottom:546.814500px;}
.y5f{bottom:547.990500px;}
.ycd{bottom:550.941000px;}
.yb2{bottom:551.421000px;}
.y183{bottom:552.507000px;}
.ya4{bottom:555.687000px;}
.y8b{bottom:556.003500px;}
.y169{bottom:557.103000px;}
.y12{bottom:558.000000px;}
.y101{bottom:558.474000px;}
.y42{bottom:561.339000px;}
.y1c4{bottom:561.676500px;}
.ydb{bottom:563.058000px;}
.y78{bottom:563.244000px;}
.y1a5{bottom:564.732000px;}
.y130{bottom:564.814500px;}
.y5e{bottom:565.990500px;}
.ycc{bottom:568.941000px;}
.y8a{bottom:570.199500px;}
.y182{bottom:570.507000px;}
.y1da{bottom:570.844500px;}
.ya3{bottom:573.687000px;}
.y168{bottom:575.103000px;}
.yd7{bottom:575.470500px;}
.y100{bottom:576.474000px;}
.yb1{bottom:578.386500px;}
.y41{bottom:579.339000px;}
.y1c3{bottom:579.676500px;}
.y153{bottom:581.244000px;}
.y1a4{bottom:582.732000px;}
.y12f{bottom:582.814500px;}
.y5d{bottom:583.990500px;}
.y89{bottom:584.397000px;}
.ycb{bottom:586.941000px;}
.y181{bottom:588.507000px;}
.y1d9{bottom:588.844500px;}
.yd6{bottom:589.668000px;}
.y77{bottom:590.211000px;}
.ya2{bottom:591.687000px;}
.yff{bottom:594.474000px;}
.y40{bottom:597.339000px;}
.y1c2{bottom:597.676500px;}
.y88{bottom:598.593000px;}
.y152{bottom:599.244000px;}
.y1a3{bottom:600.732000px;}
.y12e{bottom:600.814500px;}
.y5c{bottom:601.990500px;}
.yd5{bottom:603.864000px;}
.yca{bottom:604.941000px;}
.y167{bottom:608.047500px;}
.yfe{bottom:612.474000px;}
.y87{bottom:612.790500px;}
.y3f{bottom:615.339000px;}
.y1c1{bottom:615.676500px;}
.y151{bottom:617.244000px;}
.yd4{bottom:618.061500px;}
.ya1{bottom:618.652500px;}
.y12d{bottom:618.814500px;}
.y5b{bottom:619.990500px;}
.y180{bottom:621.451500px;}
.y1d8{bottom:621.787500px;}
.yc9{bottom:622.941000px;}
.yb0{bottom:624.786000px;}
.y166{bottom:626.047500px;}
.y86{bottom:626.986500px;}
.y76{bottom:627.279000px;}
.yfd{bottom:630.474000px;}
.yd3{bottom:632.257500px;}
.y3e{bottom:633.339000px;}
.y1a2{bottom:633.676500px;}
.y150{bottom:635.244000px;}
.y11{bottom:635.799000px;}
.y5a{bottom:637.990500px;}
.yaf{bottom:638.983500px;}
.y17f{bottom:639.451500px;}
.y1d7{bottom:639.787500px;}
.yc8{bottom:640.941000px;}
.y165{bottom:644.047500px;}
.y75{bottom:645.279000px;}
.y12c{bottom:645.780000px;}
.yfc{bottom:648.474000px;}
.y1c0{bottom:648.619500px;}
.y3d{bottom:651.339000px;}
.y1a1{bottom:651.676500px;}
.y10{bottom:652.299000px;}
.yae{bottom:653.179500px;}
.y59{bottom:655.990500px;}
.y17e{bottom:657.451500px;}
.yc7{bottom:658.941000px;}
.y164{bottom:662.047500px;}
.y14f{bottom:662.211000px;}
.y74{bottom:663.279000px;}
.yfb{bottom:666.474000px;}
.y1bf{bottom:666.619500px;}
.ya0{bottom:667.377000px;}
.yf{bottom:668.799000px;}
.y3c{bottom:669.339000px;}
.y1a0{bottom:669.676500px;}
.y1d6{bottom:672.732000px;}
.y58{bottom:673.990500px;}
.y17d{bottom:675.451500px;}
.yc6{bottom:676.941000px;}
.y163{bottom:680.047500px;}
.y73{bottom:681.279000px;}
.y9f{bottom:681.573000px;}
.yfa{bottom:684.474000px;}
.y1be{bottom:684.619500px;}
.ye{bottom:685.299000px;}
.y3b{bottom:687.339000px;}
.y57{bottom:691.990500px;}
.y17c{bottom:693.451500px;}
.yc5{bottom:694.941000px;}
.y9e{bottom:695.770500px;}
.y12b{bottom:697.266000px;}
.y162{bottom:698.047500px;}
.y72{bottom:699.279000px;}
.y14e{bottom:700.714500px;}
.yd{bottom:701.799000px;}
.yf9{bottom:702.474000px;}
.y19f{bottom:702.619500px;}
.y3a{bottom:705.339000px;}
.y1d5{bottom:705.675000px;}
.y12a{bottom:709.221000px;}
.y9d{bottom:709.966500px;}
.y56{bottom:709.990500px;}
.yc4{bottom:712.941000px;}
.y161{bottom:716.047500px;}
.y71{bottom:717.279000px;}
.y1bd{bottom:717.564000px;}
.yc{bottom:718.299000px;}
.y14d{bottom:718.714500px;}
.y19e{bottom:720.619500px;}
.y129{bottom:721.176000px;}
.y39{bottom:723.339000px;}
.y1d4{bottom:723.675000px;}
.y9c{bottom:724.164000px;}
.y17b{bottom:726.396000px;}
.y55{bottom:727.990500px;}
.yc3{bottom:730.941000px;}
.y128{bottom:733.131000px;}
.y160{bottom:734.047500px;}
.yb{bottom:734.799000px;}
.y70{bottom:735.279000px;}
.y1bc{bottom:735.564000px;}
.y14c{bottom:736.714500px;}
.y9b{bottom:738.360000px;}
.yf8{bottom:738.474000px;}
.y19d{bottom:738.619500px;}
.y38{bottom:741.339000px;}
.y17a{bottom:744.396000px;}
.y127{bottom:745.086000px;}
.y54{bottom:745.990500px;}
.yc2{bottom:748.941000px;}
.ya{bottom:751.299000px;}
.y15f{bottom:752.047500px;}
.y9a{bottom:752.557500px;}
.y6f{bottom:753.279000px;}
.y1bb{bottom:753.564000px;}
.y14b{bottom:754.714500px;}
.yf7{bottom:756.474000px;}
.y19c{bottom:756.619500px;}
.y126{bottom:757.042500px;}
.y37{bottom:759.339000px;}
.y179{bottom:762.396000px;}
.y53{bottom:763.990500px;}
.y99{bottom:766.753500px;}
.yc1{bottom:766.941000px;}
.y9{bottom:767.799000px;}
.y125{bottom:768.997500px;}
.y15e{bottom:770.047500px;}
.y1ba{bottom:771.564000px;}
.y14a{bottom:772.714500px;}
.y36{bottom:777.339000px;}
.y6e{bottom:780.244500px;}
.y178{bottom:780.396000px;}
.y98{bottom:780.951000px;}
.y124{bottom:780.952500px;}
.y52{bottom:781.990500px;}
.yc0{bottom:784.941000px;}
.y8{bottom:788.781000px;}
.y19b{bottom:789.564000px;}
.yf6{bottom:792.474000px;}
.y123{bottom:792.907500px;}
.y35{bottom:795.339000px;}
.y177{bottom:798.396000px;}
.y149{bottom:799.680000px;}
.y51{bottom:799.990500px;}
.ybf{bottom:802.941000px;}
.y15d{bottom:802.990500px;}
.y1b9{bottom:804.507000px;}
.y122{bottom:804.862500px;}
.y19a{bottom:807.564000px;}
.yda{bottom:808.957500px;}
.yf5{bottom:810.474000px;}
.y34{bottom:813.339000px;}
.y176{bottom:816.396000px;}
.y121{bottom:816.817500px;}
.ybe{bottom:820.941000px;}
.y15c{bottom:820.990500px;}
.y1b8{bottom:822.507000px;}
.y199{bottom:825.564000px;}
.y50{bottom:826.957500px;}
.y6d{bottom:827.779500px;}
.yf4{bottom:828.474000px;}
.y120{bottom:828.772500px;}
.y33{bottom:831.339000px;}
.y148{bottom:838.183500px;}
.y15b{bottom:838.990500px;}
.y1b7{bottom:840.507000px;}
.y11f{bottom:840.727500px;}
.y7{bottom:841.147500px;}
.y6c{bottom:841.975500px;}
.yd9{bottom:843.406500px;}
.y198{bottom:843.564000px;}
.yf3{bottom:846.474000px;}
.ybd{bottom:847.906500px;}
.y32{bottom:849.339000px;}
.y11e{bottom:852.682500px;}
.y6b{bottom:856.173000px;}
.y147{bottom:856.183500px;}
.y15a{bottom:856.990500px;}
.y1b6{bottom:858.507000px;}
.y6{bottom:861.397500px;}
.y4f{bottom:861.406500px;}
.y197{bottom:861.564000px;}
.yf2{bottom:864.474000px;}
.y11d{bottom:864.639000px;}
.y31{bottom:867.339000px;}
.y1ec{bottom:867.675000px;}
.y6a{bottom:870.369000px;}
.y159{bottom:874.990500px;}
.y1d3{bottom:876.507000px;}
.y11c{bottom:876.594000px;}
.y196{bottom:879.564000px;}
.y5{bottom:881.647500px;}
.yf1{bottom:882.474000px;}
.y69{bottom:884.566500px;}
.y30{bottom:885.339000px;}
.y146{bottom:886.306500px;}
.y11b{bottom:888.549000px;}
.y1b5{bottom:891.451500px;}
.y158{bottom:892.990500px;}
.y1d2{bottom:894.507000px;}
.y145{bottom:898.261500px;}
.yf0{bottom:900.474000px;}
.y11a{bottom:900.504000px;}
.y1eb{bottom:900.619500px;}
.y2f{bottom:903.339000px;}
.y1b4{bottom:909.451500px;}
.y144{bottom:910.218000px;}
.y157{bottom:910.990500px;}
.y119{bottom:912.459000px;}
.y195{bottom:912.507000px;}
.yef{bottom:918.474000px;}
.y1ea{bottom:918.619500px;}
.y2e{bottom:921.339000px;}
.y118{bottom:924.414000px;}
.y1b3{bottom:927.451500px;}
.y194{bottom:930.507000px;}
.yee{bottom:936.474000px;}
.y4{bottom:937.762500px;}
.y2d{bottom:939.339000px;}
.y156{bottom:942.441000px;}
.y1b2{bottom:945.451500px;}
.y143{bottom:946.083000px;}
.y117{bottom:948.324000px;}
.y1e9{bottom:951.564000px;}
.y2c{bottom:957.339000px;}
.y142{bottom:958.038000px;}
.yed{bottom:963.441000px;}
.y193{bottom:963.451500px;}
.y3{bottom:964.000500px;}
.y1e8{bottom:969.564000px;}
.y141{bottom:969.993000px;}
.y2b{bottom:975.339000px;}
.y1d1{bottom:978.396000px;}
.y192{bottom:981.451500px;}
.y140{bottom:981.948000px;}
.y155{bottom:984.373500px;}
.y1e7{bottom:987.564000px;}
.y2{bottom:988.723500px;}
.y2a{bottom:993.339000px;}
.y116{bottom:993.877500px;}
.y13f{bottom:993.903000px;}
.y1b1{bottom:996.396000px;}
.y191{bottom:999.451500px;}
.yec{bottom:1002.373500px;}
.y115{bottom:1005.832500px;}
.y13e{bottom:1005.858000px;}
.y29{bottom:1011.339000px;}
.y1b0{bottom:1014.396000px;}
.y114{bottom:1017.787500px;}
.yeb{bottom:1020.373500px;}
.y1e6{bottom:1020.507000px;}
.y28{bottom:1029.339000px;}
.y113{bottom:1029.742500px;}
.y190{bottom:1032.396000px;}
.yea{bottom:1038.373500px;}
.y1{bottom:1040.361000px;}
.y112{bottom:1041.697500px;}
.y27{bottom:1047.339000px;}
.y18f{bottom:1050.396000px;}
.y1e5{bottom:1053.451500px;}
.y111{bottom:1053.654000px;}
.ye9{bottom:1056.373500px;}
.y26{bottom:1065.339000px;}
.y110{bottom:1065.609000px;}
.y18e{bottom:1068.396000px;}
.ye8{bottom:1074.373500px;}
.y10f{bottom:1077.564000px;}
.y25{bottom:1083.339000px;}
.y1d0{bottom:1086.396000px;}
.y10e{bottom:1089.519000px;}
.ye7{bottom:1092.373500px;}
.y24{bottom:1101.339000px;}
.y10d{bottom:1101.474000px;}
.y1e4{bottom:1104.396000px;}
.ye6{bottom:1110.373500px;}
.y10c{bottom:1113.429000px;}
.y23{bottom:1119.339000px;}
.y22{bottom:1137.339000px;}
.y1f{bottom:1219.499910px;}
.y20{bottom:1231.499910px;}
.y21{bottom:1243.500030px;}
.h10{height:29.039736px;}
.h4{height:31.138800px;}
.hc{height:35.865000px;}
.h6{height:37.800000px;}
.h7{height:40.500000px;}
.he{height:41.640000px;}
.hf{height:42.000000px;}
.h9{height:44.833500px;}
.h14{height:44.929500px;}
.h12{height:45.000000px;}
.h11{height:45.060000px;}
.hd{height:46.200000px;}
.h5{height:49.500000px;}
.ha{height:50.062500px;}
.hb{height:50.400000px;}
.h8{height:58.800000px;}
.h13{height:60.097500px;}
.h3{height:63.924000px;}
.h2{height:72.114000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:103.110615px;}
.x9{left:150.106500px;}
.x1e{left:157.578000px;}
.x15{left:161.221500px;}
.x2{left:168.039000px;}
.x11{left:172.522500px;}
.x16{left:179.994000px;}
.x3{left:185.689500px;}
.xe{left:186.892500px;}
.x14{left:194.766000px;}
.x5{left:200.593500px;}
.x1{left:206.917500px;}
.xf{left:209.308500px;}
.x1f{left:217.609500px;}
.x7{left:230.842500px;}
.x19{left:234.522000px;}
.x6{left:248.947500px;}
.x1a{left:275.889000px;}
.x4{left:352.485000px;}
.x8{left:397.509000px;}
.x17{left:409.719000px;}
.x13{left:420.592500px;}
.xa{left:424.327500px;}
.x18{left:454.020000px;}
.x12{left:457.377000px;}
.x10{left:461.113500px;}
.x1d{left:472.333500px;}
.x1c{left:575.730000px;}
.xb{left:638.993775px;}
.xd{left:646.043895px;}
.x1b{left:691.051500px;}
@media print{
.v2{vertical-align:-21.290667pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.568000pt;}
.v1{vertical-align:23.221333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.006037pt;}
.ls6{letter-spacing:0.017600pt;}
.ls1{letter-spacing:2.651093pt;}
.lsf{letter-spacing:2.653867pt;}
.ls0{letter-spacing:2.656427pt;}
.lsb{letter-spacing:2.659200pt;}
.ls5{letter-spacing:3.365333pt;}
.ls11{letter-spacing:4.816533pt;}
.ls15{letter-spacing:11.024000pt;}
.ls1b{letter-spacing:11.850667pt;}
.ls3{letter-spacing:15.409418pt;}
.ls1d{letter-spacing:17.712000pt;}
.ls1c{letter-spacing:18.333867pt;}
.ls2{letter-spacing:19.536000pt;}
.ls14{letter-spacing:20.404153pt;}
.ls13{letter-spacing:23.064533pt;}
.ls12{letter-spacing:24.474667pt;}
.lse{letter-spacing:26.132153pt;}
.lsa{letter-spacing:26.921486pt;}
.ls8{letter-spacing:27.514352pt;}
.lsc{letter-spacing:27.608533pt;}
.ls1a{letter-spacing:27.923200pt;}
.ls10{letter-spacing:28.792533pt;}
.lsd{letter-spacing:29.205333pt;}
.ls19{letter-spacing:30.312533pt;}
.ls18{letter-spacing:30.317867pt;}
.ls16{letter-spacing:36.272533pt;}
.ls9{letter-spacing:38.778667pt;}
.ls17{letter-spacing:42.522667pt;}
.ws183{word-spacing:-17.034667pt;}
.ws5{word-spacing:-16.297600pt;}
.wsdb{word-spacing:-14.761181pt;}
.ws1a{word-spacing:-11.861333pt;}
.ws18e{word-spacing:-5.216000pt;}
.ws18d{word-spacing:-2.964974pt;}
.ws18f{word-spacing:-2.960762pt;}
.wsd6{word-spacing:-2.858837pt;}
.ws4a{word-spacing:-2.699311pt;}
.wsb5{word-spacing:-2.427035pt;}
.ws43{word-spacing:-2.380418pt;}
.ws76{word-spacing:-2.008670pt;}
.ws4b{word-spacing:-1.902532pt;}
.ws7a{word-spacing:-1.849197pt;}
.ws92{word-spacing:-1.832055pt;}
.ws79{word-spacing:-1.795861pt;}
.wsba{word-spacing:-1.747043pt;}
.ws7d{word-spacing:-1.743059pt;}
.wsff{word-spacing:-1.689724pt;}
.ws90{word-spacing:-1.621020pt;}
.ws91{word-spacing:-1.619578pt;}
.wsd7{word-spacing:-1.477449pt;}
.ws60{word-spacing:-1.477182pt;}
.ws9d{word-spacing:-1.424113pt;}
.ws12a{word-spacing:-1.424060pt;}
.wscd{word-spacing:-1.321981pt;}
.ws49{word-spacing:-1.317762pt;}
.wsde{word-spacing:-1.264640pt;}
.ws107{word-spacing:-1.105220pt;}
.ws65{word-spacing:-1.052098pt;}
.ws1b2{word-spacing:-1.051831pt;}
.wsc1{word-spacing:-1.024385pt;}
.ws30{word-spacing:-0.999029pt;}
.ws136{word-spacing:-0.945694pt;}
.ws2e{word-spacing:-0.839556pt;}
.ws111{word-spacing:-0.627281pt;}
.ws93{word-spacing:-0.599323pt;}
.ws57{word-spacing:-0.573945pt;}
.ws23{word-spacing:-0.520717pt;}
.wsd1{word-spacing:-0.520610pt;}
.ws95{word-spacing:-0.471858pt;}
.ws35{word-spacing:-0.467808pt;}
.ws10{word-spacing:-0.467595pt;}
.ws5d{word-spacing:-0.414472pt;}
.wsd2{word-spacing:-0.361670pt;}
.ws5c{word-spacing:-0.361350pt;}
.ws5e{word-spacing:-0.361137pt;}
.ws74{word-spacing:-0.344393pt;}
.ws75{word-spacing:-0.308335pt;}
.wse2{word-spacing:-0.308175pt;}
.wsf6{word-spacing:-0.255000pt;}
.ws58{word-spacing:-0.148862pt;}
.wsfc{word-spacing:-0.095526pt;}
.wsf2{word-spacing:-0.089463pt;}
.ws11d{word-spacing:-0.053333pt;}
.ws12c{word-spacing:-0.042511pt;}
.ws73{word-spacing:-0.042507pt;}
.ws3{word-spacing:-0.041067pt;}
.wsc{word-spacing:-0.024000pt;}
.ws1b{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.010611pt;}
.wsd3{word-spacing:0.063947pt;}
.wsbe{word-spacing:0.080669pt;}
.ws71{word-spacing:0.080776pt;}
.wsf8{word-spacing:0.116749pt;}
.wsfe{word-spacing:0.116909pt;}
.ws14a{word-spacing:0.170031pt;}
.ws39{word-spacing:0.223153pt;}
.ws132{word-spacing:0.223420pt;}
.ws102{word-spacing:0.382573pt;}
.ws109{word-spacing:0.435695pt;}
.ws9e{word-spacing:0.489030pt;}
.ws1b7{word-spacing:0.496000pt;}
.ws105{word-spacing:0.541833pt;}
.ws128{word-spacing:0.541993pt;}
.wsfb{word-spacing:0.647970pt;}
.ws11{word-spacing:0.648237pt;}
.ws135{word-spacing:0.701305pt;}
.wse3{word-spacing:0.701839pt;}
.ws13{word-spacing:0.754641pt;}
.wsa0{word-spacing:0.803381pt;}
.wsb1{word-spacing:0.860779pt;}
.ws147{word-spacing:0.913581pt;}
.ws117{word-spacing:0.913954pt;}
.ws148{word-spacing:0.914114pt;}
.wsa9{word-spacing:0.930792pt;}
.ws52{word-spacing:0.967076pt;}
.ws1af{word-spacing:1.020252pt;}
.ws5f{word-spacing:1.126389pt;}
.ws66{word-spacing:1.232527pt;}
.wsc6{word-spacing:1.285863pt;}
.ws121{word-spacing:1.339038pt;}
.ws78{word-spacing:1.392000pt;}
.wsbc{word-spacing:1.398520pt;}
.wscf{word-spacing:1.440973pt;}
.wsf0{word-spacing:1.445282pt;}
.ws1e{word-spacing:1.445335pt;}
.wsf4{word-spacing:1.483319pt;}
.ws12b{word-spacing:1.498138pt;}
.ws18a{word-spacing:1.498671pt;}
.ws7f{word-spacing:1.551473pt;}
.ws47{word-spacing:1.551580pt;}
.wscc{word-spacing:1.568492pt;}
.wscb{word-spacing:1.568652pt;}
.wsb9{word-spacing:1.610785pt;}
.ws1a3{word-spacing:1.657824pt;}
.ws12d{word-spacing:1.710999pt;}
.ws59{word-spacing:1.817084pt;}
.ws5b{word-spacing:1.817244pt;}
.ws48{word-spacing:1.870366pt;}
.ws5a{word-spacing:1.870419pt;}
.ws137{word-spacing:1.923541pt;}
.ws80{word-spacing:1.976557pt;}
.ws12f{word-spacing:2.029359pt;}
.wse9{word-spacing:2.029786pt;}
.ws22{word-spacing:2.029892pt;}
.wsc8{word-spacing:2.036060pt;}
.ws86{word-spacing:2.082694pt;}
.ws84{word-spacing:2.083228pt;}
.ws123{word-spacing:2.136029pt;}
.ws14c{word-spacing:2.136083pt;}
.ws6a{word-spacing:2.189205pt;}
.ws85{word-spacing:2.189365pt;}
.ws3a{word-spacing:2.242168pt;}
.ws2f{word-spacing:2.242328pt;}
.wsbd{word-spacing:2.291310pt;}
.ws3c{word-spacing:2.348838pt;}
.wsce{word-spacing:2.376109pt;}
.wsfd{word-spacing:2.401640pt;}
.ws14b{word-spacing:2.432000pt;}
.ws106{word-spacing:2.454869pt;}
.ws99{word-spacing:2.503574pt;}
.wsaa{word-spacing:2.503627pt;}
.ws122{word-spacing:2.561167pt;}
.ws110{word-spacing:2.614289pt;}
.ws1b4{word-spacing:2.667251pt;}
.ws1b3{word-spacing:2.720587pt;}
.wsb{word-spacing:2.760000pt;}
.ws1b6{word-spacing:2.773922pt;}
.ws1b8{word-spacing:2.777692pt;}
.wsd0{word-spacing:2.801171pt;}
.ws1ae{word-spacing:2.826724pt;}
.wsad{word-spacing:2.826831pt;}
.ws77{word-spacing:2.880059pt;}
.wsf3{word-spacing:2.928636pt;}
.ws31{word-spacing:2.932862pt;}
.ws3b{word-spacing:2.933128pt;}
.ws83{word-spacing:2.933395pt;}
.ws18b{word-spacing:2.937105pt;}
.ws1b0{word-spacing:2.947124pt;}
.ws24{word-spacing:2.986197pt;}
.ws63{word-spacing:2.986251pt;}
.ws11c{word-spacing:2.989520pt;}
.ws20{word-spacing:3.039373pt;}
.ws1ad{word-spacing:3.039533pt;}
.wsd8{word-spacing:3.092335pt;}
.ws70{word-spacing:3.098714pt;}
.ws10a{word-spacing:3.145670pt;}
.ws129{word-spacing:3.198793pt;}
.ws4{word-spacing:3.238400pt;}
.ws67{word-spacing:3.305036pt;}
.ws17e{word-spacing:3.305143pt;}
.wse8{word-spacing:3.357945pt;}
.wse5{word-spacing:3.358212pt;}
.ws139{word-spacing:3.358479pt;}
.wsdd{word-spacing:3.570754pt;}
.wsf{word-spacing:3.623876pt;}
.ws115{word-spacing:3.676892pt;}
.ws2a{word-spacing:3.676998pt;}
.ws98{word-spacing:3.693960pt;}
.ws119{word-spacing:3.730227pt;}
.ws7c{word-spacing:3.731200pt;}
.ws8d{word-spacing:3.736093pt;}
.wse1{word-spacing:3.783296pt;}
.wsab{word-spacing:3.789867pt;}
.ws6b{word-spacing:3.836364pt;}
.wsaf{word-spacing:3.889700pt;}
.ws68{word-spacing:3.942502pt;}
.wse7{word-spacing:3.995838pt;}
.ws56{word-spacing:4.000000pt;}
.wsbb{word-spacing:4.033690pt;}
.wsc5{word-spacing:4.049173pt;}
.wsc3{word-spacing:4.101975pt;}
.ws176{word-spacing:4.117523pt;}
.ws16{word-spacing:4.155311pt;}
.wsf5{word-spacing:4.203821pt;}
.wsa5{word-spacing:4.246487pt;}
.ws9a{word-spacing:4.261448pt;}
.ws38{word-spacing:4.314783pt;}
.ws14e{word-spacing:4.314914pt;}
.ws17c{word-spacing:4.332437pt;}
.ws55{word-spacing:4.347665pt;}
.ws150{word-spacing:4.362972pt;}
.ws37{word-spacing:4.367799pt;}
.wse0{word-spacing:4.420921pt;}
.ws16c{word-spacing:4.474043pt;}
.wsec{word-spacing:4.474257pt;}
.ws7b{word-spacing:4.527059pt;}
.wsd{word-spacing:4.536000pt;}
.ws6c{word-spacing:4.580341pt;}
.wsdf{word-spacing:4.580394pt;}
.wsc0{word-spacing:4.628883pt;}
.wsbf{word-spacing:4.629416pt;}
.ws9c{word-spacing:4.633197pt;}
.ws21{word-spacing:4.686532pt;}
.ws81{word-spacing:4.739867pt;}
.wseb{word-spacing:4.792670pt;}
.ws12{word-spacing:4.792883pt;}
.ws4e{word-spacing:4.846005pt;}
.wsa3{word-spacing:4.879563pt;}
.wsa4{word-spacing:4.883813pt;}
.ws1d{word-spacing:4.899341pt;}
.wsa6{word-spacing:4.926532pt;}
.ws134{word-spacing:4.952142pt;}
.ws14{word-spacing:5.005424pt;}
.wsae{word-spacing:5.005478pt;}
.wsa8{word-spacing:5.011278pt;}
.ws8f{word-spacing:5.053944pt;}
.ws8e{word-spacing:5.054051pt;}
.ws1b1{word-spacing:5.058280pt;}
.ws2c{word-spacing:5.058547pt;}
.wsda{word-spacing:5.111616pt;}
.ws114{word-spacing:5.164951pt;}
.ws82{word-spacing:5.217753pt;}
.ws10b{word-spacing:5.217966pt;}
.ws33{word-spacing:5.271089pt;}
.wsfa{word-spacing:5.323891pt;}
.wsac{word-spacing:5.324211pt;}
.ws6e{word-spacing:5.324424pt;}
.ws13e{word-spacing:5.430562pt;}
.ws29{word-spacing:5.483364pt;}
.ws1c{word-spacing:5.483630pt;}
.ws27{word-spacing:5.536699pt;}
.ws26{word-spacing:5.536753pt;}
.ws28{word-spacing:5.537233pt;}
.ws133{word-spacing:5.589928pt;}
.ws116{word-spacing:5.590035pt;}
.ws4f{word-spacing:5.643371pt;}
.wsa2{word-spacing:5.649138pt;}
.wsa1{word-spacing:5.691644pt;}
.ws12e{word-spacing:5.696172pt;}
.ws130{word-spacing:5.749294pt;}
.ws131{word-spacing:5.749508pt;}
.wsb7{word-spacing:5.776603pt;}
.wsb6{word-spacing:5.776656pt;}
.ws17{word-spacing:5.802310pt;}
.ws100{word-spacing:5.855592pt;}
.ws141{word-spacing:5.855646pt;}
.ws42{word-spacing:5.908447pt;}
.ws41{word-spacing:5.908714pt;}
.wsf9{word-spacing:5.961783pt;}
.ws108{word-spacing:5.961836pt;}
.ws4d{word-spacing:6.015012pt;}
.ws9b{word-spacing:6.015118pt;}
.ws54{word-spacing:6.067921pt;}
.ws7{word-spacing:6.120000pt;}
.ws69{word-spacing:6.121256pt;}
.wsca{word-spacing:6.201664pt;}
.wsc9{word-spacing:6.201718pt;}
.ws113{word-spacing:6.227394pt;}
.ws112{word-spacing:6.280676pt;}
.ws87{word-spacing:6.280729pt;}
.ws16e{word-spacing:6.333531pt;}
.wsee{word-spacing:6.386973pt;}
.wsea{word-spacing:6.440095pt;}
.ws40{word-spacing:6.440202pt;}
.ws94{word-spacing:6.499261pt;}
.ws3f{word-spacing:6.546340pt;}
.wsef{word-spacing:6.599142pt;}
.wsd5{word-spacing:6.599675pt;}
.ws10e{word-spacing:6.652477pt;}
.ws9{word-spacing:6.696000pt;}
.ws18{word-spacing:6.705759pt;}
.wsc2{word-spacing:6.811951pt;}
.ws101{word-spacing:6.865286pt;}
.ws8b{word-spacing:6.918301pt;}
.ws72{word-spacing:6.924323pt;}
.ws7e{word-spacing:7.024759pt;}
.ws89{word-spacing:7.077561pt;}
.ws96{word-spacing:7.094347pt;}
.ws97{word-spacing:7.094454pt;}
.ws2b{word-spacing:7.237034pt;}
.ws51{word-spacing:7.290263pt;}
.ws19{word-spacing:7.290370pt;}
.ws1cb{word-spacing:7.343385pt;}
.wsa{word-spacing:7.368000pt;}
.wse4{word-spacing:7.396507pt;}
.ws50{word-spacing:7.449683pt;}
.wsb2{word-spacing:7.449843pt;}
.ws46{word-spacing:7.502645pt;}
.ws45{word-spacing:7.502805pt;}
.ws11e{word-spacing:7.555980pt;}
.ws44{word-spacing:7.609316pt;}
.wsd9{word-spacing:7.662118pt;}
.ws88{word-spacing:7.662224pt;}
.wse6{word-spacing:7.715347pt;}
.ws174{word-spacing:7.981064pt;}
.ws53{word-spacing:8.034186pt;}
.ws11a{word-spacing:8.087201pt;}
.wsed{word-spacing:8.140537pt;}
.wsb0{word-spacing:8.193339pt;}
.ws169{word-spacing:8.193553pt;}
.ws25{word-spacing:8.300010pt;}
.ws8a{word-spacing:8.406094pt;}
.wsa7{word-spacing:8.412092pt;}
.ws8{word-spacing:8.424000pt;}
.ws15{word-spacing:8.459483pt;}
.ws10f{word-spacing:8.565514pt;}
.ws10c{word-spacing:8.618423pt;}
.wsdc{word-spacing:8.618636pt;}
.ws13f{word-spacing:8.671759pt;}
.ws171{word-spacing:8.724934pt;}
.ws140{word-spacing:8.725094pt;}
.ws17d{word-spacing:8.777896pt;}
.ws16d{word-spacing:8.778056pt;}
.ws1ba{word-spacing:8.831231pt;}
.ws19c{word-spacing:8.837333pt;}
.ws3e{word-spacing:8.884567pt;}
.wsb8{word-spacing:8.922166pt;}
.ws198{word-spacing:8.937369pt;}
.ws18c{word-spacing:8.990704pt;}
.ws64{word-spacing:9.043506pt;}
.ws11f{word-spacing:9.096895pt;}
.ws1b9{word-spacing:9.149644pt;}
.wsb3{word-spacing:9.150018pt;}
.ws197{word-spacing:9.150178pt;}
.wsc4{word-spacing:9.202980pt;}
.ws1b5{word-spacing:9.256315pt;}
.wsd4{word-spacing:9.468590pt;}
.ws167{word-spacing:9.575261pt;}
.ws3d{word-spacing:9.628224pt;}
.ws13d{word-spacing:9.681399pt;}
.ws61{word-spacing:9.794987pt;}
.ws62{word-spacing:9.840872pt;}
.ws2d{word-spacing:9.893941pt;}
.ws10d{word-spacing:9.947063pt;}
.ws32{word-spacing:10.106483pt;}
.ws13b{word-spacing:10.148762pt;}
.ws13c{word-spacing:10.159284pt;}
.ws13a{word-spacing:10.159818pt;}
.ws142{word-spacing:10.319291pt;}
.ws170{word-spacing:10.372093pt;}
.ws146{word-spacing:10.478231pt;}
.ws145{word-spacing:10.531566pt;}
.ws159{word-spacing:10.637704pt;}
.ws160{word-spacing:10.691039pt;}
.ws175{word-spacing:10.744375pt;}
.ws1a2{word-spacing:10.797230pt;}
.ws120{word-spacing:10.850352pt;}
.wsf7{word-spacing:10.850513pt;}
.ws36{word-spacing:10.903528pt;}
.ws34{word-spacing:10.956650pt;}
.ws165{word-spacing:11.116123pt;}
.ws19d{word-spacing:11.119718pt;}
.ws16b{word-spacing:11.328398pt;}
.wsb4{word-spacing:11.646850pt;}
.ws103{word-spacing:11.647344pt;}
.ws15f{word-spacing:11.700680pt;}
.ws16f{word-spacing:11.806817pt;}
.ws1ca{word-spacing:12.125657pt;}
.ws16a{word-spacing:12.231901pt;}
.ws138{word-spacing:12.763122pt;}
.ws1f{word-spacing:12.816404pt;}
.ws163{word-spacing:12.816458pt;}
.ws144{word-spacing:12.922595pt;}
.ws149{word-spacing:12.975824pt;}
.ws19a{word-spacing:13.666625pt;}
.ws1c7{word-spacing:13.772763pt;}
.ws14f{word-spacing:13.772869pt;}
.ws6{word-spacing:13.800000pt;}
.ws14d{word-spacing:13.825991pt;}
.ws15b{word-spacing:13.826098pt;}
.ws15d{word-spacing:13.932236pt;}
.ws180{word-spacing:14.096000pt;}
.wsf1{word-spacing:14.324739pt;}
.ws166{word-spacing:14.357320pt;}
.ws15c{word-spacing:14.888541pt;}
.ws1c1{word-spacing:14.941876pt;}
.ws1c0{word-spacing:14.961518pt;}
.ws191{word-spacing:15.048014pt;}
.ws168{word-spacing:15.101350pt;}
.ws9f{word-spacing:15.302381pt;}
.ws162{word-spacing:15.632571pt;}
.ws184{word-spacing:15.685906pt;}
.ws182{word-spacing:15.738868pt;}
.ws192{word-spacing:15.898181pt;}
.ws104{word-spacing:15.968000pt;}
.ws164{word-spacing:16.057655pt;}
.ws17f{word-spacing:16.376494pt;}
.ws161{word-spacing:16.376600pt;}
.ws181{word-spacing:16.535914pt;}
.ws190{word-spacing:16.536074pt;}
.ws1a6{word-spacing:16.610093pt;}
.ws1a7{word-spacing:16.642211pt;}
.ws158{word-spacing:16.695546pt;}
.wsc7{word-spacing:16.790151pt;}
.ws172{word-spacing:16.854486pt;}
.ws193{word-spacing:16.907822pt;}
.ws1c2{word-spacing:17.651851pt;}
.ws11b{word-spacing:17.705543pt;}
.ws6f{word-spacing:17.980323pt;}
.ws1bc{word-spacing:18.023600pt;}
.ws15a{word-spacing:18.236409pt;}
.wse{word-spacing:18.629333pt;}
.ws199{word-spacing:18.661492pt;}
.ws8c{word-spacing:18.745434pt;}
.ws19b{word-spacing:18.820965pt;}
.ws189{word-spacing:19.246049pt;}
.ws124{word-spacing:19.713183pt;}
.ws126{word-spacing:19.713237pt;}
.ws127{word-spacing:19.750038pt;}
.ws125{word-spacing:19.750358pt;}
.ws19e{word-spacing:19.777270pt;}
.ws4c{word-spacing:19.830605pt;}
.ws1{word-spacing:20.224000pt;}
.ws2{word-spacing:20.288000pt;}
.ws173{word-spacing:20.467964pt;}
.ws1c8{word-spacing:21.264797pt;}
.ws1bd{word-spacing:22.380894pt;}
.ws1a5{word-spacing:22.699521pt;}
.ws151{word-spacing:23.071802pt;}
.ws1bf{word-spacing:23.443551pt;}
.ws143{word-spacing:23.914362pt;}
.ws1a4{word-spacing:23.921436pt;}
.ws1be{word-spacing:25.887862pt;}
.ws0{word-spacing:27.290667pt;}
.ws118{word-spacing:27.946667pt;}
.ws1a8{word-spacing:28.969638pt;}
.ws19f{word-spacing:29.501393pt;}
.ws1c9{word-spacing:30.988919pt;}
.ws153{word-spacing:35.399230pt;}
.ws152{word-spacing:36.355641pt;}
.ws185{word-spacing:36.408870pt;}
.ws1a9{word-spacing:38.055869pt;}
.ws186{word-spacing:38.321480pt;}
.ws154{word-spacing:39.703402pt;}
.ws195{word-spacing:42.412844pt;}
.ws155{word-spacing:44.485460pt;}
.ws1ab{word-spacing:44.963879pt;}
.ws1aa{word-spacing:44.999780pt;}
.ws194{word-spacing:45.813513pt;}
.ws1a0{word-spacing:46.291933pt;}
.ws156{word-spacing:49.996991pt;}
.ws157{word-spacing:50.011548pt;}
.ws178{word-spacing:50.171021pt;}
.ws1bb{word-spacing:58.194543pt;}
.ws188{word-spacing:58.422093pt;}
.ws177{word-spacing:58.460421pt;}
.ws187{word-spacing:58.474116pt;}
.ws15e{word-spacing:64.092646pt;}
.ws1c4{word-spacing:64.880814pt;}
.ws1c5{word-spacing:64.889478pt;}
.ws179{word-spacing:65.819089pt;}
.ws17a{word-spacing:65.845783pt;}
.ws1c3{word-spacing:73.710098pt;}
.ws196{word-spacing:74.613601pt;}
.ws1a1{word-spacing:79.365743pt;}
.ws1ac{word-spacing:161.331743pt;}
.ws17b{word-spacing:242.948347pt;}
.ws1c6{word-spacing:300.360149pt;}
._9{margin-left:-1403.817387pt;}
._a{margin-left:-1282.985813pt;}
._d{margin-left:-884.778240pt;}
._c{margin-left:-827.860907pt;}
._b{margin-left:-777.898667pt;}
._8{margin-left:-682.879573pt;}
._e{margin-left:-388.863573pt;}
._1d{margin-left:-26.413924pt;}
._1e{margin-left:-24.466309pt;}
._0{margin-left:-7.162667pt;}
._17{margin-left:-5.952000pt;}
._4{margin-left:-4.784000pt;}
._6{margin-left:-3.285333pt;}
._1{margin-left:-1.728000pt;}
._5{width:1.642667pt;}
._3{width:2.666347pt;}
._11{width:3.695514pt;}
._14{width:11.822015pt;}
._18{width:14.259464pt;}
._f{width:15.878889pt;}
._16{width:17.751314pt;}
._10{width:19.133396pt;}
._7{width:21.124264pt;}
._19{width:24.480785pt;}
._1b{width:26.567998pt;}
._1f{width:27.817579pt;}
._13{width:31.624965pt;}
._15{width:33.733333pt;}
._12{width:35.968000pt;}
._2{width:40.562133pt;}
._1c{width:51.067824pt;}
._1a{width:53.984000pt;}
._20{width:59.888866pt;}
._23{width:77.496167pt;}
._22{width:78.670625pt;}
._21{width:81.143051pt;}
.fsb{font-size:37.194667pt;}
.fsc{font-size:37.333333pt;}
.fs3{font-size:41.066667pt;}
.fsa{font-size:42.506667pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.136000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y154{bottom:252.282667pt;}
.y1e{bottom:252.284000pt;}
.y85{bottom:292.661333pt;}
.y97{bottom:293.400000pt;}
.y13d{bottom:294.057333pt;}
.y1cf{bottom:296.700000pt;}
.y1e3{bottom:296.998667pt;}
.ybc{bottom:301.944000pt;}
.y175{bottom:303.202667pt;}
.y18d{bottom:304.550667pt;}
.y4e{bottom:306.968000pt;}
.y1d{bottom:308.045333pt;}
.y84{bottom:308.661333pt;}
.y96{bottom:309.400000pt;}
.y10b{bottom:309.844000pt;}
.y13c{bottom:310.057333pt;}
.y1ce{bottom:312.700000pt;}
.y1af{bottom:315.417333pt;}
.ybb{bottom:317.944000pt;}
.y174{bottom:319.202667pt;}
.y18c{bottom:320.550667pt;}
.y4d{bottom:322.968000pt;}
.y1c{bottom:324.045333pt;}
.y83{bottom:324.661333pt;}
.y95{bottom:325.400000pt;}
.y10a{bottom:325.844000pt;}
.y13b{bottom:326.057333pt;}
.y1e2{bottom:326.282667pt;}
.y1cd{bottom:328.700000pt;}
.y1ae{bottom:331.417333pt;}
.ye5{bottom:332.525333pt;}
.yba{bottom:333.944000pt;}
.y173{bottom:335.202667pt;}
.y18b{bottom:336.550667pt;}
.y4c{bottom:338.968000pt;}
.y1b{bottom:340.045333pt;}
.y82{bottom:340.661333pt;}
.y94{bottom:341.400000pt;}
.y109{bottom:341.844000pt;}
.y13a{bottom:342.057333pt;}
.y1e1{bottom:342.282667pt;}
.y68{bottom:343.102667pt;}
.y1cc{bottom:344.700000pt;}
.y1ad{bottom:347.417333pt;}
.ye4{bottom:348.525333pt;}
.yad{bottom:349.944000pt;}
.y172{bottom:351.202667pt;}
.y18a{bottom:352.550667pt;}
.y4b{bottom:354.968000pt;}
.y1a{bottom:356.045333pt;}
.y81{bottom:356.661333pt;}
.y93{bottom:357.400000pt;}
.y108{bottom:357.844000pt;}
.y139{bottom:358.057333pt;}
.y67{bottom:359.102667pt;}
.y1cb{bottom:360.700000pt;}
.y1ac{bottom:363.417333pt;}
.ye3{bottom:364.525333pt;}
.yac{bottom:365.944000pt;}
.y171{bottom:367.202667pt;}
.y189{bottom:368.550667pt;}
.y4a{bottom:370.968000pt;}
.y1e0{bottom:371.566667pt;}
.y19{bottom:372.045333pt;}
.y80{bottom:372.661333pt;}
.y92{bottom:373.400000pt;}
.y107{bottom:373.844000pt;}
.y138{bottom:374.057333pt;}
.y66{bottom:375.102667pt;}
.yb9{bottom:378.152000pt;}
.y1ab{bottom:379.417333pt;}
.ye2{bottom:380.525333pt;}
.yab{bottom:381.944000pt;}
.y170{bottom:383.202667pt;}
.y49{bottom:386.968000pt;}
.y1df{bottom:387.566667pt;}
.y18{bottom:388.045333pt;}
.y7f{bottom:388.661333pt;}
.y91{bottom:389.400000pt;}
.y106{bottom:389.844000pt;}
.y1ca{bottom:389.984000pt;}
.y137{bottom:390.057333pt;}
.y65{bottom:391.102667pt;}
.yb8{bottom:394.152000pt;}
.ye1{bottom:396.525333pt;}
.y188{bottom:397.834667pt;}
.yaa{bottom:397.944000pt;}
.y16f{bottom:399.202667pt;}
.y48{bottom:402.968000pt;}
.y17{bottom:404.045333pt;}
.y7e{bottom:404.661333pt;}
.y105{bottom:405.844000pt;}
.y1c9{bottom:405.984000pt;}
.y136{bottom:406.057333pt;}
.y64{bottom:407.102667pt;}
.y1aa{bottom:408.700000pt;}
.yd2{bottom:409.725333pt;}
.yb7{bottom:410.152000pt;}
.ye0{bottom:412.525333pt;}
.y187{bottom:413.834667pt;}
.ya9{bottom:413.944000pt;}
.y16e{bottom:415.202667pt;}
.y1de{bottom:416.849333pt;}
.y47{bottom:418.968000pt;}
.y16{bottom:420.045333pt;}
.y7d{bottom:420.661333pt;}
.y104{bottom:421.844000pt;}
.y1c8{bottom:421.984000pt;}
.y135{bottom:422.057333pt;}
.y63{bottom:423.102667pt;}
.y1a9{bottom:424.700000pt;}
.yd1{bottom:425.725333pt;}
.yb6{bottom:426.152000pt;}
.ydf{bottom:428.525333pt;}
.y186{bottom:429.834667pt;}
.ya8{bottom:429.944000pt;}
.y90{bottom:431.128000pt;}
.y16d{bottom:431.202667pt;}
.y1dd{bottom:432.849333pt;}
.y46{bottom:434.968000pt;}
.y15{bottom:436.045333pt;}
.y7c{bottom:436.661333pt;}
.y103{bottom:437.844000pt;}
.y1c7{bottom:437.984000pt;}
.y134{bottom:438.057333pt;}
.y62{bottom:439.102667pt;}
.y1a8{bottom:440.700000pt;}
.yd0{bottom:441.725333pt;}
.yb5{bottom:442.152000pt;}
.y8f{bottom:443.748000pt;}
.yde{bottom:444.525333pt;}
.y185{bottom:445.834667pt;}
.ya7{bottom:445.944000pt;}
.y16c{bottom:447.202667pt;}
.y45{bottom:450.968000pt;}
.y14{bottom:452.045333pt;}
.y7b{bottom:452.661333pt;}
.y133{bottom:454.057333pt;}
.y61{bottom:455.102667pt;}
.y8e{bottom:456.366667pt;}
.y1a7{bottom:456.700000pt;}
.ycf{bottom:457.725333pt;}
.yb4{bottom:458.152000pt;}
.ydd{bottom:460.525333pt;}
.y102{bottom:461.814667pt;}
.ya6{bottom:461.944000pt;}
.y1dc{bottom:462.133333pt;}
.y16b{bottom:463.202667pt;}
.yd8{bottom:464.617333pt;}
.y44{bottom:466.968000pt;}
.y1c6{bottom:467.268000pt;}
.y13{bottom:468.045333pt;}
.y7a{bottom:468.661333pt;}
.y8d{bottom:468.986667pt;}
.y132{bottom:470.057333pt;}
.y60{bottom:471.102667pt;}
.yce{bottom:473.725333pt;}
.yb3{bottom:474.152000pt;}
.y184{bottom:475.117333pt;}
.ydc{bottom:476.525333pt;}
.ya5{bottom:477.944000pt;}
.y1db{bottom:478.133333pt;}
.y16a{bottom:479.202667pt;}
.y8c{bottom:481.605333pt;}
.y43{bottom:482.968000pt;}
.y1c5{bottom:483.268000pt;}
.y79{bottom:484.661333pt;}
.y1a6{bottom:485.984000pt;}
.y131{bottom:486.057333pt;}
.y5f{bottom:487.102667pt;}
.ycd{bottom:489.725333pt;}
.yb2{bottom:490.152000pt;}
.y183{bottom:491.117333pt;}
.ya4{bottom:493.944000pt;}
.y8b{bottom:494.225333pt;}
.y169{bottom:495.202667pt;}
.y12{bottom:496.000000pt;}
.y101{bottom:496.421333pt;}
.y42{bottom:498.968000pt;}
.y1c4{bottom:499.268000pt;}
.ydb{bottom:500.496000pt;}
.y78{bottom:500.661333pt;}
.y1a5{bottom:501.984000pt;}
.y130{bottom:502.057333pt;}
.y5e{bottom:503.102667pt;}
.ycc{bottom:505.725333pt;}
.y8a{bottom:506.844000pt;}
.y182{bottom:507.117333pt;}
.y1da{bottom:507.417333pt;}
.ya3{bottom:509.944000pt;}
.y168{bottom:511.202667pt;}
.yd7{bottom:511.529333pt;}
.y100{bottom:512.421333pt;}
.yb1{bottom:514.121333pt;}
.y41{bottom:514.968000pt;}
.y1c3{bottom:515.268000pt;}
.y153{bottom:516.661333pt;}
.y1a4{bottom:517.984000pt;}
.y12f{bottom:518.057333pt;}
.y5d{bottom:519.102667pt;}
.y89{bottom:519.464000pt;}
.ycb{bottom:521.725333pt;}
.y181{bottom:523.117333pt;}
.y1d9{bottom:523.417333pt;}
.yd6{bottom:524.149333pt;}
.y77{bottom:524.632000pt;}
.ya2{bottom:525.944000pt;}
.yff{bottom:528.421333pt;}
.y40{bottom:530.968000pt;}
.y1c2{bottom:531.268000pt;}
.y88{bottom:532.082667pt;}
.y152{bottom:532.661333pt;}
.y1a3{bottom:533.984000pt;}
.y12e{bottom:534.057333pt;}
.y5c{bottom:535.102667pt;}
.yd5{bottom:536.768000pt;}
.yca{bottom:537.725333pt;}
.y167{bottom:540.486667pt;}
.yfe{bottom:544.421333pt;}
.y87{bottom:544.702667pt;}
.y3f{bottom:546.968000pt;}
.y1c1{bottom:547.268000pt;}
.y151{bottom:548.661333pt;}
.yd4{bottom:549.388000pt;}
.ya1{bottom:549.913333pt;}
.y12d{bottom:550.057333pt;}
.y5b{bottom:551.102667pt;}
.y180{bottom:552.401333pt;}
.y1d8{bottom:552.700000pt;}
.yc9{bottom:553.725333pt;}
.yb0{bottom:555.365333pt;}
.y166{bottom:556.486667pt;}
.y86{bottom:557.321333pt;}
.y76{bottom:557.581333pt;}
.yfd{bottom:560.421333pt;}
.yd3{bottom:562.006667pt;}
.y3e{bottom:562.968000pt;}
.y1a2{bottom:563.268000pt;}
.y150{bottom:564.661333pt;}
.y11{bottom:565.154667pt;}
.y5a{bottom:567.102667pt;}
.yaf{bottom:567.985333pt;}
.y17f{bottom:568.401333pt;}
.y1d7{bottom:568.700000pt;}
.yc8{bottom:569.725333pt;}
.y165{bottom:572.486667pt;}
.y75{bottom:573.581333pt;}
.y12c{bottom:574.026667pt;}
.yfc{bottom:576.421333pt;}
.y1c0{bottom:576.550667pt;}
.y3d{bottom:578.968000pt;}
.y1a1{bottom:579.268000pt;}
.y10{bottom:579.821333pt;}
.yae{bottom:580.604000pt;}
.y59{bottom:583.102667pt;}
.y17e{bottom:584.401333pt;}
.yc7{bottom:585.725333pt;}
.y164{bottom:588.486667pt;}
.y14f{bottom:588.632000pt;}
.y74{bottom:589.581333pt;}
.yfb{bottom:592.421333pt;}
.y1bf{bottom:592.550667pt;}
.ya0{bottom:593.224000pt;}
.yf{bottom:594.488000pt;}
.y3c{bottom:594.968000pt;}
.y1a0{bottom:595.268000pt;}
.y1d6{bottom:597.984000pt;}
.y58{bottom:599.102667pt;}
.y17d{bottom:600.401333pt;}
.yc6{bottom:601.725333pt;}
.y163{bottom:604.486667pt;}
.y73{bottom:605.581333pt;}
.y9f{bottom:605.842667pt;}
.yfa{bottom:608.421333pt;}
.y1be{bottom:608.550667pt;}
.ye{bottom:609.154667pt;}
.y3b{bottom:610.968000pt;}
.y57{bottom:615.102667pt;}
.y17c{bottom:616.401333pt;}
.yc5{bottom:617.725333pt;}
.y9e{bottom:618.462667pt;}
.y12b{bottom:619.792000pt;}
.y162{bottom:620.486667pt;}
.y72{bottom:621.581333pt;}
.y14e{bottom:622.857333pt;}
.yd{bottom:623.821333pt;}
.yf9{bottom:624.421333pt;}
.y19f{bottom:624.550667pt;}
.y3a{bottom:626.968000pt;}
.y1d5{bottom:627.266667pt;}
.y12a{bottom:630.418667pt;}
.y9d{bottom:631.081333pt;}
.y56{bottom:631.102667pt;}
.yc4{bottom:633.725333pt;}
.y161{bottom:636.486667pt;}
.y71{bottom:637.581333pt;}
.y1bd{bottom:637.834667pt;}
.yc{bottom:638.488000pt;}
.y14d{bottom:638.857333pt;}
.y19e{bottom:640.550667pt;}
.y129{bottom:641.045333pt;}
.y39{bottom:642.968000pt;}
.y1d4{bottom:643.266667pt;}
.y9c{bottom:643.701333pt;}
.y17b{bottom:645.685333pt;}
.y55{bottom:647.102667pt;}
.yc3{bottom:649.725333pt;}
.y128{bottom:651.672000pt;}
.y160{bottom:652.486667pt;}
.yb{bottom:653.154667pt;}
.y70{bottom:653.581333pt;}
.y1bc{bottom:653.834667pt;}
.y14c{bottom:654.857333pt;}
.y9b{bottom:656.320000pt;}
.yf8{bottom:656.421333pt;}
.y19d{bottom:656.550667pt;}
.y38{bottom:658.968000pt;}
.y17a{bottom:661.685333pt;}
.y127{bottom:662.298667pt;}
.y54{bottom:663.102667pt;}
.yc2{bottom:665.725333pt;}
.ya{bottom:667.821333pt;}
.y15f{bottom:668.486667pt;}
.y9a{bottom:668.940000pt;}
.y6f{bottom:669.581333pt;}
.y1bb{bottom:669.834667pt;}
.y14b{bottom:670.857333pt;}
.yf7{bottom:672.421333pt;}
.y19c{bottom:672.550667pt;}
.y126{bottom:672.926667pt;}
.y37{bottom:674.968000pt;}
.y179{bottom:677.685333pt;}
.y53{bottom:679.102667pt;}
.y99{bottom:681.558667pt;}
.yc1{bottom:681.725333pt;}
.y9{bottom:682.488000pt;}
.y125{bottom:683.553333pt;}
.y15e{bottom:684.486667pt;}
.y1ba{bottom:685.834667pt;}
.y14a{bottom:686.857333pt;}
.y36{bottom:690.968000pt;}
.y6e{bottom:693.550667pt;}
.y178{bottom:693.685333pt;}
.y98{bottom:694.178667pt;}
.y124{bottom:694.180000pt;}
.y52{bottom:695.102667pt;}
.yc0{bottom:697.725333pt;}
.y8{bottom:701.138667pt;}
.y19b{bottom:701.834667pt;}
.yf6{bottom:704.421333pt;}
.y123{bottom:704.806667pt;}
.y35{bottom:706.968000pt;}
.y177{bottom:709.685333pt;}
.y149{bottom:710.826667pt;}
.y51{bottom:711.102667pt;}
.ybf{bottom:713.725333pt;}
.y15d{bottom:713.769333pt;}
.y1b9{bottom:715.117333pt;}
.y122{bottom:715.433333pt;}
.y19a{bottom:717.834667pt;}
.yda{bottom:719.073333pt;}
.yf5{bottom:720.421333pt;}
.y34{bottom:722.968000pt;}
.y176{bottom:725.685333pt;}
.y121{bottom:726.060000pt;}
.ybe{bottom:729.725333pt;}
.y15c{bottom:729.769333pt;}
.y1b8{bottom:731.117333pt;}
.y199{bottom:733.834667pt;}
.y50{bottom:735.073333pt;}
.y6d{bottom:735.804000pt;}
.yf4{bottom:736.421333pt;}
.y120{bottom:736.686667pt;}
.y33{bottom:738.968000pt;}
.y148{bottom:745.052000pt;}
.y15b{bottom:745.769333pt;}
.y1b7{bottom:747.117333pt;}
.y11f{bottom:747.313333pt;}
.y7{bottom:747.686667pt;}
.y6c{bottom:748.422667pt;}
.yd9{bottom:749.694667pt;}
.y198{bottom:749.834667pt;}
.yf3{bottom:752.421333pt;}
.ybd{bottom:753.694667pt;}
.y32{bottom:754.968000pt;}
.y11e{bottom:757.940000pt;}
.y6b{bottom:761.042667pt;}
.y147{bottom:761.052000pt;}
.y15a{bottom:761.769333pt;}
.y1b6{bottom:763.117333pt;}
.y6{bottom:765.686667pt;}
.y4f{bottom:765.694667pt;}
.y197{bottom:765.834667pt;}
.yf2{bottom:768.421333pt;}
.y11d{bottom:768.568000pt;}
.y31{bottom:770.968000pt;}
.y1ec{bottom:771.266667pt;}
.y6a{bottom:773.661333pt;}
.y159{bottom:777.769333pt;}
.y1d3{bottom:779.117333pt;}
.y11c{bottom:779.194667pt;}
.y196{bottom:781.834667pt;}
.y5{bottom:783.686667pt;}
.yf1{bottom:784.421333pt;}
.y69{bottom:786.281333pt;}
.y30{bottom:786.968000pt;}
.y146{bottom:787.828000pt;}
.y11b{bottom:789.821333pt;}
.y1b5{bottom:792.401333pt;}
.y158{bottom:793.769333pt;}
.y1d2{bottom:795.117333pt;}
.y145{bottom:798.454667pt;}
.yf0{bottom:800.421333pt;}
.y11a{bottom:800.448000pt;}
.y1eb{bottom:800.550667pt;}
.y2f{bottom:802.968000pt;}
.y1b4{bottom:808.401333pt;}
.y144{bottom:809.082667pt;}
.y157{bottom:809.769333pt;}
.y119{bottom:811.074667pt;}
.y195{bottom:811.117333pt;}
.yef{bottom:816.421333pt;}
.y1ea{bottom:816.550667pt;}
.y2e{bottom:818.968000pt;}
.y118{bottom:821.701333pt;}
.y1b3{bottom:824.401333pt;}
.y194{bottom:827.117333pt;}
.yee{bottom:832.421333pt;}
.y4{bottom:833.566667pt;}
.y2d{bottom:834.968000pt;}
.y156{bottom:837.725333pt;}
.y1b2{bottom:840.401333pt;}
.y143{bottom:840.962667pt;}
.y117{bottom:842.954667pt;}
.y1e9{bottom:845.834667pt;}
.y2c{bottom:850.968000pt;}
.y142{bottom:851.589333pt;}
.yed{bottom:856.392000pt;}
.y193{bottom:856.401333pt;}
.y3{bottom:856.889333pt;}
.y1e8{bottom:861.834667pt;}
.y141{bottom:862.216000pt;}
.y2b{bottom:866.968000pt;}
.y1d1{bottom:869.685333pt;}
.y192{bottom:872.401333pt;}
.y140{bottom:872.842667pt;}
.y155{bottom:874.998667pt;}
.y1e7{bottom:877.834667pt;}
.y2{bottom:878.865333pt;}
.y2a{bottom:882.968000pt;}
.y116{bottom:883.446667pt;}
.y13f{bottom:883.469333pt;}
.y1b1{bottom:885.685333pt;}
.y191{bottom:888.401333pt;}
.yec{bottom:890.998667pt;}
.y115{bottom:894.073333pt;}
.y13e{bottom:894.096000pt;}
.y29{bottom:898.968000pt;}
.y1b0{bottom:901.685333pt;}
.y114{bottom:904.700000pt;}
.yeb{bottom:906.998667pt;}
.y1e6{bottom:907.117333pt;}
.y28{bottom:914.968000pt;}
.y113{bottom:915.326667pt;}
.y190{bottom:917.685333pt;}
.yea{bottom:922.998667pt;}
.y1{bottom:924.765333pt;}
.y112{bottom:925.953333pt;}
.y27{bottom:930.968000pt;}
.y18f{bottom:933.685333pt;}
.y1e5{bottom:936.401333pt;}
.y111{bottom:936.581333pt;}
.ye9{bottom:938.998667pt;}
.y26{bottom:946.968000pt;}
.y110{bottom:947.208000pt;}
.y18e{bottom:949.685333pt;}
.ye8{bottom:954.998667pt;}
.y10f{bottom:957.834667pt;}
.y25{bottom:962.968000pt;}
.y1d0{bottom:965.685333pt;}
.y10e{bottom:968.461333pt;}
.ye7{bottom:970.998667pt;}
.y24{bottom:978.968000pt;}
.y10d{bottom:979.088000pt;}
.y1e4{bottom:981.685333pt;}
.ye6{bottom:986.998667pt;}
.y10c{bottom:989.714667pt;}
.y23{bottom:994.968000pt;}
.y22{bottom:1010.968000pt;}
.y1f{bottom:1083.999920pt;}
.y20{bottom:1094.666587pt;}
.y21{bottom:1105.333360pt;}
.h10{height:25.813099pt;}
.h4{height:27.678933pt;}
.hc{height:31.880000pt;}
.h6{height:33.600000pt;}
.h7{height:36.000000pt;}
.he{height:37.013333pt;}
.hf{height:37.333333pt;}
.h9{height:39.852000pt;}
.h14{height:39.937333pt;}
.h12{height:40.000000pt;}
.h11{height:40.053333pt;}
.hd{height:41.066667pt;}
.h5{height:44.000000pt;}
.ha{height:44.500000pt;}
.hb{height:44.800000pt;}
.h8{height:52.266667pt;}
.h13{height:53.420000pt;}
.h3{height:56.821333pt;}
.h2{height:64.101333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:91.653880pt;}
.x9{left:133.428000pt;}
.x1e{left:140.069333pt;}
.x15{left:143.308000pt;}
.x2{left:149.368000pt;}
.x11{left:153.353333pt;}
.x16{left:159.994667pt;}
.x3{left:165.057333pt;}
.xe{left:166.126667pt;}
.x14{left:173.125333pt;}
.x5{left:178.305333pt;}
.x1{left:183.926667pt;}
.xf{left:186.052000pt;}
.x1f{left:193.430667pt;}
.x7{left:205.193333pt;}
.x19{left:208.464000pt;}
.x6{left:221.286667pt;}
.x1a{left:245.234667pt;}
.x4{left:313.320000pt;}
.x8{left:353.341333pt;}
.x17{left:364.194667pt;}
.x13{left:373.860000pt;}
.xa{left:377.180000pt;}
.x18{left:403.573333pt;}
.x12{left:406.557333pt;}
.x10{left:409.878667pt;}
.x1d{left:419.852000pt;}
.x1c{left:511.760000pt;}
.xb{left:567.994467pt;}
.xd{left:574.261240pt;}
.x1b{left:614.268000pt;}
}




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