
    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_c570be975813aaa7cc93a192.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_da6a4f337cebc2a6558ffb0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_0a5b9d8ee170ac453bba20ef.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_864304cac5a6fffaed6297e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_c196f7fd9ea8b2d9e4a5e6ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_562e9bd6134ad722bead7b87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860352;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_6fa8de961cecad9062c98a9a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_67cd2af4e9528daf3db3842f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.580000;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_cf36c9889f350159166c82d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852000;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_331d4fa341c74e7a0547c816.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859000;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_6ccf935d08cf3bed764b87b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.237029;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_7dcffd18b6db9a4533a83668.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_e5e4abcd93458a29a1d618bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.237029;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_98705060a6ecbfbf28166d1b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.256000;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;}
.m1{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);}
.v4{vertical-align:-23.910000px;}
.v2{vertical-align:-19.524000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:23.910000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001002px;}
.ls5{letter-spacing:2.987100px;}
.ls7{letter-spacing:10.431405px;}
.ls6{letter-spacing:16.434600px;}
.ls4{letter-spacing:17.894888px;}
.lsb{letter-spacing:19.061100px;}
.lsa{letter-spacing:21.005100px;}
.ls8{letter-spacing:21.983100px;}
.ls2{letter-spacing:29.890200px;}
.ls9{letter-spacing:50.182070px;}
.ls3{letter-spacing:85.457012px;}
.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;}
}
.ws45{word-spacing:-98.146561px;}
.ws75{word-spacing:-59.775600px;}
.ws68{word-spacing:-41.842800px;}
.ws40{word-spacing:-29.227872px;}
.ws98{word-spacing:-20.310841px;}
.wse4{word-spacing:-17.932800px;}
.ws3f{word-spacing:-17.049373px;}
.ws76{word-spacing:-14.943900px;}
.ws42{word-spacing:-12.178499px;}
.wsad{word-spacing:-10.934776px;}
.ws67{word-spacing:-10.460700px;}
.wsba{word-spacing:-9.940706px;}
.ws44{word-spacing:-8.882411px;}
.ws4d{word-spacing:-3.586536px;}
.ws56{word-spacing:-3.466985px;}
.wsdd{word-spacing:-3.407209px;}
.ws4{word-spacing:-3.227904px;}
.ws65{word-spacing:-3.168107px;}
.wsd7{word-spacing:-3.048556px;}
.ws86{word-spacing:-2.929004px;}
.wsbd{word-spacing:-2.749678px;}
.ws99{word-spacing:-2.689920px;}
.wsff{word-spacing:-2.636122px;}
.ws7d{word-spacing:-2.630126px;}
.wsb1{word-spacing:-2.570351px;}
.wsb4{word-spacing:-2.510575px;}
.ws87{word-spacing:-2.450800px;}
.wsea{word-spacing:-2.259533px;}
.ws64{word-spacing:-2.211697px;}
.ws3e{word-spacing:-2.092146px;}
.ws39{word-spacing:-2.032370px;}
.ws7e{word-spacing:-1.972595px;}
.ws78{word-spacing:-1.912819px;}
.ws93{word-spacing:-1.733492px;}
.ws54{word-spacing:-1.494390px;}
.wse5{word-spacing:-1.452557px;}
.wsc5{word-spacing:-1.398758px;}
.ws52{word-spacing:-1.374839px;}
.ws81{word-spacing:-1.344960px;}
.ws9d{word-spacing:-1.255288px;}
.wseb{word-spacing:-1.237363px;}
.ws94{word-spacing:-1.195512px;}
.ws7f{word-spacing:-1.135736px;}
.ws9{word-spacing:-1.129766px;}
.ws88{word-spacing:-1.075961px;}
.wsa3{word-spacing:-1.016185px;}
.wsd5{word-spacing:-0.956410px;}
.wsf9{word-spacing:-0.914573px;}
.ws32{word-spacing:-0.896634px;}
.ws13{word-spacing:-0.860774px;}
.ws100{word-spacing:-0.806976px;}
.wse2{word-spacing:-0.777083px;}
.ws5c{word-spacing:-0.717307px;}
.wsf3{word-spacing:-0.591782px;}
.ws95{word-spacing:-0.537980px;}
.ws3c{word-spacing:-0.478205px;}
.ws101{word-spacing:-0.430387px;}
.ws62{word-spacing:-0.418429px;}
.wsa7{word-spacing:-0.358654px;}
.ws37{word-spacing:-0.298878px;}
.ws6{word-spacing:-0.268992px;}
.ws63{word-spacing:-0.239102px;}
.wsb{word-spacing:-0.215194px;}
.ws79{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053798px;}
.ws6a{word-spacing:-0.041843px;}
.ws1{word-spacing:-0.003600px;}
.ws0{word-spacing:0.000000px;}
.wsb9{word-spacing:0.035536px;}
.wsac{word-spacing:0.039088px;}
.wsf1{word-spacing:0.053798px;}
.wse0{word-spacing:0.056066px;}
.ws1e{word-spacing:0.059776px;}
.ws3d{word-spacing:0.119551px;}
.wse1{word-spacing:0.179327px;}
.wsef{word-spacing:0.215194px;}
.wsb2{word-spacing:0.239102px;}
.ws16{word-spacing:0.298878px;}
.ws36{word-spacing:0.358654px;}
.wsaa{word-spacing:0.376589px;}
.wsa{word-spacing:0.430387px;}
.ws35{word-spacing:0.478205px;}
.wsda{word-spacing:0.537980px;}
.wse9{word-spacing:0.591782px;}
.wsb5{word-spacing:0.657532px;}
.ws60{word-spacing:0.777083px;}
.ws24{word-spacing:0.836858px;}
.wsd2{word-spacing:0.896634px;}
.ws5f{word-spacing:0.956410px;}
.ws1b{word-spacing:1.016185px;}
.wse7{word-spacing:1.022170px;}
.wsa2{word-spacing:1.135736px;}
.wsd0{word-spacing:1.195512px;}
.ws66{word-spacing:1.237363px;}
.ws1d{word-spacing:1.255288px;}
.wsb6{word-spacing:1.315063px;}
.ws73{word-spacing:1.374839px;}
.wsc{word-spacing:1.398758px;}
.ws1c{word-spacing:1.434614px;}
.ws8e{word-spacing:1.494390px;}
.ws14{word-spacing:1.506355px;}
.ws2a{word-spacing:1.554166px;}
.ws5{word-spacing:1.560154px;}
.ws83{word-spacing:1.613941px;}
.ws102{word-spacing:1.613952px;}
.ws61{word-spacing:1.673717px;}
.ws57{word-spacing:1.733492px;}
.wsa5{word-spacing:1.793268px;}
.ws8c{word-spacing:1.853044px;}
.wsfb{word-spacing:1.882944px;}
.ws89{word-spacing:1.912819px;}
.ws85{word-spacing:1.972595px;}
.ws97{word-spacing:1.990541px;}
.wsc3{word-spacing:2.032370px;}
.wsf0{word-spacing:2.044339px;}
.ws90{word-spacing:2.151922px;}
.ws9c{word-spacing:2.211697px;}
.ws10{word-spacing:2.259533px;}
.ws2d{word-spacing:2.271473px;}
.ws8a{word-spacing:2.331248px;}
.ws58{word-spacing:2.391024px;}
.wsfe{word-spacing:2.420928px;}
.ws53{word-spacing:2.450800px;}
.wsd4{word-spacing:2.510575px;}
.wsb7{word-spacing:2.570351px;}
.ws3a{word-spacing:2.630126px;}
.ws5e{word-spacing:2.689902px;}
.ws5d{word-spacing:2.749678px;}
.ws7c{word-spacing:2.809453px;}
.wsc0{word-spacing:2.869229px;}
.wsf7{word-spacing:2.905114px;}
.ws38{word-spacing:2.929004px;}
.ws9b{word-spacing:2.988780px;}
.ws30{word-spacing:3.048556px;}
.wsdc{word-spacing:3.108331px;}
.wsfd{word-spacing:3.174106px;}
.ws9a{word-spacing:3.227882px;}
.wsbe{word-spacing:3.347434px;}
.ws26{word-spacing:3.407209px;}
.ws50{word-spacing:3.466985px;}
.ws4e{word-spacing:3.526760px;}
.wsbc{word-spacing:3.550694px;}
.ws34{word-spacing:3.646312px;}
.wsb3{word-spacing:3.706087px;}
.wse8{word-spacing:3.712090px;}
.ws55{word-spacing:3.885414px;}
.ws74{word-spacing:3.920578px;}
.ws7{word-spacing:3.927283px;}
.ws77{word-spacing:3.945190px;}
.ws1a{word-spacing:4.004965px;}
.ws7a{word-spacing:4.027811px;}
.wsec{word-spacing:4.034880px;}
.ws7b{word-spacing:4.064741px;}
.wsce{word-spacing:4.124516px;}
.wsd1{word-spacing:4.184292px;}
.ws25{word-spacing:4.244068px;}
.ws8{word-spacing:4.250074px;}
.ws2b{word-spacing:4.303843px;}
.ws82{word-spacing:4.465267px;}
.ws8b{word-spacing:4.483170px;}
.wsdb{word-spacing:4.542946px;}
.wsc4{word-spacing:4.572864px;}
.ws23{word-spacing:4.602721px;}
.wsde{word-spacing:4.722272px;}
.ws27{word-spacing:4.782048px;}
.wsfc{word-spacing:4.895654px;}
.ws80{word-spacing:4.961375px;}
.ws3b{word-spacing:5.021150px;}
.wsee{word-spacing:5.057050px;}
.ws29{word-spacing:5.080926px;}
.wsbf{word-spacing:5.140702px;}
.ws2e{word-spacing:5.200477px;}
.ws21{word-spacing:5.260253px;}
.wsf4{word-spacing:5.272243px;}
.ws28{word-spacing:5.320028px;}
.ws12{word-spacing:5.326042px;}
.ws92{word-spacing:5.379804px;}
.ws18{word-spacing:5.439580px;}
.ws19{word-spacing:5.449100px;}
.ws11{word-spacing:5.541235px;}
.wsdf{word-spacing:5.559131px;}
.wsae{word-spacing:5.595034px;}
.ws84{word-spacing:5.678682px;}
.ws4c{word-spacing:5.702630px;}
.ws9f{word-spacing:6.037336px;}
.ws5a{word-spacing:6.097111px;}
.ws20{word-spacing:6.156887px;}
.wsa9{word-spacing:6.186816px;}
.ws22{word-spacing:6.216662px;}
.ws4f{word-spacing:6.276438px;}
.ws2f{word-spacing:6.455765px;}
.wsc2{word-spacing:6.515540px;}
.wsa4{word-spacing:6.635092px;}
.ws33{word-spacing:6.754643px;}
.ws51{word-spacing:6.933970px;}
.ws2c{word-spacing:7.053521px;}
.wsa6{word-spacing:7.113296px;}
.wsed{word-spacing:7.155187px;}
.wsd9{word-spacing:7.232848px;}
.ws1f{word-spacing:7.292623px;}
.wsf{word-spacing:7.370381px;}
.ws31{word-spacing:7.471950px;}
.wsd3{word-spacing:7.531726px;}
.wsb0{word-spacing:7.651277px;}
.wse6{word-spacing:7.693171px;}
.ws17{word-spacing:7.711052px;}
.wsf5{word-spacing:7.746970px;}
.wscf{word-spacing:7.890379px;}
.ws96{word-spacing:7.950155px;}
.wsd{word-spacing:8.177357px;}
.ws41{word-spacing:8.212616px;}
.wsaf{word-spacing:8.249033px;}
.ws8d{word-spacing:8.368584px;}
.wsf8{word-spacing:8.500147px;}
.ws5b{word-spacing:8.607686px;}
.wsa8{word-spacing:8.667462px;}
.wsc1{word-spacing:8.727238px;}
.wsfa{word-spacing:8.822938px;}
.wse{word-spacing:9.468518px;}
.wsa0{word-spacing:9.623872px;}
.wsa1{word-spacing:9.683647px;}
.wsf6{word-spacing:10.329293px;}
.wsd6{word-spacing:10.759608px;}
.wsd8{word-spacing:10.998710px;}
.ws43{word-spacing:11.512858px;}
.wsf2{word-spacing:13.288205px;}
.ws8f{word-spacing:16.402424px;}
.ws3{word-spacing:16.432954px;}
.wse3{word-spacing:16.985923px;}
.ws91{word-spacing:20.072324px;}
.ws9e{word-spacing:31.322414px;}
.ws6b{word-spacing:39.752248px;}
.wsc8{word-spacing:39.753998px;}
.ws71{word-spacing:39.794248px;}
.ws59{word-spacing:44.831700px;}
.wsc9{word-spacing:50.211998px;}
.ws15{word-spacing:53.798400px;}
.ws6c{word-spacing:55.970248px;}
.wsca{word-spacing:60.669802px;}
.wscd{word-spacing:60.673343px;}
.ws47{word-spacing:70.802266px;}
.ws48{word-spacing:72.767462px;}
.ws69{word-spacing:75.798644px;}
.ws4a{word-spacing:75.939849px;}
.wscc{word-spacing:81.547057px;}
.ws6d{word-spacing:82.140644px;}
.wscb{word-spacing:82.744697px;}
.ws49{word-spacing:86.199091px;}
.ws46{word-spacing:86.721255px;}
.ws6e{word-spacing:88.560644px;}
.wsb8{word-spacing:90.529900px;}
.wsc7{word-spacing:92.055202px;}
.ws70{word-spacing:93.184495px;}
.wsab{word-spacing:105.298082px;}
.wsbb{word-spacing:163.105665px;}
.ws72{word-spacing:173.401648px;}
.wsc6{word-spacing:239.054552px;}
.ws4b{word-spacing:404.198946px;}
.ws6f{word-spacing:870.916495px;}
._b{margin-left:-85.457012px;}
._1{margin-left:-7.058330px;}
._8{margin-left:-5.379804px;}
._4{margin-left:-4.357670px;}
._22{margin-left:-3.287658px;}
._0{margin-left:-2.151930px;}
._5{margin-left:-1.075974px;}
._38{width:1.362612px;}
._2{width:2.964724px;}
._7{width:9.384761px;}
._6{width:10.520514px;}
._3a{width:12.014904px;}
._3{width:14.202772px;}
._a{width:15.481889px;}
._21{width:17.334932px;}
._20{width:19.486854px;}
._c{width:21.207556px;}
._39{width:23.611384px;}
._4f{width:26.899200px;}
._4e{width:29.911910px;}
._48{width:49.247028px;}
._1f{width:50.692583px;}
._45{width:52.534594px;}
._1b{width:56.028049px;}
._46{width:60.673298px;}
._30{width:64.169144px;}
._31{width:65.881481px;}
._4d{width:70.530770px;}
._9{width:71.731200px;}
._1c{width:73.849751px;}
._10{width:79.794290px;}
._47{width:81.589898px;}
._32{width:84.947351px;}
._49{width:86.237144px;}
._2c{width:89.337000px;}
._3b{width:90.501276px;}
._1a{width:92.616497px;}
._37{width:95.124148px;}
._29{width:98.957700px;}
._19{width:101.991128px;}
._42{width:103.662197px;}
._28{width:105.588148px;}
._27{width:110.257800px;}
._4b{width:112.974098px;}
._1d{width:116.221754px;}
._2f{width:119.709493px;}
._f{width:122.160290px;}
._43{width:123.436898px;}
._4a{width:133.900898px;}
._d{width:141.996290px;}
._44{width:144.358898px;}
._1e{width:147.809489px;}
._4c{width:154.822898px;}
._e{width:160.548290px;}
._41{width:163.959079px;}
._26{width:173.398230px;}
._40{width:174.417079px;}
._25{width:178.644197px;}
._34{width:183.406286px;}
._17{width:190.170497px;}
._16{width:197.209062px;}
._18{width:199.109489px;}
._14{width:218.207779px;}
._3f{width:225.555679px;}
._33{width:229.735249px;}
._15{width:243.084600px;}
._3d{width:245.301079px;}
._2e{width:248.337940px;}
._2b{width:254.715994px;}
._2d{width:258.248341px;}
._13{width:260.094600px;}
._2a{width:261.142594px;}
._3e{width:266.223079px;}
._11{width:312.792600px;}
._36{width:327.942394px;}
._12{width:331.350600px;}
._35{width:352.911362px;}
._24{width:364.533708px;}
._23{width:391.253252px;}
._3c{width:408.843768px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:28.709619px;}
.fsd{font-size:31.580574px;}
.fsc{font-size:33.851401px;}
.fs10{font-size:35.887024px;}
.fs7{font-size:39.302702px;}
.fse{font-size:39.475726px;}
.fsb{font-size:41.842800px;}
.fs6{font-size:43.807550px;}
.fsa{font-size:44.233800px;}
.fs9{font-size:50.533200px;}
.fs2{font-size:53.798400px;}
.fs8{font-size:56.148449px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:61.328678px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs5{font-size:105.136229px;}
.y0{bottom:0.000000px;}
.y117{bottom:0.803975px;}
.y196{bottom:5.458871px;}
.y14a{bottom:7.711622px;}
.y19f{bottom:11.049233px;}
.y116{bottom:11.382538px;}
.y11b{bottom:11.470027px;}
.y195{bottom:14.880838px;}
.y154{bottom:15.591165px;}
.y149{bottom:17.925695px;}
.y197{bottom:19.402860px;}
.y115{bottom:21.961101px;}
.y14b{bottom:22.779846px;}
.y70{bottom:30.458886px;}
.y198{bottom:30.844490px;}
.y161{bottom:30.895393px;}
.y114{bottom:32.539664px;}
.y14c{bottom:34.292493px;}
.y77{bottom:36.155803px;}
.y156{bottom:41.200082px;}
.y160{bottom:41.697493px;}
.y6f{bottom:42.059765px;}
.y199{bottom:42.286121px;}
.y113{bottom:43.118227px;}
.y14d{bottom:45.805141px;}
.y1a2{bottom:46.099997px;}
.y15f{bottom:52.499594px;}
.y6e{bottom:53.659942px;}
.y112{bottom:53.696790px;}
.y19a{bottom:53.727751px;}
.y57{bottom:54.438112px;}
.y59{bottom:54.446874px;}
.y14e{bottom:57.317789px;}
.y1a1{bottom:59.448566px;}
.y157{bottom:59.620319px;}
.y15e{bottom:63.301695px;}
.y66{bottom:63.997490px;}
.y111{bottom:64.275353px;}
.y6d{bottom:65.106413px;}
.y19b{bottom:65.169381px;}
.y14f{bottom:68.830437px;}
.y1a3{bottom:72.797135px;}
.y15d{bottom:73.921165px;}
.y110{bottom:74.853916px;}
.y61{bottom:75.596263px;}
.y19c{bottom:76.611011px;}
.y6c{bottom:76.859593px;}
.y158{bottom:78.040556px;}
.y150{bottom:80.343085px;}
.y58{bottom:82.930315px;}
.y15c{bottom:84.540634px;}
.y11d{bottom:85.105539px;}
.y10f{bottom:85.432479px;}
.y19d{bottom:88.052642px;}
.y6b{bottom:88.461174px;}
.y60{bottom:88.657692px;}
.y151{bottom:91.855733px;}
.y15b{bottom:95.160104px;}
.y11c{bottom:95.684102px;}
.y10e{bottom:96.011042px;}
.y159{bottom:96.460792px;}
.y6a{bottom:99.290720px;}
.y19e{bottom:99.494272px;}
.y65{bottom:99.866237px;}
.y1a0{bottom:102.787728px;}
.y152{bottom:103.368381px;}
.y52{bottom:103.432085px;}
.y15a{bottom:105.779574px;}
.y10d{bottom:106.589604px;}
.y7a{bottom:110.401005px;}
.y69{bottom:110.583486px;}
.y64{bottom:111.081799px;}
.y153{bottom:114.881029px;}
.y11a{bottom:116.197817px;}
.y181{bottom:116.549486px;}
.y10c{bottom:117.168167px;}
.y155{bottom:118.353739px;}
.y63{bottom:122.002586px;}
.y18a{bottom:122.139848px;}
.y68{bottom:123.265916px;}
.y180{bottom:125.971453px;}
.y10b{bottom:127.746730px;}
.y182{bottom:130.493474px;}
.y119{bottom:131.366588px;}
.y62{bottom:133.604166px;}
.y67{bottom:134.867496px;}
.y13d{bottom:135.444215px;}
.y10a{bottom:138.325293px;}
.y18d{bottom:139.392520px;}
.y183{bottom:141.935105px;}
.y118{bottom:141.945151px;}
.y53{bottom:142.833376px;}
.y142{bottom:143.323759px;}
.y13c{bottom:145.658289px;}
.y83{bottom:146.546280px;}
.y18e{bottom:148.291566px;}
.y109{bottom:148.903856px;}
.y13e{bottom:150.512439px;}
.y184{bottom:153.376735px;}
.y71{bottom:154.589481px;}
.y18f{bottom:157.190612px;}
.y108{bottom:159.482419px;}
.y185{bottom:164.818365px;}
.y147{bottom:165.862636px;}
.y190{bottom:166.089658px;}
.y107{bottom:170.060982px;}
.y18c{bottom:170.539180px;}
.y144{bottom:173.537735px;}
.y191{bottom:174.988703px;}
.y186{bottom:176.259996px;}
.y81{bottom:176.522294px;}
.y106{bottom:180.639545px;}
.y13f{bottom:181.212834px;}
.y192{bottom:183.887749px;}
.y187{bottom:187.701626px;}
.y105{bottom:191.218108px;}
.y193{bottom:192.786795px;}
.y5b{bottom:193.211656px;}
.y27{bottom:193.617000px;}
.y79{bottom:196.244279px;}
.y145{bottom:196.563031px;}
.y188{bottom:199.143256px;}
.y194{bottom:201.685841px;}
.y7f{bottom:206.793084px;}
.y50{bottom:206.961000px;}
.y76{bottom:207.845859px;}
.y1f8{bottom:210.054000px;}
.ydc{bottom:210.055500px;}
.y189{bottom:210.584886px;}
.y26{bottom:211.549500px;}
.y140{bottom:211.913228px;}
.y18b{bottom:213.878342px;}
.yb2{bottom:214.936500px;}
.y146{bottom:219.588327px;}
.y80{bottom:222.928616px;}
.y4f{bottom:224.893500px;}
.ydb{bottom:226.492500px;}
.y1f7{bottom:227.047500px;}
.y148{bottom:227.263426px;}
.y177{bottom:227.640100px;}
.y25{bottom:229.482000px;}
.y94{bottom:229.956000px;}
.y13a{bottom:231.375000px;}
.y17b{bottom:233.230462px;}
.y56{bottom:234.675170px;}
.y176{bottom:237.062067px;}
.y178{bottom:241.584089px;}
.y103{bottom:242.191500px;}
.y141{bottom:242.613623px;}
.y4e{bottom:242.826000px;}
.y1f6{bottom:243.486000px;}
.y224{bottom:243.910500px;}
.y143{bottom:246.086333px;}
.y24{bottom:247.414500px;}
.yda{bottom:247.813500px;}
.y93{bottom:247.888500px;}
.yb1{bottom:256.921500px;}
.y102{bottom:260.124000px;}
.y223{bottom:260.349000px;}
.y4d{bottom:260.760000px;}
.y17e{bottom:261.606942px;}
.y139{bottom:262.167000px;}
.y75{bottom:263.530638px;}
.y23{bottom:265.347000px;}
.y92{bottom:265.821000px;}
.y7e{bottom:270.591249px;}
.yd9{bottom:271.948500px;}
.yb0{bottom:274.854000px;}
.y74{bottom:276.395549px;}
.y222{bottom:276.787500px;}
.y101{bottom:278.056500px;}
.y4c{bottom:278.692500px;}
.y54{bottom:279.205189px;}
.y138{bottom:280.101000px;}
.y1f5{bottom:280.632000px;}
.y78{bottom:280.873352px;}
.y179{bottom:281.629795px;}
.y7d{bottom:282.192830px;}
.y1b4{bottom:283.279500px;}
.y22{bottom:283.281000px;}
.yd8{bottom:289.882500px;}
.yaf{bottom:292.786500px;}
.y7b{bottom:293.794410px;}
.y221{bottom:294.205500px;}
.y174{bottom:295.515000px;}
.y100{bottom:295.989000px;}
.y4b{bottom:296.625000px;}
.y137{bottom:298.033500px;}
.y91{bottom:301.066500px;}
.y21{bottom:301.213500px;}
.y17f{bottom:301.652648px;}
.yd7{bottom:307.815000px;}
.y17d{bottom:308.970875px;}
.y220{bottom:310.642500px;}
.yae{bottom:311.179500px;}
.yff{bottom:313.921500px;}
.y4a{bottom:314.557500px;}
.y136{bottom:315.966000px;}
.y90{bottom:318.999000px;}
.y20{bottom:319.395000px;}
.y1d6{bottom:320.071500px;}
.y55{bottom:321.030113px;}
.y17a{bottom:321.675501px;}
.y17c{bottom:324.968956px;}
.yd6{bottom:325.747500px;}
.y1b3{bottom:327.495000px;}
.y21f{bottom:328.060500px;}
.yad{bottom:329.572500px;}
.y1f4{bottom:331.227000px;}
.yfe{bottom:331.855500px;}
.y49{bottom:332.136000px;}
.y73{bottom:333.133103px;}
.y135{bottom:333.898500px;}
.y1f{bottom:337.327500px;}
.y8f{bottom:337.405500px;}
.y173{bottom:340.627500px;}
.y21e{bottom:344.499000px;}
.y82{bottom:347.156065px;}
.y5f{bottom:347.247306px;}
.yac{bottom:347.506500px;}
.y1f3{bottom:349.159500px;}
.yfd{bottom:349.788000px;}
.y48{bottom:350.068500px;}
.y134{bottom:351.831000px;}
.y1e{bottom:355.260000px;}
.y8e{bottom:355.338000px;}
.y172{bottom:358.560000px;}
.y72{bottom:360.238550px;}
.y7c{bottom:360.322772px;}
.y21d{bottom:360.937500px;}
.yd5{bottom:362.008500px;}
.y5a{bottom:362.230785px;}
.yab{bottom:365.439000px;}
.y1f2{bottom:367.092000px;}
.yfc{bottom:367.720500px;}
.y47{bottom:368.002500px;}
.y1b2{bottom:368.719500px;}
.y1d5{bottom:368.820000px;}
.y133{bottom:369.765000px;}
.y1d{bottom:373.192500px;}
.y8d{bottom:373.270500px;}
.y171{bottom:376.494000px;}
.y21c{bottom:377.376000px;}
.yaa{bottom:383.371500px;}
.yfb{bottom:385.653000px;}
.y46{bottom:385.935000px;}
.y1b1{bottom:386.652000px;}
.y1d4{bottom:386.752500px;}
.y132{bottom:389.440500px;}
.y1c{bottom:391.126500px;}
.y8c{bottom:391.203000px;}
.y170{bottom:394.426500px;}
.y21b{bottom:394.794000px;}
.ya9{bottom:401.304000px;}
.y45{bottom:403.513500px;}
.yfa{bottom:403.585500px;}
.y1b0{bottom:404.586000px;}
.y1d3{bottom:404.685000px;}
.y1f1{bottom:405.732000px;}
.y131{bottom:407.373000px;}
.y8b{bottom:409.137000px;}
.yd4{bottom:410.226000px;}
.y21a{bottom:411.231000px;}
.y16f{bottom:412.359000px;}
.ya8{bottom:419.236500px;}
.y44{bottom:421.446000px;}
.yf9{bottom:421.518000px;}
.y1af{bottom:422.518500px;}
.y1d2{bottom:422.617500px;}
.y1f0{bottom:423.664500px;}
.y130{bottom:425.305500px;}
.y8a{bottom:427.069500px;}
.y219{bottom:427.669500px;}
.yd3{bottom:428.158500px;}
.y1b{bottom:428.236500px;}
.ya7{bottom:437.170500px;}
.y43{bottom:439.378500px;}
.yf8{bottom:439.452000px;}
.y1ae{bottom:440.451000px;}
.y1d1{bottom:440.736000px;}
.y1ef{bottom:441.597000px;}
.y12f{bottom:443.238000px;}
.y89{bottom:445.002000px;}
.y218{bottom:445.087500px;}
.yd2{bottom:446.091000px;}
.y16e{bottom:448.504500px;}
.ya6{bottom:455.103000px;}
.y42{bottom:457.311000px;}
.yf7{bottom:457.384500px;}
.y1ad{bottom:458.383500px;}
.y1d0{bottom:458.668500px;}
.y1ee{bottom:460.084500px;}
.y12e{bottom:461.172000px;}
.y217{bottom:461.526000px;}
.y88{bottom:462.934500px;}
.yd1{bottom:464.023500px;}
.yf6{bottom:475.317000px;}
.y1ac{bottom:476.316000px;}
.y1cf{bottom:476.601000px;}
.y1ed{bottom:478.017000px;}
.y216{bottom:478.944000px;}
.y12d{bottom:479.104500px;}
.y1a{bottom:479.980500px;}
.y87{bottom:480.867000px;}
.yd0{bottom:481.957500px;}
.y41{bottom:488.064000px;}
.ya5{bottom:490.281000px;}
.yf5{bottom:493.249500px;}
.y1ab{bottom:494.248500px;}
.y1ce{bottom:494.533500px;}
.y215{bottom:495.381000px;}
.y1ec{bottom:495.949500px;}
.y19{bottom:496.419000px;}
.y16d{bottom:496.605000px;}
.y12c{bottom:497.037000px;}
.ycf{bottom:499.969500px;}
.y40{bottom:505.996500px;}
.ya4{bottom:508.213500px;}
.y214{bottom:511.819500px;}
.y1aa{bottom:512.182500px;}
.y1cd{bottom:512.467500px;}
.y18{bottom:512.857500px;}
.y1eb{bottom:513.883500px;}
.y16c{bottom:514.539000px;}
.y12b{bottom:514.969500px;}
.yce{bottom:517.902000px;}
.y86{bottom:519.100500px;}
.y3f{bottom:523.929000px;}
.ya3{bottom:526.606500px;}
.y213{bottom:529.237500px;}
.y17{bottom:529.296000px;}
.y1a9{bottom:530.115000px;}
.y1cc{bottom:530.400000px;}
.y1ea{bottom:532.371000px;}
.y16b{bottom:532.471500px;}
.y12a{bottom:532.902000px;}
.yf4{bottom:533.409000px;}
.ycd{bottom:535.834500px;}
.y3e{bottom:541.861500px;}
.ya2{bottom:544.539000px;}
.y212{bottom:545.676000px;}
.y16{bottom:545.983500px;}
.y1a8{bottom:548.047500px;}
.y1cb{bottom:548.517000px;}
.y1e9{bottom:550.303500px;}
.y16a{bottom:550.404000px;}
.y129{bottom:552.579000px;}
.ycc{bottom:553.767000px;}
.y3d{bottom:559.794000px;}
.y15{bottom:562.422000px;}
.ya1{bottom:562.471500px;}
.y211{bottom:563.094000px;}
.y1a7{bottom:565.980000px;}
.y1ca{bottom:566.451000px;}
.y1e8{bottom:568.236000px;}
.y169{bottom:568.336500px;}
.y128{bottom:570.511500px;}
.ycb{bottom:571.699500px;}
.y85{bottom:573.939000px;}
.y5d{bottom:574.285500px;}
.y3c{bottom:577.726500px;}
.y14{bottom:578.860500px;}
.y210{bottom:579.531000px;}
.ya0{bottom:580.405500px;}
.y1a6{bottom:583.912500px;}
.y1c9{bottom:584.383500px;}
.yf3{bottom:585.525000px;}
.y1e7{bottom:586.168500px;}
.y168{bottom:586.269000px;}
.y127{bottom:588.444000px;}
.yca{bottom:589.632000px;}
.y84{bottom:590.377500px;}
.y5c{bottom:590.724000px;}
.y13{bottom:595.297500px;}
.y3b{bottom:595.660500px;}
.y20f{bottom:595.969500px;}
.y9f{bottom:598.338000px;}
.y1c8{bottom:602.316000px;}
.yf2{bottom:603.457500px;}
.y1e6{bottom:604.101000px;}
.y167{bottom:604.201500px;}
.y126{bottom:606.376500px;}
.yc9{bottom:607.566000px;}
.y12{bottom:611.736000px;}
.y20e{bottom:613.387500px;}
.y3a{bottom:613.593000px;}
.y9e{bottom:616.270500px;}
.y5e{bottom:616.828500px;}
.y51{bottom:617.175000px;}
.y1c7{bottom:620.248500px;}
.yf1{bottom:621.390000px;}
.y166{bottom:622.135500px;}
.y125{bottom:624.309000px;}
.yc8{bottom:625.578000px;}
.y11{bottom:628.174500px;}
.y20d{bottom:629.826000px;}
.y39{bottom:631.525500px;}
.y1a5{bottom:634.198500px;}
.y9d{bottom:634.203000px;}
.yf0{bottom:639.322500px;}
.y165{bottom:640.068000px;}
.y124{bottom:642.243000px;}
.y1e5{bottom:642.741000px;}
.yc7{bottom:643.510500px;}
.y10{bottom:644.613000px;}
.y20c{bottom:647.244000px;}
.y38{bottom:649.458000px;}
.y1a4{bottom:650.635500px;}
.y1c6{bottom:651.063000px;}
.yef{bottom:657.255000px;}
.y164{bottom:658.000500px;}
.y123{bottom:660.175500px;}
.yf{bottom:661.051500px;}
.yc6{bottom:661.443000px;}
.y20b{bottom:663.681000px;}
.y9c{bottom:666.393000px;}
.yee{bottom:676.047000px;}
.y175{bottom:677.086500px;}
.ye{bottom:677.490000px;}
.y122{bottom:678.108000px;}
.yc5{bottom:679.375500px;}
.y20a{bottom:680.119500px;}
.y37{bottom:683.907000px;}
.y1e4{bottom:693.336000px;}
.yed{bottom:693.979500px;}
.yd{bottom:694.177500px;}
.y121{bottom:696.040500px;}
.y1c5{bottom:696.822000px;}
.yc4{bottom:697.308000px;}
.y209{bottom:697.537500px;}
.yc{bottom:710.616000px;}
.y1e3{bottom:711.268500px;}
.yec{bottom:711.913500px;}
.y163{bottom:712.003500px;}
.y9b{bottom:713.526000px;}
.y208{bottom:713.976000px;}
.y1c4{bottom:714.754500px;}
.yc3{bottom:715.240500px;}
.y120{bottom:715.717500px;}
.yb{bottom:727.054500px;}
.y162{bottom:728.442000px;}
.y1e2{bottom:729.201000px;}
.yeb{bottom:729.846000px;}
.y36{bottom:730.311000px;}
.y207{bottom:731.394000px;}
.y9a{bottom:731.458500px;}
.y1c3{bottom:732.687000px;}
.yc2{bottom:733.174500px;}
.y11f{bottom:733.650000px;}
.ya{bottom:743.493000px;}
.y1e1{bottom:747.135000px;}
.yea{bottom:747.778500px;}
.y206{bottom:747.831000px;}
.y35{bottom:748.243500px;}
.y99{bottom:749.391000px;}
.y1c2{bottom:750.619500px;}
.yc1{bottom:751.107000px;}
.y13b{bottom:754.893000px;}
.y9{bottom:759.931500px;}
.y1e0{bottom:765.067500px;}
.y205{bottom:765.249000px;}
.ye9{bottom:765.711000px;}
.y34{bottom:766.176000px;}
.y98{bottom:767.325000px;}
.y1c1{bottom:768.552000px;}
.yc0{bottom:769.039500px;}
.y8{bottom:776.368500px;}
.y204{bottom:781.687500px;}
.y1df{bottom:783.000000px;}
.ye8{bottom:783.643500px;}
.y33{bottom:784.110000px;}
.y97{bottom:785.257500px;}
.y1c0{bottom:786.486000px;}
.ybf{bottom:786.972000px;}
.y11e{bottom:791.028000px;}
.y7{bottom:792.807000px;}
.y203{bottom:798.126000px;}
.y1de{bottom:800.932500px;}
.ye7{bottom:801.576000px;}
.y32{bottom:802.042500px;}
.y96{bottom:803.190000px;}
.y6{bottom:809.245500px;}
.y202{bottom:815.544000px;}
.y104{bottom:817.479000px;}
.y1dd{bottom:819.420000px;}
.y31{bottom:819.975000px;}
.y95{bottom:821.122500px;}
.y201{bottom:831.981000px;}
.y1dc{bottom:837.352500px;}
.y30{bottom:837.907500px;}
.ybe{bottom:839.677500px;}
.y1bf{bottom:840.000000px;}
.y200{bottom:848.419500px;}
.ybd{bottom:851.632500px;}
.y1be{bottom:852.553500px;}
.y1db{bottom:855.285000px;}
.y2f{bottom:855.840000px;}
.ye6{bottom:856.438500px;}
.ybc{bottom:863.587500px;}
.y1bd{bottom:865.105500px;}
.y1ff{bottom:865.837500px;}
.ye5{bottom:868.992000px;}
.y5{bottom:872.446500px;}
.y1da{bottom:873.219000px;}
.y2e{bottom:873.774000px;}
.ybb{bottom:876.139500px;}
.y1bc{bottom:877.659000px;}
.ye4{bottom:881.544000px;}
.y1fe{bottom:882.276000px;}
.yba{bottom:888.693000px;}
.y4{bottom:888.885000px;}
.y1bb{bottom:890.212500px;}
.y1d9{bottom:891.151500px;}
.y2d{bottom:891.706500px;}
.ye3{bottom:894.097500px;}
.y1fd{bottom:898.714500px;}
.yb9{bottom:901.246500px;}
.y1ba{bottom:902.764500px;}
.ye2{bottom:906.649500px;}
.y1d8{bottom:909.084000px;}
.y2c{bottom:909.639000px;}
.yb8{bottom:913.798500px;}
.y1b9{bottom:915.318000px;}
.y1fc{bottom:916.131000px;}
.ye1{bottom:919.203000px;}
.y3{bottom:920.206500px;}
.y1d7{bottom:927.016500px;}
.y2b{bottom:927.571500px;}
.y1b8{bottom:927.870000px;}
.ye0{bottom:931.756500px;}
.y1fb{bottom:932.569500px;}
.yb7{bottom:932.691000px;}
.y1b7{bottom:944.010000px;}
.ydf{bottom:944.308500px;}
.y2a{bottom:945.504000px;}
.yb4{bottom:945.532500px;}
.yb6{bottom:947.895000px;}
.y1fa{bottom:949.008000px;}
.y1b6{bottom:949.987500px;}
.yb5{bottom:959.850000px;}
.yde{bottom:960.448500px;}
.y29{bottom:963.436500px;}
.ydd{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y1f9{bottom:982.864500px;}
.y1b5{bottom:986.301000px;}
.y1{bottom:999.303000px;}
.yb3{bottom:1002.739500px;}
.h18{height:23.763684px;}
.he{height:26.809509px;}
.h1e{height:27.360267px;}
.h12{height:28.787846px;}
.h13{height:29.289960px;}
.h1a{height:30.096287px;}
.h14{height:31.382100px;}
.hc{height:31.893095px;}
.h20{height:34.056785px;}
.h1f{height:34.200334px;}
.h10{height:34.470156px;}
.h4{height:37.013299px;}
.h3{height:37.283299px;}
.h1c{height:37.462464px;}
.h1b{height:37.620367px;}
.h6{height:37.658880px;}
.hf{height:38.300480px;}
.h5{height:40.348800px;}
.h2{height:41.125613px;}
.h22{height:41.419613px;}
.h21{height:41.425613px;}
.h8{height:41.842920px;}
.ha{height:44.648955px;}
.h15{height:44.831700px;}
.h7{height:50.211840px;}
.h11{height:52.128854px;}
.h16{height:53.199960px;}
.h1{height:60.254040px;}
.hb{height:76.542049px;}
.h17{height:196.769739px;}
.h19{height:259.355520px;}
.h1d{height:337.162176px;}
.h9{height:396.728955px;}
.hd{height:397.422563px;}
.h0{height:1188.000000px;}
.w1{width:241.487190px;}
.w2{width:245.296575px;}
.w4{width:518.711040px;}
.w3{width:518.758885px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x39{left:11.104517px;}
.x38{left:14.707443px;}
.x13{left:25.848438px;}
.x18{left:27.324424px;}
.x17{left:28.835507px;}
.x20{left:31.635187px;}
.x26{left:32.835350px;}
.x46{left:36.125919px;}
.x11{left:37.299640px;}
.x19{left:38.589819px;}
.x21{left:42.213470px;}
.x23{left:43.411528px;}
.x1a{left:45.550065px;}
.xf{left:50.134055px;}
.x49{left:52.371812px;}
.x24{left:71.602737px;}
.x22{left:72.774826px;}
.x47{left:75.134153px;}
.x3a{left:76.209732px;}
.x4d{left:77.879448px;}
.x14{left:80.219745px;}
.x48{left:82.248646px;}
.x25{left:101.775268px;}
.xe{left:103.951200px;}
.x1b{left:115.622769px;}
.x12{left:136.908452px;}
.xd{left:144.552808px;}
.x15{left:148.988287px;}
.x1d{left:151.346934px;}
.x1c{left:152.666412px;}
.x1f{left:180.108747px;}
.x1e{left:181.617724px;}
.x3d{left:182.711420px;}
.x3c{left:186.314345px;}
.x10{left:192.554548px;}
.x3b{left:199.577875px;}
.x8{left:202.147500px;}
.xc{left:208.501500px;}
.x51{left:210.177000px;}
.x52{left:211.327500px;}
.xa{left:212.607000px;}
.x50{left:214.240500px;}
.x28{left:217.090500px;}
.x9{left:224.563500px;}
.x56{left:226.431000px;}
.xb{left:227.551500px;}
.x2e{left:228.966000px;}
.x2d{left:230.707500px;}
.x2c{left:231.873000px;}
.x29{left:237.123000px;}
.x7{left:244.666500px;}
.x44{left:247.288680px;}
.x3e{left:248.917062px;}
.x34{left:250.258500px;}
.x3{left:252.132000px;}
.x33{left:253.165500px;}
.x1{left:255.343500px;}
.x30{left:256.936500px;}
.x32{left:258.103500px;}
.x4{left:259.177500px;}
.x35{left:260.373000px;}
.x2{left:266.931000px;}
.x2b{left:269.124000px;}
.x2f{left:270.985500px;}
.x4f{left:280.879500px;}
.x54{left:297.847500px;}
.x37{left:303.610818px;}
.x36{left:304.841077px;}
.x6{left:329.626500px;}
.x42{left:354.318322px;}
.x41{left:357.921247px;}
.x3f{left:371.184778px;}
.x4a{left:379.339724px;}
.x45{left:398.972743px;}
.x40{left:416.951425px;}
.x4b{left:418.347957px;}
.x43{left:419.971254px;}
.x4c{left:421.595715px;}
.x4e{left:423.587380px;}
.x2a{left:457.384500px;}
.x27{left:466.701000px;}
.x16{left:471.150000px;}
.x53{left:475.263000px;}
.x31{left:542.034000px;}
.x5{left:557.835000px;}
.x55{left:609.844500px;}
@media print{
.v4{vertical-align:-21.253333pt;}
.v2{vertical-align:-17.354667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.253333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000891pt;}
.ls5{letter-spacing:2.655200pt;}
.ls7{letter-spacing:9.272360pt;}
.ls6{letter-spacing:14.608533pt;}
.ls4{letter-spacing:15.906567pt;}
.lsb{letter-spacing:16.943200pt;}
.lsa{letter-spacing:18.671200pt;}
.ls8{letter-spacing:19.540533pt;}
.ls2{letter-spacing:26.569067pt;}
.ls9{letter-spacing:44.606285pt;}
.ls3{letter-spacing:75.961788pt;}
.ws45{word-spacing:-87.241388pt;}
.ws75{word-spacing:-53.133867pt;}
.ws68{word-spacing:-37.193600pt;}
.ws40{word-spacing:-25.980330pt;}
.ws98{word-spacing:-18.054081pt;}
.wse4{word-spacing:-15.940267pt;}
.ws3f{word-spacing:-15.154998pt;}
.ws76{word-spacing:-13.283467pt;}
.ws42{word-spacing:-10.825332pt;}
.wsad{word-spacing:-9.719801pt;}
.ws67{word-spacing:-9.298400pt;}
.wsba{word-spacing:-8.836183pt;}
.ws44{word-spacing:-7.895476pt;}
.ws4d{word-spacing:-3.188032pt;}
.ws56{word-spacing:-3.081764pt;}
.wsdd{word-spacing:-3.028630pt;}
.ws4{word-spacing:-2.869248pt;}
.ws65{word-spacing:-2.816095pt;}
.wsd7{word-spacing:-2.709827pt;}
.ws86{word-spacing:-2.603559pt;}
.wsbd{word-spacing:-2.444158pt;}
.ws99{word-spacing:-2.391040pt;}
.wsff{word-spacing:-2.343219pt;}
.ws7d{word-spacing:-2.337890pt;}
.wsb1{word-spacing:-2.284756pt;}
.wsb4{word-spacing:-2.231622pt;}
.ws87{word-spacing:-2.178489pt;}
.wsea{word-spacing:-2.008474pt;}
.ws64{word-spacing:-1.965953pt;}
.ws3e{word-spacing:-1.859685pt;}
.ws39{word-spacing:-1.806551pt;}
.ws7e{word-spacing:-1.753418pt;}
.ws78{word-spacing:-1.700284pt;}
.ws93{word-spacing:-1.540882pt;}
.ws54{word-spacing:-1.328347pt;}
.wse5{word-spacing:-1.291162pt;}
.wsc5{word-spacing:-1.243341pt;}
.ws52{word-spacing:-1.222079pt;}
.ws81{word-spacing:-1.195520pt;}
.ws9d{word-spacing:-1.115811pt;}
.wseb{word-spacing:-1.099878pt;}
.ws94{word-spacing:-1.062677pt;}
.ws7f{word-spacing:-1.009543pt;}
.ws9{word-spacing:-1.004237pt;}
.ws88{word-spacing:-0.956410pt;}
.wsa3{word-spacing:-0.903276pt;}
.wsd5{word-spacing:-0.850142pt;}
.wsf9{word-spacing:-0.812954pt;}
.ws32{word-spacing:-0.797008pt;}
.ws13{word-spacing:-0.765133pt;}
.ws100{word-spacing:-0.717312pt;}
.wse2{word-spacing:-0.690740pt;}
.ws5c{word-spacing:-0.637606pt;}
.wsf3{word-spacing:-0.526029pt;}
.ws95{word-spacing:-0.478205pt;}
.ws3c{word-spacing:-0.425071pt;}
.ws101{word-spacing:-0.382566pt;}
.ws62{word-spacing:-0.371937pt;}
.wsa7{word-spacing:-0.318803pt;}
.ws37{word-spacing:-0.265669pt;}
.ws6{word-spacing:-0.239104pt;}
.ws63{word-spacing:-0.212535pt;}
.wsb{word-spacing:-0.191283pt;}
.ws79{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047821pt;}
.ws6a{word-spacing:-0.037194pt;}
.ws1{word-spacing:-0.003200pt;}
.ws0{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.031587pt;}
.wsac{word-spacing:0.034745pt;}
.wsf1{word-spacing:0.047821pt;}
.wse0{word-spacing:0.049837pt;}
.ws1e{word-spacing:0.053134pt;}
.ws3d{word-spacing:0.106268pt;}
.wse1{word-spacing:0.159402pt;}
.wsef{word-spacing:0.191283pt;}
.wsb2{word-spacing:0.212535pt;}
.ws16{word-spacing:0.265669pt;}
.ws36{word-spacing:0.318803pt;}
.wsaa{word-spacing:0.334746pt;}
.wsa{word-spacing:0.382566pt;}
.ws35{word-spacing:0.425071pt;}
.wsda{word-spacing:0.478205pt;}
.wse9{word-spacing:0.526029pt;}
.wsb5{word-spacing:0.584473pt;}
.ws60{word-spacing:0.690740pt;}
.ws24{word-spacing:0.743874pt;}
.wsd2{word-spacing:0.797008pt;}
.ws5f{word-spacing:0.850142pt;}
.ws1b{word-spacing:0.903276pt;}
.wse7{word-spacing:0.908595pt;}
.wsa2{word-spacing:1.009543pt;}
.wsd0{word-spacing:1.062677pt;}
.ws66{word-spacing:1.099878pt;}
.ws1d{word-spacing:1.115811pt;}
.wsb6{word-spacing:1.168945pt;}
.ws73{word-spacing:1.222079pt;}
.wsc{word-spacing:1.243341pt;}
.ws1c{word-spacing:1.275213pt;}
.ws8e{word-spacing:1.328347pt;}
.ws14{word-spacing:1.338982pt;}
.ws2a{word-spacing:1.381481pt;}
.ws5{word-spacing:1.386803pt;}
.ws83{word-spacing:1.434614pt;}
.ws102{word-spacing:1.434624pt;}
.ws61{word-spacing:1.487748pt;}
.ws57{word-spacing:1.540882pt;}
.wsa5{word-spacing:1.594016pt;}
.ws8c{word-spacing:1.647150pt;}
.wsfb{word-spacing:1.673728pt;}
.ws89{word-spacing:1.700284pt;}
.ws85{word-spacing:1.753418pt;}
.ws97{word-spacing:1.769370pt;}
.wsc3{word-spacing:1.806551pt;}
.wsf0{word-spacing:1.817190pt;}
.ws90{word-spacing:1.912819pt;}
.ws9c{word-spacing:1.965953pt;}
.ws10{word-spacing:2.008474pt;}
.ws2d{word-spacing:2.019087pt;}
.ws8a{word-spacing:2.072221pt;}
.ws58{word-spacing:2.125355pt;}
.wsfe{word-spacing:2.151936pt;}
.ws53{word-spacing:2.178489pt;}
.wsd4{word-spacing:2.231622pt;}
.wsb7{word-spacing:2.284756pt;}
.ws3a{word-spacing:2.337890pt;}
.ws5e{word-spacing:2.391024pt;}
.ws5d{word-spacing:2.444158pt;}
.ws7c{word-spacing:2.497292pt;}
.wsc0{word-spacing:2.550426pt;}
.wsf7{word-spacing:2.582323pt;}
.ws38{word-spacing:2.603559pt;}
.ws9b{word-spacing:2.656693pt;}
.ws30{word-spacing:2.709827pt;}
.wsdc{word-spacing:2.762961pt;}
.wsfd{word-spacing:2.821427pt;}
.ws9a{word-spacing:2.869229pt;}
.wsbe{word-spacing:2.975497pt;}
.ws26{word-spacing:3.028630pt;}
.ws50{word-spacing:3.081764pt;}
.ws4e{word-spacing:3.134898pt;}
.wsbc{word-spacing:3.156173pt;}
.ws34{word-spacing:3.241166pt;}
.wsb3{word-spacing:3.294300pt;}
.wse8{word-spacing:3.299635pt;}
.ws55{word-spacing:3.453701pt;}
.ws74{word-spacing:3.484958pt;}
.ws7{word-spacing:3.490918pt;}
.ws77{word-spacing:3.506835pt;}
.ws1a{word-spacing:3.559969pt;}
.ws7a{word-spacing:3.580276pt;}
.wsec{word-spacing:3.586560pt;}
.ws7b{word-spacing:3.613103pt;}
.wsce{word-spacing:3.666237pt;}
.wsd1{word-spacing:3.719371pt;}
.ws25{word-spacing:3.772505pt;}
.ws8{word-spacing:3.777843pt;}
.ws2b{word-spacing:3.825638pt;}
.ws82{word-spacing:3.969126pt;}
.ws8b{word-spacing:3.985040pt;}
.wsdb{word-spacing:4.038174pt;}
.wsc4{word-spacing:4.064768pt;}
.ws23{word-spacing:4.091308pt;}
.wsde{word-spacing:4.197575pt;}
.ws27{word-spacing:4.250709pt;}
.wsfc{word-spacing:4.351693pt;}
.ws80{word-spacing:4.410111pt;}
.ws3b{word-spacing:4.463245pt;}
.wsee{word-spacing:4.495155pt;}
.ws29{word-spacing:4.516379pt;}
.wsbf{word-spacing:4.569513pt;}
.ws2e{word-spacing:4.622646pt;}
.ws21{word-spacing:4.675780pt;}
.wsf4{word-spacing:4.686438pt;}
.ws28{word-spacing:4.728914pt;}
.ws12{word-spacing:4.734259pt;}
.ws92{word-spacing:4.782048pt;}
.ws18{word-spacing:4.835182pt;}
.ws19{word-spacing:4.843645pt;}
.ws11{word-spacing:4.925542pt;}
.wsdf{word-spacing:4.941450pt;}
.wsae{word-spacing:4.973363pt;}
.ws84{word-spacing:5.047717pt;}
.ws4c{word-spacing:5.069005pt;}
.ws9f{word-spacing:5.366521pt;}
.ws5a{word-spacing:5.419654pt;}
.ws20{word-spacing:5.472788pt;}
.wsa9{word-spacing:5.499392pt;}
.ws22{word-spacing:5.525922pt;}
.ws4f{word-spacing:5.579056pt;}
.ws2f{word-spacing:5.738458pt;}
.wsc2{word-spacing:5.791591pt;}
.wsa4{word-spacing:5.897859pt;}
.ws33{word-spacing:6.004127pt;}
.ws51{word-spacing:6.163529pt;}
.ws2c{word-spacing:6.269796pt;}
.wsa6{word-spacing:6.322930pt;}
.wsed{word-spacing:6.360166pt;}
.wsd9{word-spacing:6.429198pt;}
.ws1f{word-spacing:6.482332pt;}
.wsf{word-spacing:6.551450pt;}
.ws31{word-spacing:6.641733pt;}
.wsd3{word-spacing:6.694867pt;}
.wsb0{word-spacing:6.801135pt;}
.wse6{word-spacing:6.838374pt;}
.ws17{word-spacing:6.854269pt;}
.wsf5{word-spacing:6.886195pt;}
.wscf{word-spacing:7.013670pt;}
.ws96{word-spacing:7.066804pt;}
.wsd{word-spacing:7.268762pt;}
.ws41{word-spacing:7.300103pt;}
.wsaf{word-spacing:7.332474pt;}
.ws8d{word-spacing:7.438741pt;}
.wsf8{word-spacing:7.555686pt;}
.ws5b{word-spacing:7.651277pt;}
.wsa8{word-spacing:7.704411pt;}
.wsc1{word-spacing:7.757545pt;}
.wsfa{word-spacing:7.842611pt;}
.wse{word-spacing:8.416461pt;}
.wsa0{word-spacing:8.554553pt;}
.wsa1{word-spacing:8.607686pt;}
.wsf6{word-spacing:9.181594pt;}
.wsd6{word-spacing:9.564096pt;}
.wsd8{word-spacing:9.776631pt;}
.ws43{word-spacing:10.233651pt;}
.wsf2{word-spacing:11.811738pt;}
.ws8f{word-spacing:14.579933pt;}
.ws3{word-spacing:14.607070pt;}
.wse3{word-spacing:15.098598pt;}
.ws91{word-spacing:17.842066pt;}
.ws9e{word-spacing:27.842146pt;}
.ws6b{word-spacing:35.335331pt;}
.wsc8{word-spacing:35.336887pt;}
.ws71{word-spacing:35.372665pt;}
.ws59{word-spacing:39.850400pt;}
.wsc9{word-spacing:44.632887pt;}
.ws15{word-spacing:47.820800pt;}
.ws6c{word-spacing:49.751331pt;}
.wsca{word-spacing:53.928713pt;}
.wscd{word-spacing:53.931860pt;}
.ws47{word-spacing:62.935348pt;}
.ws48{word-spacing:64.682189pt;}
.ws69{word-spacing:67.376573pt;}
.ws4a{word-spacing:67.502088pt;}
.wscc{word-spacing:72.486273pt;}
.ws6d{word-spacing:73.013906pt;}
.wscb{word-spacing:73.550842pt;}
.ws49{word-spacing:76.621415pt;}
.ws46{word-spacing:77.085560pt;}
.ws6e{word-spacing:78.720573pt;}
.wsb8{word-spacing:80.471022pt;}
.wsc7{word-spacing:81.826846pt;}
.ws70{word-spacing:82.830662pt;}
.wsab{word-spacing:93.598295pt;}
.wsbb{word-spacing:144.982813pt;}
.ws72{word-spacing:154.134798pt;}
.wsc6{word-spacing:212.492935pt;}
.ws4b{word-spacing:359.287952pt;}
.ws6f{word-spacing:774.147996pt;}
._b{margin-left:-75.961788pt;}
._1{margin-left:-6.274071pt;}
._8{margin-left:-4.782048pt;}
._4{margin-left:-3.873485pt;}
._22{margin-left:-2.922363pt;}
._0{margin-left:-1.912827pt;}
._5{margin-left:-0.956421pt;}
._38{width:1.211211pt;}
._2{width:2.635310pt;}
._7{width:8.342010pt;}
._6{width:9.351568pt;}
._3a{width:10.679915pt;}
._3{width:12.624686pt;}
._a{width:13.761679pt;}
._21{width:15.408829pt;}
._20{width:17.321648pt;}
._c{width:18.851161pt;}
._39{width:20.987897pt;}
._4f{width:23.910400pt;}
._4e{width:26.588365pt;}
._48{width:43.775136pt;}
._1f{width:45.060074pt;}
._45{width:46.697417pt;}
._1b{width:49.802710pt;}
._46{width:53.931821pt;}
._30{width:57.039239pt;}
._31{width:58.561316pt;}
._4d{width:62.694018pt;}
._9{width:63.761067pt;}
._1c{width:65.644223pt;}
._10{width:70.928258pt;}
._47{width:72.524354pt;}
._32{width:75.508756pt;}
._49{width:76.655239pt;}
._2c{width:79.410667pt;}
._3b{width:80.445579pt;}
._1a{width:82.325775pt;}
._37{width:84.554798pt;}
._29{width:87.962400pt;}
._19{width:90.658781pt;}
._42{width:92.144175pt;}
._28{width:93.856131pt;}
._27{width:98.006933pt;}
._4b{width:100.421421pt;}
._1d{width:103.308226pt;}
._2f{width:106.408438pt;}
._f{width:108.586925pt;}
._43{width:109.721687pt;}
._4a{width:119.023021pt;}
._d{width:126.218925pt;}
._44{width:128.319021pt;}
._1e{width:131.386212pt;}
._4c{width:137.620354pt;}
._e{width:142.709591pt;}
._41{width:145.741404pt;}
._26{width:154.131760pt;}
._40{width:155.037404pt;}
._25{width:158.794842pt;}
._34{width:163.027810pt;}
._17{width:169.040442pt;}
._16{width:175.296944pt;}
._18{width:176.986212pt;}
._14{width:193.962470pt;}
._3f{width:200.493937pt;}
._33{width:204.209110pt;}
._15{width:216.075200pt;}
._3d{width:218.045404pt;}
._2e{width:220.744835pt;}
._2b{width:226.414217pt;}
._2d{width:229.554081pt;}
._13{width:231.195200pt;}
._2a{width:232.126750pt;}
._3e{width:236.642737pt;}
._11{width:278.037867pt;}
._36{width:291.504350pt;}
._12{width:294.533867pt;}
._35{width:313.698989pt;}
._24{width:324.029963pt;}
._23{width:347.780669pt;}
._3c{width:363.416683pt;}
.fsf{font-size:25.519661pt;}
.fsd{font-size:28.071621pt;}
.fsc{font-size:30.090135pt;}
.fs10{font-size:31.899577pt;}
.fs7{font-size:34.935735pt;}
.fse{font-size:35.089534pt;}
.fsb{font-size:37.193600pt;}
.fs6{font-size:38.940045pt;}
.fsa{font-size:39.318933pt;}
.fs9{font-size:44.918400pt;}
.fs2{font-size:47.820800pt;}
.fs8{font-size:49.909733pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:54.514381pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs5{font-size:93.454425pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:0.714645pt;}
.y196{bottom:4.852330pt;}
.y14a{bottom:6.854775pt;}
.y19f{bottom:9.821541pt;}
.y116{bottom:10.117812pt;}
.y11b{bottom:10.195580pt;}
.y195{bottom:13.227412pt;}
.y154{bottom:13.858813pt;}
.y149{bottom:15.933952pt;}
.y197{bottom:17.246987pt;}
.y115{bottom:19.520979pt;}
.y14b{bottom:20.248752pt;}
.y70{bottom:27.074566pt;}
.y198{bottom:27.417325pt;}
.y161{bottom:27.462571pt;}
.y114{bottom:28.924146pt;}
.y14c{bottom:30.482216pt;}
.y77{bottom:32.138491pt;}
.y156{bottom:36.622295pt;}
.y160{bottom:37.064439pt;}
.y6f{bottom:37.386458pt;}
.y199{bottom:37.587663pt;}
.y113{bottom:38.327313pt;}
.y14d{bottom:40.715681pt;}
.y1a2{bottom:40.977775pt;}
.y15f{bottom:46.666306pt;}
.y6e{bottom:47.697726pt;}
.y112{bottom:47.730480pt;}
.y19a{bottom:47.758001pt;}
.y57{bottom:48.389433pt;}
.y59{bottom:48.397221pt;}
.y14e{bottom:50.949146pt;}
.y1a1{bottom:52.843170pt;}
.y157{bottom:52.995839pt;}
.y15e{bottom:56.268174pt;}
.y66{bottom:56.886658pt;}
.y111{bottom:57.133647pt;}
.y6d{bottom:57.872367pt;}
.y19b{bottom:57.928339pt;}
.y14f{bottom:61.182611pt;}
.y1a3{bottom:64.708564pt;}
.y15d{bottom:65.707702pt;}
.y110{bottom:66.536814pt;}
.y61{bottom:67.196679pt;}
.y19c{bottom:68.098677pt;}
.y6c{bottom:68.319639pt;}
.y158{bottom:69.369383pt;}
.y150{bottom:71.416076pt;}
.y58{bottom:73.715836pt;}
.y15c{bottom:75.147231pt;}
.y11d{bottom:75.649368pt;}
.y10f{bottom:75.939981pt;}
.y19d{bottom:78.269015pt;}
.y6b{bottom:78.632155pt;}
.y60{bottom:78.806837pt;}
.y151{bottom:81.649541pt;}
.y15b{bottom:84.586759pt;}
.y11c{bottom:85.052535pt;}
.y10e{bottom:85.343148pt;}
.y159{bottom:85.742927pt;}
.y6a{bottom:88.258417pt;}
.y19e{bottom:88.439353pt;}
.y65{bottom:88.769988pt;}
.y1a0{bottom:91.366869pt;}
.y152{bottom:91.883006pt;}
.y52{bottom:91.939631pt;}
.y15a{bottom:94.026288pt;}
.y10d{bottom:94.746315pt;}
.y7a{bottom:98.134227pt;}
.y69{bottom:98.296432pt;}
.y64{bottom:98.739377pt;}
.y153{bottom:102.116470pt;}
.y11a{bottom:103.286948pt;}
.y181{bottom:103.599543pt;}
.y10c{bottom:104.149482pt;}
.y155{bottom:105.203324pt;}
.y63{bottom:108.446743pt;}
.y18a{bottom:108.568754pt;}
.y68{bottom:109.569703pt;}
.y180{bottom:111.974625pt;}
.y10b{bottom:113.552649pt;}
.y182{bottom:115.994199pt;}
.y119{bottom:116.770300pt;}
.y62{bottom:118.759259pt;}
.y67{bottom:119.882219pt;}
.y13d{bottom:120.394858pt;}
.y10a{bottom:122.955816pt;}
.y18d{bottom:123.904462pt;}
.y183{bottom:126.164538pt;}
.y118{bottom:126.173467pt;}
.y53{bottom:126.963001pt;}
.y142{bottom:127.398896pt;}
.y13c{bottom:129.474035pt;}
.y83{bottom:130.263360pt;}
.y18e{bottom:131.814725pt;}
.y109{bottom:132.358983pt;}
.y13e{bottom:133.788835pt;}
.y184{bottom:136.334876pt;}
.y71{bottom:137.412872pt;}
.y18f{bottom:139.724988pt;}
.y108{bottom:141.762150pt;}
.y185{bottom:146.505214pt;}
.y147{bottom:147.433455pt;}
.y190{bottom:147.635251pt;}
.y107{bottom:151.165317pt;}
.y18c{bottom:151.590383pt;}
.y144{bottom:154.255764pt;}
.y191{bottom:155.545514pt;}
.y186{bottom:156.675552pt;}
.y81{bottom:156.908705pt;}
.y106{bottom:160.568484pt;}
.y13f{bottom:161.078074pt;}
.y192{bottom:163.455777pt;}
.y187{bottom:166.845890pt;}
.y105{bottom:169.971651pt;}
.y193{bottom:171.366040pt;}
.y5b{bottom:171.743694pt;}
.y27{bottom:172.104000pt;}
.y79{bottom:174.439359pt;}
.y145{bottom:174.722694pt;}
.y188{bottom:177.016228pt;}
.y194{bottom:179.276303pt;}
.y7f{bottom:183.816075pt;}
.y50{bottom:183.965333pt;}
.y76{bottom:184.751875pt;}
.y1f8{bottom:186.714667pt;}
.ydc{bottom:186.716000pt;}
.y189{bottom:187.186566pt;}
.y26{bottom:188.044000pt;}
.y140{bottom:188.367314pt;}
.y18b{bottom:190.114082pt;}
.yb2{bottom:191.054667pt;}
.y146{bottom:195.189624pt;}
.y80{bottom:198.158769pt;}
.y4f{bottom:199.905333pt;}
.ydb{bottom:201.326667pt;}
.y1f7{bottom:201.820000pt;}
.y148{bottom:202.011934pt;}
.y177{bottom:202.346756pt;}
.y25{bottom:203.984000pt;}
.y94{bottom:204.405333pt;}
.y13a{bottom:205.666667pt;}
.y17b{bottom:207.315966pt;}
.y56{bottom:208.600151pt;}
.y176{bottom:210.721838pt;}
.y178{bottom:214.741412pt;}
.y103{bottom:215.281333pt;}
.y141{bottom:215.656554pt;}
.y4e{bottom:215.845333pt;}
.y1f6{bottom:216.432000pt;}
.y224{bottom:216.809333pt;}
.y143{bottom:218.743407pt;}
.y24{bottom:219.924000pt;}
.yda{bottom:220.278667pt;}
.y93{bottom:220.345333pt;}
.yb1{bottom:228.374667pt;}
.y102{bottom:231.221333pt;}
.y223{bottom:231.421333pt;}
.y4d{bottom:231.786667pt;}
.y17e{bottom:232.539504pt;}
.y139{bottom:233.037333pt;}
.y75{bottom:234.249456pt;}
.y23{bottom:235.864000pt;}
.y92{bottom:236.285333pt;}
.y7e{bottom:240.525555pt;}
.yd9{bottom:241.732000pt;}
.yb0{bottom:244.314667pt;}
.y74{bottom:245.684932pt;}
.y222{bottom:246.033333pt;}
.y101{bottom:247.161333pt;}
.y4c{bottom:247.726667pt;}
.y54{bottom:248.182390pt;}
.y138{bottom:248.978667pt;}
.y1f5{bottom:249.450667pt;}
.y78{bottom:249.665201pt;}
.y179{bottom:250.337595pt;}
.y7d{bottom:250.838071pt;}
.y1b4{bottom:251.804000pt;}
.y22{bottom:251.805333pt;}
.yd8{bottom:257.673333pt;}
.yaf{bottom:260.254667pt;}
.y7b{bottom:261.150587pt;}
.y221{bottom:261.516000pt;}
.y174{bottom:262.680000pt;}
.y100{bottom:263.101333pt;}
.y4b{bottom:263.666667pt;}
.y137{bottom:264.918667pt;}
.y91{bottom:267.614667pt;}
.y21{bottom:267.745333pt;}
.y17f{bottom:268.135687pt;}
.yd7{bottom:273.613333pt;}
.y17d{bottom:274.640778pt;}
.y220{bottom:276.126667pt;}
.yae{bottom:276.604000pt;}
.yff{bottom:279.041333pt;}
.y4a{bottom:279.606667pt;}
.y136{bottom:280.858667pt;}
.y90{bottom:283.554667pt;}
.y20{bottom:283.906667pt;}
.y1d6{bottom:284.508000pt;}
.y55{bottom:285.360101pt;}
.y17a{bottom:285.933778pt;}
.y17c{bottom:288.861294pt;}
.yd6{bottom:289.553333pt;}
.y1b3{bottom:291.106667pt;}
.y21f{bottom:291.609333pt;}
.yad{bottom:292.953333pt;}
.y1f4{bottom:294.424000pt;}
.yfe{bottom:294.982667pt;}
.y49{bottom:295.232000pt;}
.y73{bottom:296.118313pt;}
.y135{bottom:296.798667pt;}
.y1f{bottom:299.846667pt;}
.y8f{bottom:299.916000pt;}
.y173{bottom:302.780000pt;}
.y21e{bottom:306.221333pt;}
.y82{bottom:308.583169pt;}
.y5f{bottom:308.664272pt;}
.yac{bottom:308.894667pt;}
.y1f3{bottom:310.364000pt;}
.yfd{bottom:310.922667pt;}
.y48{bottom:311.172000pt;}
.y134{bottom:312.738667pt;}
.y1e{bottom:315.786667pt;}
.y8e{bottom:315.856000pt;}
.y172{bottom:318.720000pt;}
.y72{bottom:320.212044pt;}
.y7c{bottom:320.286908pt;}
.y21d{bottom:320.833333pt;}
.yd5{bottom:321.785333pt;}
.y5a{bottom:321.982920pt;}
.yab{bottom:324.834667pt;}
.y1f2{bottom:326.304000pt;}
.yfc{bottom:326.862667pt;}
.y47{bottom:327.113333pt;}
.y1b2{bottom:327.750667pt;}
.y1d5{bottom:327.840000pt;}
.y133{bottom:328.680000pt;}
.y1d{bottom:331.726667pt;}
.y8d{bottom:331.796000pt;}
.y171{bottom:334.661333pt;}
.y21c{bottom:335.445333pt;}
.yaa{bottom:340.774667pt;}
.yfb{bottom:342.802667pt;}
.y46{bottom:343.053333pt;}
.y1b1{bottom:343.690667pt;}
.y1d4{bottom:343.780000pt;}
.y132{bottom:346.169333pt;}
.y1c{bottom:347.668000pt;}
.y8c{bottom:347.736000pt;}
.y170{bottom:350.601333pt;}
.y21b{bottom:350.928000pt;}
.ya9{bottom:356.714667pt;}
.y45{bottom:358.678667pt;}
.yfa{bottom:358.742667pt;}
.y1b0{bottom:359.632000pt;}
.y1d3{bottom:359.720000pt;}
.y1f1{bottom:360.650667pt;}
.y131{bottom:362.109333pt;}
.y8b{bottom:363.677333pt;}
.yd4{bottom:364.645333pt;}
.y21a{bottom:365.538667pt;}
.y16f{bottom:366.541333pt;}
.ya8{bottom:372.654667pt;}
.y44{bottom:374.618667pt;}
.yf9{bottom:374.682667pt;}
.y1af{bottom:375.572000pt;}
.y1d2{bottom:375.660000pt;}
.y1f0{bottom:376.590667pt;}
.y130{bottom:378.049333pt;}
.y8a{bottom:379.617333pt;}
.y219{bottom:380.150667pt;}
.yd3{bottom:380.585333pt;}
.y1b{bottom:380.654667pt;}
.ya7{bottom:388.596000pt;}
.y43{bottom:390.558667pt;}
.yf8{bottom:390.624000pt;}
.y1ae{bottom:391.512000pt;}
.y1d1{bottom:391.765333pt;}
.y1ef{bottom:392.530667pt;}
.y12f{bottom:393.989333pt;}
.y89{bottom:395.557333pt;}
.y218{bottom:395.633333pt;}
.yd2{bottom:396.525333pt;}
.y16e{bottom:398.670667pt;}
.ya6{bottom:404.536000pt;}
.y42{bottom:406.498667pt;}
.yf7{bottom:406.564000pt;}
.y1ad{bottom:407.452000pt;}
.y1d0{bottom:407.705333pt;}
.y1ee{bottom:408.964000pt;}
.y12e{bottom:409.930667pt;}
.y217{bottom:410.245333pt;}
.y88{bottom:411.497333pt;}
.yd1{bottom:412.465333pt;}
.yf6{bottom:422.504000pt;}
.y1ac{bottom:423.392000pt;}
.y1cf{bottom:423.645333pt;}
.y1ed{bottom:424.904000pt;}
.y216{bottom:425.728000pt;}
.y12d{bottom:425.870667pt;}
.y1a{bottom:426.649333pt;}
.y87{bottom:427.437333pt;}
.yd0{bottom:428.406667pt;}
.y41{bottom:433.834667pt;}
.ya5{bottom:435.805333pt;}
.yf5{bottom:438.444000pt;}
.y1ab{bottom:439.332000pt;}
.y1ce{bottom:439.585333pt;}
.y215{bottom:440.338667pt;}
.y1ec{bottom:440.844000pt;}
.y19{bottom:441.261333pt;}
.y16d{bottom:441.426667pt;}
.y12c{bottom:441.810667pt;}
.ycf{bottom:444.417333pt;}
.y40{bottom:449.774667pt;}
.ya4{bottom:451.745333pt;}
.y214{bottom:454.950667pt;}
.y1aa{bottom:455.273333pt;}
.y1cd{bottom:455.526667pt;}
.y18{bottom:455.873333pt;}
.y1eb{bottom:456.785333pt;}
.y16c{bottom:457.368000pt;}
.y12b{bottom:457.750667pt;}
.yce{bottom:460.357333pt;}
.y86{bottom:461.422667pt;}
.y3f{bottom:465.714667pt;}
.ya3{bottom:468.094667pt;}
.y213{bottom:470.433333pt;}
.y17{bottom:470.485333pt;}
.y1a9{bottom:471.213333pt;}
.y1cc{bottom:471.466667pt;}
.y1ea{bottom:473.218667pt;}
.y16b{bottom:473.308000pt;}
.y12a{bottom:473.690667pt;}
.yf4{bottom:474.141333pt;}
.ycd{bottom:476.297333pt;}
.y3e{bottom:481.654667pt;}
.ya2{bottom:484.034667pt;}
.y212{bottom:485.045333pt;}
.y16{bottom:485.318667pt;}
.y1a8{bottom:487.153333pt;}
.y1cb{bottom:487.570667pt;}
.y1e9{bottom:489.158667pt;}
.y16a{bottom:489.248000pt;}
.y129{bottom:491.181333pt;}
.ycc{bottom:492.237333pt;}
.y3d{bottom:497.594667pt;}
.y15{bottom:499.930667pt;}
.ya1{bottom:499.974667pt;}
.y211{bottom:500.528000pt;}
.y1a7{bottom:503.093333pt;}
.y1ca{bottom:503.512000pt;}
.y1e8{bottom:505.098667pt;}
.y169{bottom:505.188000pt;}
.y128{bottom:507.121333pt;}
.ycb{bottom:508.177333pt;}
.y85{bottom:510.168000pt;}
.y5d{bottom:510.476000pt;}
.y3c{bottom:513.534667pt;}
.y14{bottom:514.542667pt;}
.y210{bottom:515.138667pt;}
.ya0{bottom:515.916000pt;}
.y1a6{bottom:519.033333pt;}
.y1c9{bottom:519.452000pt;}
.yf3{bottom:520.466667pt;}
.y1e7{bottom:521.038667pt;}
.y168{bottom:521.128000pt;}
.y127{bottom:523.061333pt;}
.yca{bottom:524.117333pt;}
.y84{bottom:524.780000pt;}
.y5c{bottom:525.088000pt;}
.y13{bottom:529.153333pt;}
.y3b{bottom:529.476000pt;}
.y20f{bottom:529.750667pt;}
.y9f{bottom:531.856000pt;}
.y1c8{bottom:535.392000pt;}
.yf2{bottom:536.406667pt;}
.y1e6{bottom:536.978667pt;}
.y167{bottom:537.068000pt;}
.y126{bottom:539.001333pt;}
.yc9{bottom:540.058667pt;}
.y12{bottom:543.765333pt;}
.y20e{bottom:545.233333pt;}
.y3a{bottom:545.416000pt;}
.y9e{bottom:547.796000pt;}
.y5e{bottom:548.292000pt;}
.y51{bottom:548.600000pt;}
.y1c7{bottom:551.332000pt;}
.yf1{bottom:552.346667pt;}
.y166{bottom:553.009333pt;}
.y125{bottom:554.941333pt;}
.yc8{bottom:556.069333pt;}
.y11{bottom:558.377333pt;}
.y20d{bottom:559.845333pt;}
.y39{bottom:561.356000pt;}
.y1a5{bottom:563.732000pt;}
.y9d{bottom:563.736000pt;}
.yf0{bottom:568.286667pt;}
.y165{bottom:568.949333pt;}
.y124{bottom:570.882667pt;}
.y1e5{bottom:571.325333pt;}
.yc7{bottom:572.009333pt;}
.y10{bottom:572.989333pt;}
.y20c{bottom:575.328000pt;}
.y38{bottom:577.296000pt;}
.y1a4{bottom:578.342667pt;}
.y1c6{bottom:578.722667pt;}
.yef{bottom:584.226667pt;}
.y164{bottom:584.889333pt;}
.y123{bottom:586.822667pt;}
.yf{bottom:587.601333pt;}
.yc6{bottom:587.949333pt;}
.y20b{bottom:589.938667pt;}
.y9c{bottom:592.349333pt;}
.yee{bottom:600.930667pt;}
.y175{bottom:601.854667pt;}
.ye{bottom:602.213333pt;}
.y122{bottom:602.762667pt;}
.yc5{bottom:603.889333pt;}
.y20a{bottom:604.550667pt;}
.y37{bottom:607.917333pt;}
.y1e4{bottom:616.298667pt;}
.yed{bottom:616.870667pt;}
.yd{bottom:617.046667pt;}
.y121{bottom:618.702667pt;}
.y1c5{bottom:619.397333pt;}
.yc4{bottom:619.829333pt;}
.y209{bottom:620.033333pt;}
.yc{bottom:631.658667pt;}
.y1e3{bottom:632.238667pt;}
.yec{bottom:632.812000pt;}
.y163{bottom:632.892000pt;}
.y9b{bottom:634.245333pt;}
.y208{bottom:634.645333pt;}
.y1c4{bottom:635.337333pt;}
.yc3{bottom:635.769333pt;}
.y120{bottom:636.193333pt;}
.yb{bottom:646.270667pt;}
.y162{bottom:647.504000pt;}
.y1e2{bottom:648.178667pt;}
.yeb{bottom:648.752000pt;}
.y36{bottom:649.165333pt;}
.y207{bottom:650.128000pt;}
.y9a{bottom:650.185333pt;}
.y1c3{bottom:651.277333pt;}
.yc2{bottom:651.710667pt;}
.y11f{bottom:652.133333pt;}
.ya{bottom:660.882667pt;}
.y1e1{bottom:664.120000pt;}
.yea{bottom:664.692000pt;}
.y206{bottom:664.738667pt;}
.y35{bottom:665.105333pt;}
.y99{bottom:666.125333pt;}
.y1c2{bottom:667.217333pt;}
.yc1{bottom:667.650667pt;}
.y13b{bottom:671.016000pt;}
.y9{bottom:675.494667pt;}
.y1e0{bottom:680.060000pt;}
.y205{bottom:680.221333pt;}
.ye9{bottom:680.632000pt;}
.y34{bottom:681.045333pt;}
.y98{bottom:682.066667pt;}
.y1c1{bottom:683.157333pt;}
.yc0{bottom:683.590667pt;}
.y8{bottom:690.105333pt;}
.y204{bottom:694.833333pt;}
.y1df{bottom:696.000000pt;}
.ye8{bottom:696.572000pt;}
.y33{bottom:696.986667pt;}
.y97{bottom:698.006667pt;}
.y1c0{bottom:699.098667pt;}
.ybf{bottom:699.530667pt;}
.y11e{bottom:703.136000pt;}
.y7{bottom:704.717333pt;}
.y203{bottom:709.445333pt;}
.y1de{bottom:711.940000pt;}
.ye7{bottom:712.512000pt;}
.y32{bottom:712.926667pt;}
.y96{bottom:713.946667pt;}
.y6{bottom:719.329333pt;}
.y202{bottom:724.928000pt;}
.y104{bottom:726.648000pt;}
.y1dd{bottom:728.373333pt;}
.y31{bottom:728.866667pt;}
.y95{bottom:729.886667pt;}
.y201{bottom:739.538667pt;}
.y1dc{bottom:744.313333pt;}
.y30{bottom:744.806667pt;}
.ybe{bottom:746.380000pt;}
.y1bf{bottom:746.666667pt;}
.y200{bottom:754.150667pt;}
.ybd{bottom:757.006667pt;}
.y1be{bottom:757.825333pt;}
.y1db{bottom:760.253333pt;}
.y2f{bottom:760.746667pt;}
.ye6{bottom:761.278667pt;}
.ybc{bottom:767.633333pt;}
.y1bd{bottom:768.982667pt;}
.y1ff{bottom:769.633333pt;}
.ye5{bottom:772.437333pt;}
.y5{bottom:775.508000pt;}
.y1da{bottom:776.194667pt;}
.y2e{bottom:776.688000pt;}
.ybb{bottom:778.790667pt;}
.y1bc{bottom:780.141333pt;}
.ye4{bottom:783.594667pt;}
.y1fe{bottom:784.245333pt;}
.yba{bottom:789.949333pt;}
.y4{bottom:790.120000pt;}
.y1bb{bottom:791.300000pt;}
.y1d9{bottom:792.134667pt;}
.y2d{bottom:792.628000pt;}
.ye3{bottom:794.753333pt;}
.y1fd{bottom:798.857333pt;}
.yb9{bottom:801.108000pt;}
.y1ba{bottom:802.457333pt;}
.ye2{bottom:805.910667pt;}
.y1d8{bottom:808.074667pt;}
.y2c{bottom:808.568000pt;}
.yb8{bottom:812.265333pt;}
.y1b9{bottom:813.616000pt;}
.y1fc{bottom:814.338667pt;}
.ye1{bottom:817.069333pt;}
.y3{bottom:817.961333pt;}
.y1d7{bottom:824.014667pt;}
.y2b{bottom:824.508000pt;}
.y1b8{bottom:824.773333pt;}
.ye0{bottom:828.228000pt;}
.y1fb{bottom:828.950667pt;}
.yb7{bottom:829.058667pt;}
.y1b7{bottom:839.120000pt;}
.ydf{bottom:839.385333pt;}
.y2a{bottom:840.448000pt;}
.yb4{bottom:840.473333pt;}
.yb6{bottom:842.573333pt;}
.y1fa{bottom:843.562667pt;}
.y1b6{bottom:844.433333pt;}
.yb5{bottom:853.200000pt;}
.yde{bottom:853.732000pt;}
.y29{bottom:856.388000pt;}
.ydd{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y1f9{bottom:873.657333pt;}
.y1b5{bottom:876.712000pt;}
.y1{bottom:888.269333pt;}
.yb3{bottom:891.324000pt;}
.h18{height:21.123274pt;}
.he{height:23.830675pt;}
.h1e{height:24.320237pt;}
.h12{height:25.589197pt;}
.h13{height:26.035520pt;}
.h1a{height:26.752255pt;}
.h14{height:27.895200pt;}
.hc{height:28.349417pt;}
.h20{height:30.272698pt;}
.h1f{height:30.400296pt;}
.h10{height:30.640139pt;}
.h4{height:32.900710pt;}
.h3{height:33.140710pt;}
.h1c{height:33.299968pt;}
.h1b{height:33.440326pt;}
.h6{height:33.474560pt;}
.hf{height:34.044871pt;}
.h5{height:35.865600pt;}
.h2{height:36.556100pt;}
.h22{height:36.817434pt;}
.h21{height:36.822767pt;}
.h8{height:37.193707pt;}
.ha{height:39.687960pt;}
.h15{height:39.850400pt;}
.h7{height:44.632747pt;}
.h11{height:46.336759pt;}
.h16{height:47.288853pt;}
.h1{height:53.559147pt;}
.hb{height:68.037377pt;}
.h17{height:174.906434pt;}
.h19{height:230.538240pt;}
.h1d{height:299.699712pt;}
.h9{height:352.647960pt;}
.hd{height:353.264500pt;}
.h0{height:1056.000000pt;}
.w1{width:214.655280pt;}
.w2{width:218.041400pt;}
.w4{width:461.076480pt;}
.w3{width:461.119009pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x39{left:9.870682pt;}
.x38{left:13.073282pt;}
.x13{left:22.976390pt;}
.x18{left:24.288377pt;}
.x17{left:25.631562pt;}
.x20{left:28.120166pt;}
.x26{left:29.186978pt;}
.x46{left:32.111928pt;}
.x11{left:33.155236pt;}
.x19{left:34.302061pt;}
.x21{left:37.523085pt;}
.x23{left:38.588025pt;}
.x1a{left:40.488947pt;}
.xf{left:44.563604pt;}
.x49{left:46.552722pt;}
.x24{left:63.646877pt;}
.x22{left:64.688735pt;}
.x47{left:66.785913pt;}
.x3a{left:67.741984pt;}
.x4d{left:69.226176pt;}
.x14{left:71.306440pt;}
.x48{left:73.109907pt;}
.x25{left:90.466905pt;}
.xe{left:92.401067pt;}
.x1b{left:102.775795pt;}
.x12{left:121.696402pt;}
.xd{left:128.491385pt;}
.x15{left:132.434033pt;}
.x1d{left:134.530608pt;}
.x1c{left:135.703477pt;}
.x1f{left:160.096664pt;}
.x1e{left:161.437977pt;}
.x3d{left:162.410151pt;}
.x3c{left:165.612751pt;}
.x10{left:171.159598pt;}
.x3b{left:177.402556pt;}
.x8{left:179.686667pt;}
.xc{left:185.334667pt;}
.x51{left:186.824000pt;}
.x52{left:187.846667pt;}
.xa{left:188.984000pt;}
.x50{left:190.436000pt;}
.x28{left:192.969333pt;}
.x9{left:199.612000pt;}
.x56{left:201.272000pt;}
.xb{left:202.268000pt;}
.x2e{left:203.525333pt;}
.x2d{left:205.073333pt;}
.x2c{left:206.109333pt;}
.x29{left:210.776000pt;}
.x7{left:217.481333pt;}
.x44{left:219.812160pt;}
.x3e{left:221.259611pt;}
.x34{left:222.452000pt;}
.x3{left:224.117333pt;}
.x33{left:225.036000pt;}
.x1{left:226.972000pt;}
.x30{left:228.388000pt;}
.x32{left:229.425333pt;}
.x4{left:230.380000pt;}
.x35{left:231.442667pt;}
.x2{left:237.272000pt;}
.x2b{left:239.221333pt;}
.x2f{left:240.876000pt;}
.x4f{left:249.670667pt;}
.x54{left:264.753333pt;}
.x37{left:269.876283pt;}
.x36{left:270.969846pt;}
.x6{left:293.001333pt;}
.x42{left:314.949620pt;}
.x41{left:318.152220pt;}
.x3f{left:329.942024pt;}
.x4a{left:337.190865pt;}
.x45{left:354.642438pt;}
.x40{left:370.623489pt;}
.x4b{left:371.864851pt;}
.x43{left:373.307782pt;}
.x4c{left:374.751747pt;}
.x4e{left:376.522115pt;}
.x2a{left:406.564000pt;}
.x27{left:414.845333pt;}
.x16{left:418.800000pt;}
.x53{left:422.456000pt;}
.x31{left:481.808000pt;}
.x5{left:495.853333pt;}
.x55{left:542.084000pt;}
}




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