
    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_595a921ff07f5b940e2e77d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_e358b294043f7be9ce0c7c8e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cbe76c48a8c31c0294a60164.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_aaaa13d966ed234e94e81888.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf40364da22efa88f23a8238.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2d17116a0f0e9fd54e8a193c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c1c2c729b1e70ecdd7b530ba.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_06a3ff2fd29c435083b16301.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_8b75ff427d9f8eadc7a1285d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694000;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_22b0b2e65283326667efcbaa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_63fba2b867ff6dd710d8897e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.696000;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_ff789d0e64d94c34557807f3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_54247dab015ca78e9a38044a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.981934;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_f642cb24637077910d6ef77b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;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_8b9808a1ee489bfda2df5e36.woff2')format("woff");}.fff{font-family:fff;line-height:0.981934;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_4f6ddcb22c979b6ce34c2712.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.981934;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_6a9b04319590eb103ece5083.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_975436a05b086d24453d08cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918945;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:ff13;src:url('chunks/assets/font_faea5e934e2e3c14ce661dc1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936523;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:ff14;src:url('chunks/assets/font_0b742291e7b914e903a1eb93.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;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:-17.358000px;}
.v4{vertical-align:-4.500135px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.394934px;}
.v1{vertical-align:21.702000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000466px;}
.ls9{letter-spacing:0.001657px;}
.ls8{letter-spacing:0.001838px;}
.lsa{letter-spacing:1.078118px;}
.ls3{letter-spacing:2.987447px;}
.ls4{letter-spacing:2.992118px;}
.ls2{letter-spacing:19.904383px;}
.ls6{letter-spacing:21.173447px;}
.ls5{letter-spacing:22.889447px;}
.ls0{letter-spacing:29.887800px;}
.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;}
}
.ws1a{word-spacing:-31.515269px;}
.ws18{word-spacing:-31.163782px;}
.ws2{word-spacing:-28.921872px;}
.ws11{word-spacing:-24.101616px;}
.ws4{word-spacing:-20.084736px;}
.ws5b{word-spacing:-17.127156px;}
.ws33{word-spacing:-16.737168px;}
.wsa9{word-spacing:-13.389768px;}
.ws1c{word-spacing:-12.402414px;}
.ws1b{word-spacing:-12.401831px;}
.ws17{word-spacing:-12.401248px;}
.ws34{word-spacing:-3.526760px;}
.ws83{word-spacing:-3.347434px;}
.wsd2{word-spacing:-3.287658px;}
.wsdd{word-spacing:-2.749678px;}
.ws65{word-spacing:-2.689902px;}
.wsb4{word-spacing:-2.450800px;}
.wsd3{word-spacing:-2.331248px;}
.ws54{word-spacing:-2.092146px;}
.ws55{word-spacing:-2.048432px;}
.wsbb{word-spacing:-1.853044px;}
.wsc0{word-spacing:-1.613941px;}
.wsd5{word-spacing:-1.554166px;}
.ws36{word-spacing:-1.434614px;}
.wsb6{word-spacing:-1.315063px;}
.ws47{word-spacing:-1.243336px;}
.ws38{word-spacing:-1.075961px;}
.wsb2{word-spacing:-0.777083px;}
.wsc{word-spacing:-0.484186px;}
.wsd4{word-spacing:-0.418429px;}
.ws7b{word-spacing:-0.298878px;}
.wsdb{word-spacing:-0.239102px;}
.ws90{word-spacing:-0.119551px;}
.wsb1{word-spacing:-0.059776px;}
.wsaa{word-spacing:-0.049501px;}
.wsac{word-spacing:-0.030001px;}
.ws81{word-spacing:-0.009181px;}
.ws19{word-spacing:0.000000px;}
.wsa3{word-spacing:0.358654px;}
.ws9f{word-spacing:0.418429px;}
.wsda{word-spacing:0.436360px;}
.ws63{word-spacing:0.597756px;}
.ws35{word-spacing:0.777083px;}
.ws59{word-spacing:0.956410px;}
.wsba{word-spacing:1.434614px;}
.ws25{word-spacing:1.554166px;}
.wsa2{word-spacing:1.793268px;}
.ws50{word-spacing:1.853044px;}
.ws4f{word-spacing:1.865003px;}
.ws9d{word-spacing:2.092146px;}
.wse1{word-spacing:2.151922px;}
.ws1{word-spacing:2.169140px;}
.ws0{word-spacing:2.272433px;}
.wsc6{word-spacing:2.343209px;}
.wsae{word-spacing:2.450800px;}
.wsc2{word-spacing:2.570351px;}
.ws51{word-spacing:2.689902px;}
.ws52{word-spacing:2.749678px;}
.ws7a{word-spacing:2.809453px;}
.ws4e{word-spacing:3.108331px;}
.ws27{word-spacing:3.168107px;}
.ws46{word-spacing:3.172565px;}
.ws26{word-spacing:3.227882px;}
.ws45{word-spacing:3.287658px;}
.ws3{word-spacing:3.299635px;}
.ws10{word-spacing:3.389299px;}
.ws8f{word-spacing:3.407209px;}
.ws4a{word-spacing:3.538724px;}
.wsb{word-spacing:3.604493px;}
.wsb5{word-spacing:3.646312px;}
.ws8e{word-spacing:4.004965px;}
.wse2{word-spacing:4.006720px;}
.ws7e{word-spacing:4.184292px;}
.ws7c{word-spacing:4.244068px;}
.ws80{word-spacing:4.363619px;}
.ws37{word-spacing:4.483170px;}
.ws57{word-spacing:4.542946px;}
.ws49{word-spacing:4.590778px;}
.ws5c{word-spacing:4.662497px;}
.ws56{word-spacing:4.722272px;}
.ws5e{word-spacing:4.782048px;}
.wscd{word-spacing:4.841824px;}
.ws48{word-spacing:4.877701px;}
.ws7f{word-spacing:4.901599px;}
.wsa5{word-spacing:4.961375px;}
.wsc5{word-spacing:5.068984px;}
.wsad{word-spacing:5.080926px;}
.wsc3{word-spacing:5.140702px;}
.wsd9{word-spacing:5.200477px;}
.wsb7{word-spacing:5.260253px;}
.ws39{word-spacing:5.439580px;}
.ws24{word-spacing:5.618906px;}
.wsb8{word-spacing:5.678682px;}
.wsa6{word-spacing:5.977560px;}
.ws1f{word-spacing:6.097111px;}
.wsc4{word-spacing:6.503602px;}
.ws53{word-spacing:6.742733px;}
.ws21{word-spacing:6.814464px;}
.wsa0{word-spacing:7.113296px;}
.wsc1{word-spacing:7.232848px;}
.wsce{word-spacing:7.352399px;}
.wsa8{word-spacing:7.364372px;}
.ws22{word-spacing:7.770828px;}
.wscc{word-spacing:8.091257px;}
.wsb9{word-spacing:8.154114px;}
.ws5d{word-spacing:8.189257px;}
.ws77{word-spacing:8.428360px;}
.ws85{word-spacing:8.547911px;}
.wsc8{word-spacing:8.607686px;}
.ws23{word-spacing:8.787013px;}
.wsa1{word-spacing:8.966340px;}
.wsc7{word-spacing:9.026116px;}
.wsd0{word-spacing:9.384769px;}
.ws4b{word-spacing:9.743423px;}
.wse0{word-spacing:9.803198px;}
.ws79{word-spacing:9.862974px;}
.wsaf{word-spacing:9.982525px;}
.ws58{word-spacing:10.341179px;}
.wsa7{word-spacing:10.460730px;}
.wscb{word-spacing:10.580281px;}
.wsb3{word-spacing:10.699832px;}
.wsd{word-spacing:10.705882px;}
.ws5a{word-spacing:11.178037px;}
.wsbf{word-spacing:11.297588px;}
.wsbe{word-spacing:11.365237px;}
.wscf{word-spacing:11.476915px;}
.wsd8{word-spacing:11.835569px;}
.ws28{word-spacing:11.955120px;}
.ws78{word-spacing:12.672427px;}
.ws82{word-spacing:12.911530px;}
.wsd1{word-spacing:12.971305px;}
.ws13{word-spacing:13.150632px;}
.wsbd{word-spacing:13.412110px;}
.wsbc{word-spacing:13.412114px;}
.wsdc{word-spacing:13.449510px;}
.wsdf{word-spacing:14.346144px;}
.ws8d{word-spacing:14.465695px;}
.ws44{word-spacing:14.585246px;}
.ws43{word-spacing:14.645022px;}
.ws9{word-spacing:14.955955px;}
.wsf{word-spacing:15.386342px;}
.ws16{word-spacing:17.506835px;}
.wsc9{word-spacing:18.530436px;}
.wse{word-spacing:18.614246px;}
.ws7{word-spacing:19.313626px;}
.wsd6{word-spacing:19.367294px;}
.ws2f{word-spacing:19.486846px;}
.ws8{word-spacing:21.573158px;}
.wsca{word-spacing:22.356074px;}
.wsde{word-spacing:22.415850px;}
.ws8c{word-spacing:22.654952px;}
.ws5{word-spacing:22.702925px;}
.wsa{word-spacing:23.187110px;}
.ws6{word-spacing:23.617498px;}
.ws2a{word-spacing:24.866650px;}
.wsd7{word-spacing:24.926425px;}
.ws8b{word-spacing:25.285079px;}
.ws31{word-spacing:27.018571px;}
.ws2e{word-spacing:27.496776px;}
.ws4c{word-spacing:29.529146px;}
.ws30{word-spacing:30.844210px;}
.wsab{word-spacing:31.848769px;}
.ws29{word-spacing:34.012316px;}
.ws2d{word-spacing:36.343565px;}
.ws2b{word-spacing:37.180423px;}
.ws5f{word-spacing:39.690998px;}
.wsb0{word-spacing:48.891717px;}
.ws2c{word-spacing:50.151728px;}
.ws84{word-spacing:54.933776px;}
.ws60{word-spacing:54.993552px;}
.ws32{word-spacing:85.240006px;}
.ws8a{word-spacing:150.514961px;}
.ws89{word-spacing:225.173768px;}
.ws87{word-spacing:240.595873px;}
.ws66{word-spacing:255.363738px;}
.ws88{word-spacing:258.588329px;}
.ws64{word-spacing:284.357768px;}
.ws86{word-spacing:313.701432px;}
.ws62{word-spacing:317.415906px;}
.ws93{word-spacing:332.234810px;}
.wsa4{word-spacing:336.542647px;}
.ws74{word-spacing:342.516563px;}
.ws6c{word-spacing:348.434347px;}
.ws92{word-spacing:348.914573px;}
.ws73{word-spacing:358.416872px;}
.ws6d{word-spacing:380.832722px;}
.ws75{word-spacing:384.957239px;}
.ws6f{word-spacing:408.150172px;}
.ws61{word-spacing:413.176417px;}
.ws6b{word-spacing:418.013146px;}
.ws71{word-spacing:434.929640px;}
.ws68{word-spacing:444.493736px;}
.ws9c{word-spacing:450.172069px;}
.ws70{word-spacing:452.443891px;}
.ws6a{word-spacing:453.041647px;}
.ws67{word-spacing:456.508632px;}
.ws76{word-spacing:460.633148px;}
.ws72{word-spacing:464.757665px;}
.ws99{word-spacing:483.765956px;}
.ws69{word-spacing:488.847232px;}
.ws97{word-spacing:496.679856px;}
.ws96{word-spacing:502.057290px;}
.ws98{word-spacing:508.692382px;}
.ws6e{word-spacing:517.121090px;}
.ws94{word-spacing:520.288848px;}
.ws9b{word-spacing:526.983715px;}
.ws95{word-spacing:538.281304px;}
.ws9a{word-spacing:538.580182px;}
.ws91{word-spacing:545.275049px;}
.ws7d{word-spacing:765.329653px;}
.ws3d{word-spacing:797.649146px;}
.ws4d{word-spacing:834.411140px;}
.ws3a{word-spacing:857.125868px;}
.ws42{word-spacing:860.831956px;}
.ws41{word-spacing:862.565448px;}
.ws3c{word-spacing:887.372322px;}
.ws3b{word-spacing:920.727107px;}
.ws3e{word-spacing:960.418105px;}
.ws9e{word-spacing:970.221304px;}
.ws40{word-spacing:987.137798px;}
.ws3f{word-spacing:1000.407982px;}
.ws1e{word-spacing:1407.902447px;}
.ws12{word-spacing:1632.183528px;}
.ws20{word-spacing:1653.998592px;}
.ws1d{word-spacing:1663.204034px;}
.ws14{word-spacing:1747.849314px;}
.ws15{word-spacing:1789.811785px;}
._8e{margin-left:-1920.743762px;}
._93{margin-left:-562.709840px;}
._90{margin-left:-425.522891px;}
._8f{margin-left:-399.415870px;}
._92{margin-left:-366.989605px;}
._91{margin-left:-360.180556px;}
._15{margin-left:-34.789399px;}
._67{margin-left:-32.921070px;}
._11{margin-left:-31.501741px;}
._f{margin-left:-29.887800px;}
._12{margin-left:-10.102076px;}
._0{margin-left:-7.953515px;}
._94{margin-left:-6.671002px;}
._40{margin-left:-5.650459px;}
._5{margin-left:-4.572864px;}
._1{margin-left:-2.685602px;}
._2{margin-left:-1.116151px;}
._3{width:1.865011px;}
._24{width:2.988780px;}
._10{width:5.575547px;}
._9{width:15.655334px;}
._21{width:17.334924px;}
._9a{width:18.410885px;}
._d{width:19.905275px;}
._19{width:21.024744px;}
._2f{width:22.140930px;}
._18{width:23.627668px;}
._20{width:25.105752px;}
._17{width:26.628365px;}
._b1{width:28.169555px;}
._8d{width:29.182499px;}
._1a{width:30.832242px;}
._c{width:33.018602px;}
._13{width:34.402464px;}
._a{width:37.497485px;}
._b3{width:39.420343px;}
._1d{width:42.082022px;}
._8{width:43.253914px;}
._ae{width:44.695882px;}
._1b{width:45.888076px;}
._65{width:48.059582px;}
._b0{width:49.380679px;}
._b2{width:50.484763px;}
._b5{width:53.180660px;}
._8c{width:54.678407px;}
._7{width:58.788036px;}
._14{width:64.046653px;}
._b{width:69.933602px;}
._6{width:72.305050px;}
._1e{width:74.181520px;}
._b4{width:75.257480px;}
._4f{width:77.472718px;}
._85{width:79.458078px;}
._54{width:81.836336px;}
._4{width:86.005709px;}
._82{width:87.750581px;}
._49{width:88.949633px;}
._1c{width:92.084078px;}
._e{width:94.573735px;}
._4d{width:95.584724px;}
._4b{width:100.785202px;}
._70{width:102.993359px;}
._99{width:104.188871px;}
._43{width:107.181191px;}
._41{width:112.381668px;}
._53{width:113.876058px;}
._4e{width:118.717882px;}
._50{width:122.005540px;}
._47{width:125.173646px;}
._6c{width:129.095711px;}
._45{width:130.374124px;}
._3e{width:132.167392px;}
._6d{width:133.853874px;}
._48{width:135.395274px;}
._3c{width:137.367869px;}
._1f{width:139.635802px;}
._4a{width:142.030366px;}
._4c{width:145.318024px;}
._6b{width:152.280006px;}
._3f{width:153.626832px;}
._42{width:156.914490px;}
._51{width:160.321699px;}
._52{width:163.609357px;}
._98{width:167.849885px;}
._44{width:171.619288px;}
._46{width:174.906946px;}
._3b{width:178.613033px;}
._3d{width:181.900691px;}
._97{width:188.118833px;}
._35{width:195.051323px;}
._81{width:215.778348px;}
._73{width:220.489205px;}
._6e{width:231.018348px;}
._34{width:236.296487px;}
._36{width:239.584145px;}
._76{width:246.149192px;}
._8b{width:250.336262px;}
._69{width:253.269217px;}
._7a{width:255.967136px;}
._87{width:261.406716px;}
._72{width:265.576262px;}
._6a{width:271.207136px;}
._79{width:272.622580px;}
._6f{width:276.646716px;}
._74{width:287.095478px;}
._68{width:297.293977px;}
._77{width:299.836784px;}
._75{width:303.892422px;}
._88{width:308.689216px;}
._33{width:319.324795px;}
._31{width:324.525272px;}
._7d{width:334.131966px;}
._56{width:338.094334px;}
._9b{width:349.426298px;}
._84{width:361.997083px;}
._8a{width:364.413908px;}
._30{width:365.770436px;}
._32{width:369.058094px;}
._71{width:377.237083px;}
._55{width:379.339498px;}
._78{width:381.310927px;}
._57{width:382.627156px;}
._86{width:397.577908px;}
._2d{width:407.732908px;}
._7b{width:429.907585px;}
._7f{width:434.236396px;}
._2c{width:448.978072px;}
._2e{width:452.265730px;}
._95{width:458.887111px;}
._7e{width:461.230904px;}
._3a{width:462.367806px;}
._a2{width:466.351672px;}
._38{width:467.568283px;}
._80{width:469.456192px;}
._7c{width:472.643744px;}
._a0{width:500.252054px;}
._83{width:506.341277px;}
._37{width:508.813447px;}
._39{width:512.101105px;}
._af{width:514.578984px;}
._9e{width:518.794458px;}
._9f{width:525.429550px;}
._59{width:528.718722px;}
._89{width:533.360468px;}
._9c{width:537.026016px;}
._a1{width:543.720883px;}
._9d{width:555.018472px;}
._61{width:557.112132px;}
._96{width:561.643393px;}
._60{width:598.357296px;}
._62{width:601.644954px;}
._a3{width:633.028000px;}
._25{width:636.673456px;}
._5a{width:658.192672px;}
._58{width:682.879994px;}
._5e{width:686.586082px;}
._a4{width:721.734134px;}
._5d{width:727.831246px;}
._5f{width:731.118904px;}
._64{width:766.087630px;}
._5b{width:778.640506px;}
._a7{width:781.366298px;}
._29{width:786.291782px;}
._28{width:787.965499px;}
._63{width:797.529595px;}
._66{width:803.351006px;}
._22{width:804.571314px;}
._23{width:821.081182px;}
._2b{width:824.428615px;}
._2a{width:826.162108px;}
._26{width:857.723624px;}
._5c{width:867.467047px;}
._27{width:890.958858px;}
._ad{width:898.291672px;}
._ac{width:932.192054px;}
._aa{width:950.734458px;}
._a6{width:957.369550px;}
._a8{width:968.966016px;}
._a9{width:975.660883px;}
._ab{width:987.257350px;}
._a5{width:993.952217px;}
._16{width:1357.607282px;}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:9.180801px;}
.fsd{font-size:30.000900px;}
.fsa{font-size:35.342946px;}
.fs6{font-size:35.865600px;}
.fs8{font-size:38.382328px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fsc{font-size:49.501485px;}
.fs2{font-size:53.798400px;}
.fs9{font-size:54.028885px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y17c{bottom:4.089966px;}
.y17e{bottom:5.215002px;}
.y17a{bottom:5.622239px;}
.y17b{bottom:6.747273px;}
.y17d{bottom:11.221040px;}
.y66{bottom:12.555778px;}
.y123{bottom:14.085497px;}
.ybf{bottom:17.701440px;}
.y112{bottom:35.530727px;}
.y68{bottom:42.370909px;}
.y12b{bottom:50.450125px;}
.yc1{bottom:59.669431px;}
.y121{bottom:64.748943px;}
.y67{bottom:72.186040px;}
.y12f{bottom:79.108591px;}
.y129{bottom:90.680959px;}
.yc0{bottom:101.637422px;}
.y12c{bottom:106.348766px;}
.yc2{bottom:111.767368px;}
.y122{bottom:128.098901px;}
.y12d{bottom:128.853189px;}
.y1f{bottom:134.047500px;}
.y126{bottom:139.732098px;}
.y11d{bottom:142.968237px;}
.y125{bottom:153.445671px;}
.y12e{bottom:165.321547px;}
.y124{bottom:178.681027px;}
.y178{bottom:178.879500px;}
.y87{bottom:178.884000px;}
.y1a1{bottom:182.317500px;}
.ybd{bottom:184.725000px;}
.y64{bottom:184.978500px;}
.y14e{bottom:189.223500px;}
.yf1{bottom:192.136500px;}
.y1c4{bottom:192.337500px;}
.y1e{bottom:192.526500px;}
.y142{bottom:193.449000px;}
.y1a0{bottom:196.515000px;}
.y177{bottom:197.416500px;}
.y86{bottom:197.421000px;}
.y63{bottom:199.176000px;}
.y11e{bottom:203.748621px;}
.y11f{bottom:204.002825px;}
.yb3{bottom:204.243000px;}
.y120{bottom:204.255748px;}
.y14d{bottom:207.156000px;}
.y15e{bottom:207.814500px;}
.yf0{bottom:210.069000px;}
.y1c3{bottom:210.270000px;}
.y1d{bottom:210.459000px;}
.ybc{bottom:211.624500px;}
.y62{bottom:213.372000px;}
.y176{bottom:214.765500px;}
.y127{bottom:214.834351px;}
.y19f{bottom:215.052000px;}
.y141{bottom:218.892000px;}
.yb2{bottom:222.177000px;}
.y14c{bottom:225.088500px;}
.y19e{bottom:225.273000px;}
.y15d{bottom:225.747000px;}
.yef{bottom:228.001500px;}
.y1c2{bottom:228.204000px;}
.y1c{bottom:228.391500px;}
.ybb{bottom:229.557000px;}
.y61{bottom:231.909000px;}
.y175{bottom:232.698000px;}
.yb1{bottom:240.109500px;}
.y15c{bottom:243.679500px;}
.y19d{bottom:243.810000px;}
.y11a{bottom:244.108500px;}
.yee{bottom:245.934000px;}
.y1c1{bottom:246.136500px;}
.y1b{bottom:246.324000px;}
.yba{bottom:247.489500px;}
.y11c{bottom:247.816208px;}
.y41{bottom:248.424000px;}
.y14b{bottom:250.531500px;}
.y174{bottom:250.630500px;}
.y60{bottom:254.400000px;}
.y140{bottom:254.923500px;}
.yb0{bottom:258.042000px;}
.y19c{bottom:258.372000px;}
.y15b{bottom:261.612000px;}
.y119{bottom:262.041000px;}
.yed{bottom:263.868000px;}
.y1c0{bottom:264.069000px;}
.y12a{bottom:264.877334px;}
.yb9{bottom:265.422000px;}
.y40{bottom:266.356500px;}
.y85{bottom:269.092500px;}
.y109{bottom:271.377000px;}
.y5f{bottom:272.332500px;}
.y13f{bottom:272.856000px;}
.yaf{bottom:275.974500px;}
.y173{bottom:277.530000px;}
.y1a{bottom:279.201000px;}
.y15a{bottom:279.544500px;}
.y19b{bottom:280.951500px;}
.yec{bottom:281.800500px;}
.y1bf{bottom:282.001500px;}
.ydd{bottom:283.306500px;}
.yb8{bottom:283.354500px;}
.y3f{bottom:284.289000px;}
.y84{bottom:287.026500px;}
.y118{bottom:288.940500px;}
.y14a{bottom:290.136000px;}
.y13e{bottom:290.788500px;}
.y128{bottom:292.335215px;}
.yae{bottom:293.907000px;}
.y172{bottom:295.462500px;}
.y159{bottom:297.477000px;}
.y19a{bottom:298.885500px;}
.y5e{bottom:299.232000px;}
.yeb{bottom:299.733000px;}
.y1be{bottom:299.934000px;}
.ydc{bottom:301.239000px;}
.y83{bottom:304.959000px;}
.y117{bottom:306.873000px;}
.y149{bottom:308.068500px;}
.y13d{bottom:308.722500px;}
.yb7{bottom:310.948500px;}
.y108{bottom:310.981500px;}
.y3e{bottom:311.188500px;}
.yad{bottom:311.839500px;}
.y19{bottom:312.078000px;}
.y158{bottom:315.411000px;}
.y199{bottom:316.818000px;}
.yea{bottom:317.665500px;}
.y1bd{bottom:317.866500px;}
.ydb{bottom:319.173000px;}
.y82{bottom:322.891500px;}
.y171{bottom:323.056500px;}
.y148{bottom:326.001000px;}
.y5d{bottom:326.131500px;}
.y107{bottom:328.914000px;}
.y3d{bottom:329.121000px;}
.yac{bottom:329.773500px;}
.y18{bottom:330.010500px;}
.y157{bottom:333.343500px;}
.y116{bottom:333.772500px;}
.y198{bottom:334.750500px;}
.ye9{bottom:335.598000px;}
.y1bc{bottom:335.800500px;}
.yda{bottom:337.105500px;}
.y81{bottom:340.824000px;}
.y147{bottom:343.933500px;}
.y5c{bottom:344.064000px;}
.y3c{bottom:347.053500px;}
.yab{bottom:347.706000px;}
.y156{bottom:351.276000px;}
.y115{bottom:351.705000px;}
.yb6{bottom:352.803000px;}
.ye8{bottom:353.530500px;}
.y1bb{bottom:353.733000px;}
.yd9{bottom:355.038000px;}
.y80{bottom:358.756500px;}
.y197{bottom:361.650000px;}
.y146{bottom:361.866000px;}
.y5b{bottom:361.996500px;}
.y17{bottom:362.887500px;}
.y170{bottom:363.951000px;}
.y3b{bottom:364.987500px;}
.yaa{bottom:365.638500px;}
.y13c{bottom:366.292500px;}
.y155{bottom:369.208500px;}
.yb5{bottom:370.735500px;}
.ye7{bottom:371.464500px;}
.y1ba{bottom:371.665500px;}
.yd8{bottom:372.970500px;}
.y7f{bottom:376.689000px;}
.y196{bottom:379.582500px;}
.y145{bottom:379.800000px;}
.y5a{bottom:379.929000px;}
.y16f{bottom:381.885000px;}
.y3a{bottom:382.920000px;}
.ya9{bottom:383.571000px;}
.y13b{bottom:384.225000px;}
.y106{bottom:386.484000px;}
.y154{bottom:387.141000px;}
.ye6{bottom:389.397000px;}
.y1b9{bottom:389.598000px;}
.y114{bottom:390.484500px;}
.yd7{bottom:390.903000px;}
.y7e{bottom:394.623000px;}
.y195{bottom:397.515000px;}
.y144{bottom:397.732500px;}
.yb4{bottom:398.329500px;}
.y39{bottom:400.852500px;}
.ya8{bottom:401.503500px;}
.y13a{bottom:402.157500px;}
.y105{bottom:404.416500px;}
.y153{bottom:405.075000px;}
.y1b8{bottom:407.530500px;}
.y113{bottom:408.417000px;}
.yd6{bottom:408.835500px;}
.y16{bottom:412.329000px;}
.y7d{bottom:412.555500px;}
.ye5{bottom:414.840000px;}
.y194{bottom:415.447500px;}
.y59{bottom:415.795500px;}
.y38{bottom:418.785000px;}
.ya7{bottom:419.436000px;}
.y139{bottom:420.090000px;}
.y104{bottom:422.349000px;}
.y152{bottom:423.007500px;}
.y1b7{bottom:425.463000px;}
.yd5{bottom:426.769500px;}
.y15{bottom:428.767500px;}
.y7c{bottom:430.488000px;}
.y16e{bottom:431.413500px;}
.y193{bottom:433.380000px;}
.y58{bottom:433.728000px;}
.y37{bottom:436.717500px;}
.ya6{bottom:437.370000px;}
.y103{bottom:440.283000px;}
.y151{bottom:440.940000px;}
.y111{bottom:441.293612px;}
.y1b6{bottom:443.397000px;}
.yd4{bottom:444.702000px;}
.y14{bottom:445.206000px;}
.y138{bottom:445.533000px;}
.y7b{bottom:448.420500px;}
.y192{bottom:451.312500px;}
.y57{bottom:451.660500px;}
.ye4{bottom:454.443000px;}
.y36{bottom:454.650000px;}
.ya5{bottom:455.302500px;}
.y16d{bottom:456.856500px;}
.y102{bottom:458.215500px;}
.y1b5{bottom:461.329500px;}
.y13{bottom:461.644500px;}
.yd3{bottom:462.634500px;}
.y7a{bottom:466.353000px;}
.y150{bottom:466.383000px;}
.y191{bottom:469.246500px;}
.ye3{bottom:472.375500px;}
.y35{bottom:472.584000px;}
.ya4{bottom:473.235000px;}
.y101{bottom:476.148000px;}
.y12{bottom:478.083000px;}
.y1b4{bottom:479.262000px;}
.yd2{bottom:480.567000px;}
.y79{bottom:484.285500px;}
.y137{bottom:484.479000px;}
.y190{bottom:487.179000px;}
.y56{bottom:487.525500px;}
.y34{bottom:490.516500px;}
.ya3{bottom:491.167500px;}
.y100{bottom:494.080500px;}
.y11{bottom:494.521500px;}
.y16c{bottom:495.802500px;}
.y1b3{bottom:497.194500px;}
.yd1{bottom:498.499500px;}
.y78{bottom:502.219500px;}
.y14f{bottom:505.329000px;}
.y55{bottom:505.458000px;}
.y33{bottom:508.449000px;}
.ya2{bottom:509.100000px;}
.y10{bottom:510.960000px;}
.yff{bottom:512.013000px;}
.y18f{bottom:514.078500px;}
.y1b2{bottom:515.127000px;}
.y136{bottom:515.128500px;}
.yd0{bottom:516.432000px;}
.y77{bottom:520.152000px;}
.y54{bottom:523.392000px;}
.y16b{bottom:524.913000px;}
.ya1{bottom:527.032500px;}
.y143{bottom:527.034000px;}
.yf{bottom:527.398500px;}
.ye2{bottom:529.945500px;}
.y18e{bottom:532.011000px;}
.y1b1{bottom:533.059500px;}
.y135{bottom:533.062500px;}
.ycf{bottom:534.366000px;}
.y110{bottom:535.119000px;}
.y32{bottom:535.348500px;}
.y76{bottom:538.084500px;}
.ye{bottom:543.837000px;}
.ya0{bottom:544.966500px;}
.ye1{bottom:547.878000px;}
.yfe{bottom:547.879500px;}
.y18d{bottom:549.943500px;}
.y1b0{bottom:550.993500px;}
.y134{bottom:550.995000px;}
.yce{bottom:552.298500px;}
.y10f{bottom:553.051500px;}
.y31{bottom:553.281000px;}
.y75{bottom:556.017000px;}
.y53{bottom:559.257000px;}
.yd{bottom:560.275500px;}
.y9f{bottom:562.899000px;}
.yfd{bottom:565.812000px;}
.y18c{bottom:567.876000px;}
.y1af{bottom:568.926000px;}
.y133{bottom:568.927500px;}
.y10e{bottom:570.985500px;}
.ye0{bottom:573.321000px;}
.y74{bottom:573.949500px;}
.y16a{bottom:574.443000px;}
.yc{bottom:576.714000px;}
.y52{bottom:577.189500px;}
.ycd{bottom:577.741500px;}
.y30{bottom:580.180500px;}
.y9e{bottom:580.831500px;}
.yfc{bottom:583.744500px;}
.y18b{bottom:585.808500px;}
.y1ae{bottom:586.858500px;}
.y10d{bottom:588.918000px;}
.y73{bottom:591.882000px;}
.y169{bottom:592.375500px;}
.yb{bottom:593.151000px;}
.y132{bottom:596.521500px;}
.y2f{bottom:598.113000px;}
.y9d{bottom:598.764000px;}
.yfb{bottom:601.677000px;}
.y18a{bottom:603.741000px;}
.y51{bottom:604.089000px;}
.y10c{bottom:606.850500px;}
.y72{bottom:609.816000px;}
.y168{bottom:610.308000px;}
.y1ad{bottom:610.638000px;}
.ydf{bottom:612.925500px;}
.y2e{bottom:616.045500px;}
.ycc{bottom:616.507500px;}
.y9c{bottom:616.696500px;}
.ya{bottom:617.809500px;}
.yfa{bottom:619.609500px;}
.y10b{bottom:624.783000px;}
.y71{bottom:627.748500px;}
.y167{bottom:628.240500px;}
.yde{bottom:630.858000px;}
.y2d{bottom:633.978000px;}
.y9b{bottom:634.630500px;}
.y189{bottom:636.489000px;}
.yf9{bottom:637.542000px;}
.y131{bottom:644.431500px;}
.y70{bottom:645.681000px;}
.ycb{bottom:650.071500px;}
.y2c{bottom:651.910500px;}
.y10a{bottom:652.377000px;}
.y9a{bottom:652.563000px;}
.y166{bottom:653.683500px;}
.yf8{bottom:655.476000px;}
.y9{bottom:656.664000px;}
.y50{bottom:658.072500px;}
.y1ac{bottom:660.081000px;}
.y130{bottom:662.364000px;}
.y2b{bottom:669.843000px;}
.y99{bottom:670.495500px;}
.y6f{bottom:671.124000px;}
.yf7{bottom:673.408500px;}
.y4f{bottom:676.005000px;}
.yca{bottom:676.971000px;}
.y1ab{bottom:678.013500px;}
.y188{bottom:685.930500px;}
.y98{bottom:688.428000px;}
.y165{bottom:689.716500px;}
.yf6{bottom:691.341000px;}
.y4e{bottom:693.937500px;}
.yc9{bottom:694.903500px;}
.y11b{bottom:695.241036px;}
.y1aa{bottom:695.946000px;}
.y2a{bottom:697.437000px;}
.y8{bottom:700.270500px;}
.y187{bottom:703.863000px;}
.y97{bottom:706.360500px;}
.yf5{bottom:709.273500px;}
.y6e{bottom:710.070000px;}
.y4d{bottom:711.870000px;}
.yc8{bottom:712.836000px;}
.y164{bottom:715.912500px;}
.y7{bottom:721.191000px;}
.y96{bottom:724.293000px;}
.y1a9{bottom:728.692500px;}
.y4c{bottom:729.804000px;}
.y29{bottom:733.173000px;}
.y163{bottom:733.845000px;}
.yf4{bottom:734.716500px;}
.y6d{bottom:737.664000px;}
.y186{bottom:739.728000px;}
.yc7{bottom:739.735500px;}
.y6{bottom:742.113000px;}
.y95{bottom:742.227000px;}
.y4b{bottom:747.736500px;}
.y162{bottom:751.777500px;}
.yc6{bottom:757.668000px;}
.y94{bottom:760.159500px;}
.y5{bottom:763.035000px;}
.y4a{bottom:765.669000px;}
.y161{bottom:769.710000px;}
.y185{bottom:772.604778px;}
.yf3{bottom:774.319500px;}
.yc5{bottom:775.600500px;}
.y93{bottom:778.092000px;}
.y1a8{bottom:778.135500px;}
.y6c{bottom:779.518500px;}
.y28{bottom:782.614500px;}
.y49{bottom:783.601500px;}
.y160{bottom:787.642500px;}
.y1ca{bottom:788.593500px;}
.yf2{bottom:792.252000px;}
.yc4{bottom:793.534500px;}
.y92{bottom:796.024500px;}
.y1a7{bottom:796.068000px;}
.y6b{bottom:797.451000px;}
.y48{bottom:801.534000px;}
.y1c9{bottom:806.526000px;}
.y91{bottom:813.957000px;}
.y1a6{bottom:814.000500px;}
.y15f{bottom:815.236500px;}
.y27{bottom:815.491500px;}
.y184{bottom:816.117000px;}
.y4{bottom:824.458500px;}
.y47{bottom:826.977000px;}
.y6a{bottom:830.197500px;}
.y90{bottom:831.889500px;}
.y1a5{bottom:831.933000px;}
.y183{bottom:834.049500px;}
.yc3{bottom:841.444500px;}
.y1c8{bottom:842.391000px;}
.y26{bottom:848.368500px;}
.y8f{bottom:849.823500px;}
.y1a4{bottom:849.865500px;}
.y182{bottom:851.982000px;}
.y3{bottom:857.335500px;}
.y1c7{bottom:860.323500px;}
.y46{bottom:865.744500px;}
.y8e{bottom:867.756000px;}
.y1a3{bottom:867.799500px;}
.y181{bottom:869.916000px;}
.ybe{bottom:874.320533px;}
.y69{bottom:878.107500px;}
.y1c6{bottom:878.256000px;}
.y25{bottom:881.245500px;}
.y8d{bottom:885.688500px;}
.y2{bottom:890.211000px;}
.y1c5{bottom:896.190000px;}
.y180{bottom:897.510000px;}
.y45{bottom:899.308500px;}
.y1a2{bottom:900.546000px;}
.y8c{bottom:903.621000px;}
.y65{bottom:910.984276px;}
.y24{bottom:914.122500px;}
.y44{bottom:917.241000px;}
.y8b{bottom:921.553500px;}
.y1{bottom:923.088000px;}
.y23{bottom:932.055000px;}
.y43{bottom:935.173500px;}
.y8a{bottom:939.486000px;}
.y17f{bottom:945.420000px;}
.y22{bottom:949.987500px;}
.y42{bottom:953.106000px;}
.y89{bottom:957.420000px;}
.y21{bottom:967.920000px;}
.y179{bottom:978.296949px;}
.y88{bottom:982.861500px;}
.y20{bottom:985.852500px;}
.h15{height:6.975257px;}
.h18{height:22.266293px;}
.h16{height:22.500675px;}
.hb{height:24.209280px;}
.h13{height:26.852356px;}
.he{height:29.161574px;}
.h19{height:34.902414px;}
.hc{height:35.865450px;}
.h17{height:37.609527px;}
.h3{height:37.658880px;}
.h4{height:40.348800px;}
.h10{height:41.049289px;}
.ha{height:41.484266px;}
.h6{height:41.842920px;}
.h7{height:44.831700px;}
.h11{height:44.837700px;}
.h9{height:49.904047px;}
.h8{height:50.211840px;}
.h2{height:53.798400px;}
.h5{height:60.254040px;}
.h12{height:75.729600px;}
.h1{height:77.366008px;}
.hd{height:89.812290px;}
.hf{height:126.477225px;}
.h14{height:305.546880px;}
.h0{height:1188.000000px;}
.w5{width:69.752093px;}
.w4{width:515.528400px;}
.w2{width:515.563650px;}
.w1{width:515.563680px;}
.w3{width:515.592360px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4a{left:3.726674px;}
.x3e{left:6.483804px;}
.x4d{left:7.822501px;}
.x14{left:20.532885px;}
.x36{left:27.236333px;}
.x23{left:34.240420px;}
.x15{left:39.507124px;}
.x22{left:47.504387px;}
.x4b{left:52.589469px;}
.x33{left:69.208817px;}
.x34{left:72.225329px;}
.x16{left:79.362398px;}
.x24{left:97.426233px;}
.x18{left:132.225137px;}
.x17{left:141.006581px;}
.x40{left:145.498850px;}
.x37{left:147.301970px;}
.x39{left:152.793930px;}
.x10{left:199.158000px;}
.xd{left:200.652000px;}
.x4{left:202.929000px;}
.x12{left:208.498500px;}
.x46{left:211.636500px;}
.x13{left:215.946000px;}
.x4f{left:220.303500px;}
.x50{left:221.574000px;}
.xe{left:223.068000px;}
.x38{left:224.888635px;}
.x2{left:226.428000px;}
.x8{left:235.971000px;}
.xc{left:238.012500px;}
.x2b{left:241.897500px;}
.x2f{left:247.173822px;}
.x1b{left:249.027177px;}
.x5{left:250.075500px;}
.x1{left:252.909000px;}
.xb{left:258.187500px;}
.x43{left:259.756500px;}
.x2e{left:270.082500px;}
.x1a{left:271.464181px;}
.x47{left:272.704500px;}
.x7{left:280.005000px;}
.x35{left:281.111274px;}
.x44{left:285.862500px;}
.x3f{left:293.468665px;}
.x3b{left:295.282030px;}
.x19{left:296.356990px;}
.x3{left:299.365500px;}
.x28{left:305.200500px;}
.x42{left:308.481000px;}
.x4c{left:310.443000px;}
.x45{left:312.060000px;}
.x4e{left:315.726000px;}
.x30{left:319.209228px;}
.x11{left:321.421500px;}
.x6{left:323.241000px;}
.x27{left:326.697000px;}
.x25{left:334.469202px;}
.x1e{left:342.180000px;}
.x48{left:343.479000px;}
.x2d{left:347.596500px;}
.x2c{left:360.612000px;}
.x41{left:361.816500px;}
.x3d{left:371.041244px;}
.x3a{left:376.081144px;}
.x26{left:407.124968px;}
.x31{left:411.891901px;}
.x3c{left:415.971332px;}
.x9{left:417.441000px;}
.x49{left:423.559967px;}
.x1d{left:425.588027px;}
.xa{left:427.999500px;}
.x1c{left:430.231828px;}
.x21{left:450.964500px;}
.xf{left:454.699500px;}
.x20{left:465.654000px;}
.x1f{left:467.403000px;}
.x32{left:492.362534px;}
.x29{left:599.028000px;}
.x2a{left:600.777000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-4.000120pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.906608pt;}
.v1{vertical-align:19.290667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000414pt;}
.ls9{letter-spacing:0.001473pt;}
.ls8{letter-spacing:0.001634pt;}
.lsa{letter-spacing:0.958327pt;}
.ls3{letter-spacing:2.655508pt;}
.ls4{letter-spacing:2.659661pt;}
.ls2{letter-spacing:17.692785pt;}
.ls6{letter-spacing:18.820842pt;}
.ls5{letter-spacing:20.346175pt;}
.ls0{letter-spacing:26.566933pt;}
.ws1a{word-spacing:-28.013572pt;}
.ws18{word-spacing:-27.701139pt;}
.ws2{word-spacing:-25.708331pt;}
.ws11{word-spacing:-21.423659pt;}
.ws4{word-spacing:-17.853099pt;}
.ws5b{word-spacing:-15.224139pt;}
.ws33{word-spacing:-14.877483pt;}
.wsa9{word-spacing:-11.902016pt;}
.ws1c{word-spacing:-11.024368pt;}
.ws1b{word-spacing:-11.023850pt;}
.ws17{word-spacing:-11.023331pt;}
.ws34{word-spacing:-3.134898pt;}
.ws83{word-spacing:-2.975497pt;}
.wsd2{word-spacing:-2.922363pt;}
.wsdd{word-spacing:-2.444158pt;}
.ws65{word-spacing:-2.391024pt;}
.wsb4{word-spacing:-2.178489pt;}
.wsd3{word-spacing:-2.072221pt;}
.ws54{word-spacing:-1.859685pt;}
.ws55{word-spacing:-1.820829pt;}
.wsbb{word-spacing:-1.647150pt;}
.wsc0{word-spacing:-1.434614pt;}
.wsd5{word-spacing:-1.381481pt;}
.ws36{word-spacing:-1.275213pt;}
.wsb6{word-spacing:-1.168945pt;}
.ws47{word-spacing:-1.105187pt;}
.ws38{word-spacing:-0.956410pt;}
.wsb2{word-spacing:-0.690740pt;}
.wsc{word-spacing:-0.430387pt;}
.wsd4{word-spacing:-0.371937pt;}
.ws7b{word-spacing:-0.265669pt;}
.wsdb{word-spacing:-0.212535pt;}
.ws90{word-spacing:-0.106268pt;}
.wsb1{word-spacing:-0.053134pt;}
.wsaa{word-spacing:-0.044001pt;}
.wsac{word-spacing:-0.026667pt;}
.ws81{word-spacing:-0.008161pt;}
.ws19{word-spacing:0.000000pt;}
.wsa3{word-spacing:0.318803pt;}
.ws9f{word-spacing:0.371937pt;}
.wsda{word-spacing:0.387875pt;}
.ws63{word-spacing:0.531339pt;}
.ws35{word-spacing:0.690740pt;}
.ws59{word-spacing:0.850142pt;}
.wsba{word-spacing:1.275213pt;}
.ws25{word-spacing:1.381481pt;}
.wsa2{word-spacing:1.594016pt;}
.ws50{word-spacing:1.647150pt;}
.ws4f{word-spacing:1.657781pt;}
.ws9d{word-spacing:1.859685pt;}
.wse1{word-spacing:1.912819pt;}
.ws1{word-spacing:1.928125pt;}
.ws0{word-spacing:2.019940pt;}
.wsc6{word-spacing:2.082853pt;}
.wsae{word-spacing:2.178489pt;}
.wsc2{word-spacing:2.284756pt;}
.ws51{word-spacing:2.391024pt;}
.ws52{word-spacing:2.444158pt;}
.ws7a{word-spacing:2.497292pt;}
.ws4e{word-spacing:2.762961pt;}
.ws27{word-spacing:2.816095pt;}
.ws46{word-spacing:2.820058pt;}
.ws26{word-spacing:2.869229pt;}
.ws45{word-spacing:2.922363pt;}
.ws3{word-spacing:2.933009pt;}
.ws10{word-spacing:3.012710pt;}
.ws8f{word-spacing:3.028630pt;}
.ws4a{word-spacing:3.145533pt;}
.wsb{word-spacing:3.203994pt;}
.wsb5{word-spacing:3.241166pt;}
.ws8e{word-spacing:3.559969pt;}
.wse2{word-spacing:3.561529pt;}
.ws7e{word-spacing:3.719371pt;}
.ws7c{word-spacing:3.772505pt;}
.ws80{word-spacing:3.878772pt;}
.ws37{word-spacing:3.985040pt;}
.ws57{word-spacing:4.038174pt;}
.ws49{word-spacing:4.080691pt;}
.ws5c{word-spacing:4.144442pt;}
.ws56{word-spacing:4.197575pt;}
.ws5e{word-spacing:4.250709pt;}
.wscd{word-spacing:4.303843pt;}
.ws48{word-spacing:4.335734pt;}
.ws7f{word-spacing:4.356977pt;}
.wsa5{word-spacing:4.410111pt;}
.wsc5{word-spacing:4.505763pt;}
.wsad{word-spacing:4.516379pt;}
.wsc3{word-spacing:4.569513pt;}
.wsd9{word-spacing:4.622646pt;}
.wsb7{word-spacing:4.675780pt;}
.ws39{word-spacing:4.835182pt;}
.ws24{word-spacing:4.994583pt;}
.wsb8{word-spacing:5.047717pt;}
.wsa6{word-spacing:5.313387pt;}
.ws1f{word-spacing:5.419654pt;}
.wsc4{word-spacing:5.780979pt;}
.ws53{word-spacing:5.993540pt;}
.ws21{word-spacing:6.057301pt;}
.wsa0{word-spacing:6.322930pt;}
.wsc1{word-spacing:6.429198pt;}
.wsce{word-spacing:6.535466pt;}
.wsa8{word-spacing:6.546109pt;}
.ws22{word-spacing:6.907403pt;}
.wscc{word-spacing:7.192228pt;}
.wsb9{word-spacing:7.248101pt;}
.ws5d{word-spacing:7.279340pt;}
.ws77{word-spacing:7.491875pt;}
.ws85{word-spacing:7.598143pt;}
.wsc8{word-spacing:7.651277pt;}
.ws23{word-spacing:7.810678pt;}
.wsa1{word-spacing:7.970080pt;}
.wsc7{word-spacing:8.023214pt;}
.wsd0{word-spacing:8.342017pt;}
.ws4b{word-spacing:8.660820pt;}
.wse0{word-spacing:8.713954pt;}
.ws79{word-spacing:8.767088pt;}
.wsaf{word-spacing:8.873356pt;}
.ws58{word-spacing:9.192159pt;}
.wsa7{word-spacing:9.298427pt;}
.wscb{word-spacing:9.404694pt;}
.wsb3{word-spacing:9.510962pt;}
.wsd{word-spacing:9.516339pt;}
.ws5a{word-spacing:9.936033pt;}
.wsbf{word-spacing:10.042301pt;}
.wsbe{word-spacing:10.102433pt;}
.wscf{word-spacing:10.201702pt;}
.wsd8{word-spacing:10.520506pt;}
.ws28{word-spacing:10.626773pt;}
.ws78{word-spacing:11.264380pt;}
.ws82{word-spacing:11.476915pt;}
.wsd1{word-spacing:11.530049pt;}
.ws13{word-spacing:11.689451pt;}
.wsbd{word-spacing:11.921875pt;}
.wsbc{word-spacing:11.921879pt;}
.wsdc{word-spacing:11.955120pt;}
.wsdf{word-spacing:12.752128pt;}
.ws8d{word-spacing:12.858396pt;}
.ws44{word-spacing:12.964663pt;}
.ws43{word-spacing:13.017797pt;}
.ws9{word-spacing:13.294182pt;}
.wsf{word-spacing:13.676749pt;}
.ws16{word-spacing:15.561631pt;}
.wsc9{word-spacing:16.471499pt;}
.wse{word-spacing:16.545997pt;}
.ws7{word-spacing:17.167667pt;}
.wsd6{word-spacing:17.215373pt;}
.ws2f{word-spacing:17.321641pt;}
.ws8{word-spacing:19.176141pt;}
.wsca{word-spacing:19.872066pt;}
.wsde{word-spacing:19.925200pt;}
.ws8c{word-spacing:20.137735pt;}
.ws5{word-spacing:20.180378pt;}
.wsa{word-spacing:20.610765pt;}
.ws6{word-spacing:20.993331pt;}
.ws2a{word-spacing:22.103689pt;}
.wsd7{word-spacing:22.156822pt;}
.ws8b{word-spacing:22.475626pt;}
.ws31{word-spacing:24.016508pt;}
.ws2e{word-spacing:24.441579pt;}
.ws4c{word-spacing:26.248130pt;}
.ws30{word-spacing:27.417075pt;}
.wsab{word-spacing:28.310017pt;}
.ws29{word-spacing:30.233170pt;}
.ws2d{word-spacing:32.305391pt;}
.ws2b{word-spacing:33.049265pt;}
.ws5f{word-spacing:35.280887pt;}
.wsb0{word-spacing:43.459304pt;}
.ws2c{word-spacing:44.579314pt;}
.ws84{word-spacing:48.830023pt;}
.ws60{word-spacing:48.883157pt;}
.ws32{word-spacing:75.768894pt;}
.ws8a{word-spacing:133.791076pt;}
.ws89{word-spacing:200.154461pt;}
.ws87{word-spacing:213.862998pt;}
.ws66{word-spacing:226.989989pt;}
.ws88{word-spacing:229.856292pt;}
.ws64{word-spacing:252.762461pt;}
.ws86{word-spacing:278.845717pt;}
.ws62{word-spacing:282.147472pt;}
.ws93{word-spacing:295.319831pt;}
.wsa4{word-spacing:299.149020pt;}
.ws74{word-spacing:304.459167pt;}
.ws6c{word-spacing:309.719420pt;}
.ws92{word-spacing:310.146287pt;}
.ws73{word-spacing:318.592775pt;}
.ws6d{word-spacing:338.517975pt;}
.ws75{word-spacing:342.184212pt;}
.ws6f{word-spacing:362.800153pt;}
.ws61{word-spacing:367.267926pt;}
.ws6b{word-spacing:371.567241pt;}
.ws71{word-spacing:386.604125pt;}
.ws68{word-spacing:395.105543pt;}
.ws9c{word-spacing:400.152950pt;}
.ws70{word-spacing:402.172348pt;}
.ws6a{word-spacing:402.703686pt;}
.ws67{word-spacing:405.785451pt;}
.ws76{word-spacing:409.451687pt;}
.ws72{word-spacing:413.117924pt;}
.ws99{word-spacing:430.014183pt;}
.ws69{word-spacing:434.530873pt;}
.ws97{word-spacing:441.493205pt;}
.ws96{word-spacing:446.273147pt;}
.ws98{word-spacing:452.171006pt;}
.ws6e{word-spacing:459.663191pt;}
.ws94{word-spacing:462.478976pt;}
.ws9b{word-spacing:468.429969pt;}
.ws95{word-spacing:478.472270pt;}
.ws9a{word-spacing:478.737939pt;}
.ws91{word-spacing:484.688932pt;}
.ws7d{word-spacing:680.293024pt;}
.ws3d{word-spacing:709.021463pt;}
.ws4d{word-spacing:741.698791pt;}
.ws3a{word-spacing:761.889661pt;}
.ws42{word-spacing:765.183961pt;}
.ws41{word-spacing:766.724843pt;}
.ws3c{word-spacing:788.775397pt;}
.ws3b{word-spacing:818.424095pt;}
.ws3e{word-spacing:853.704982pt;}
.ws9e{word-spacing:862.418937pt;}
.ws40{word-spacing:877.455821pt;}
.ws3f{word-spacing:889.251539pt;}
.ws1e{word-spacing:1251.468842pt;}
.ws12{word-spacing:1450.829803pt;}
.ws20{word-spacing:1470.220971pt;}
.ws1d{word-spacing:1478.403586pt;}
.ws14{word-spacing:1553.643835pt;}
.ws15{word-spacing:1590.943809pt;}
._8e{margin-left:-1707.327788pt;}
._93{margin-left:-500.186524pt;}
._90{margin-left:-378.242570pt;}
._8f{margin-left:-355.036329pt;}
._92{margin-left:-326.212982pt;}
._91{margin-left:-320.160494pt;}
._15{margin-left:-30.923910pt;}
._67{margin-left:-29.263173pt;}
._11{margin-left:-28.001548pt;}
._f{margin-left:-26.566933pt;}
._12{margin-left:-8.979623pt;}
._0{margin-left:-7.069791pt;}
._94{margin-left:-5.929779pt;}
._40{margin-left:-5.022630pt;}
._5{margin-left:-4.064768pt;}
._1{margin-left:-2.387202pt;}
._2{margin-left:-0.992134pt;}
._3{width:1.657788pt;}
._24{width:2.656693pt;}
._10{width:4.956042pt;}
._9{width:13.915853pt;}
._21{width:15.408821pt;}
._9a{width:16.365231pt;}
._d{width:17.693578pt;}
._19{width:18.688661pt;}
._2f{width:19.680827pt;}
._18{width:21.002371pt;}
._20{width:22.316224pt;}
._17{width:23.669658pt;}
._b1{width:25.039604pt;}
._8d{width:25.939999pt;}
._1a{width:27.406437pt;}
._c{width:29.349869pt;}
._13{width:30.579968pt;}
._a{width:33.331098pt;}
._b3{width:35.040305pt;}
._1d{width:37.406242pt;}
._8{width:38.447923pt;}
._ae{width:39.729673pt;}
._1b{width:40.789401pt;}
._65{width:42.719629pt;}
._b0{width:43.893937pt;}
._b2{width:44.875345pt;}
._b5{width:47.271698pt;}
._8c{width:48.603028pt;}
._7{width:52.256032pt;}
._14{width:56.930358pt;}
._b{width:62.163202pt;}
._6{width:64.271155pt;}
._1e{width:65.939129pt;}
._b4{width:66.895538pt;}
._4f{width:68.864638pt;}
._85{width:70.629403pt;}
._54{width:72.743410pt;}
._4{width:76.449519pt;}
._82{width:78.000516pt;}
._49{width:79.066340pt;}
._1c{width:81.852514pt;}
._e{width:84.065542pt;}
._4d{width:84.964199pt;}
._4b{width:89.586846pt;}
._70{width:91.549652pt;}
._99{width:92.612330pt;}
._43{width:95.272170pt;}
._41{width:99.894816pt;}
._53{width:101.223163pt;}
._4e{width:105.527006pt;}
._50{width:108.449369pt;}
._47{width:111.265463pt;}
._6c{width:114.751743pt;}
._45{width:115.888110pt;}
._3e{width:117.482126pt;}
._6d{width:118.981221pt;}
._48{width:120.351355pt;}
._3c{width:122.104772pt;}
._1f{width:124.120713pt;}
._4a{width:126.249214pt;}
._4c{width:129.171577pt;}
._6b{width:135.360005pt;}
._3f{width:136.557184pt;}
._42{width:139.479547pt;}
._51{width:142.508177pt;}
._52{width:145.430540pt;}
._98{width:149.199898pt;}
._44{width:152.550478pt;}
._46{width:155.472841pt;}
._3b{width:158.767140pt;}
._3d{width:161.689503pt;}
._97{width:167.216740pt;}
._35{width:173.378954pt;}
._81{width:191.802976pt;}
._73{width:195.990404pt;}
._6e{width:205.349643pt;}
._34{width:210.041322pt;}
._36{width:212.963684pt;}
._76{width:218.799282pt;}
._8b{width:222.521122pt;}
._69{width:225.128193pt;}
._7a{width:227.526343pt;}
._87{width:232.361525pt;}
._72{width:236.067789pt;}
._6a{width:241.073010pt;}
._79{width:242.331182pt;}
._6f{width:245.908192pt;}
._74{width:255.195981pt;}
._68{width:264.261313pt;}
._77{width:266.521586pt;}
._75{width:270.126597pt;}
._88{width:274.390414pt;}
._33{width:283.844262pt;}
._31{width:288.466909pt;}
._7d{width:297.006192pt;}
._56{width:300.528297pt;}
._9b{width:310.601154pt;}
._84{width:321.775185pt;}
._8a{width:323.923474pt;}
._30{width:325.129277pt;}
._32{width:328.051639pt;}
._71{width:335.321852pt;}
._55{width:337.190665pt;}
._78{width:338.943046pt;}
._57{width:340.113027pt;}
._86{width:353.402585pt;}
._2d{width:362.429251pt;}
._7b{width:382.140076pt;}
._7f{width:385.987907pt;}
._2c{width:399.091619pt;}
._2e{width:402.013982pt;}
._95{width:407.899654pt;}
._7e{width:409.983026pt;}
._3a{width:410.993605pt;}
._a2{width:414.534819pt;}
._38{width:415.616252pt;}
._80{width:417.294393pt;}
._7c{width:420.127773pt;}
._a0{width:444.668493pt;}
._83{width:450.081135pt;}
._37{width:452.278620pt;}
._39{width:455.200982pt;}
._af{width:457.403541pt;}
._9e{width:461.150629pt;}
._9f{width:467.048489pt;}
._59{width:469.972197pt;}
._89{width:474.098194pt;}
._9c{width:477.356459pt;}
._a1{width:483.307452pt;}
._9d{width:493.349753pt;}
._61{width:495.210784pt;}
._96{width:499.238572pt;}
._60{width:531.873152pt;}
._62{width:534.795515pt;}
._a3{width:562.691555pt;}
._25{width:565.931961pt;}
._5a{width:585.060153pt;}
._58{width:607.004439pt;}
._5e{width:610.298739pt;}
._a4{width:641.541453pt;}
._5d{width:646.961107pt;}
._5f{width:649.883470pt;}
._64{width:680.966782pt;}
._5b{width:692.124894pt;}
._a7{width:694.547821pt;}
._29{width:698.926029pt;}
._28{width:700.413777pt;}
._63{width:708.915196pt;}
._66{width:714.089783pt;}
._22{width:715.174501pt;}
._23{width:729.849939pt;}
._2b{width:732.825436pt;}
._2a{width:734.366318pt;}
._26{width:762.420999pt;}
._5c{width:771.081820pt;}
._27{width:791.963429pt;}
._ad{width:798.481486pt;}
._ac{width:828.615159pt;}
._aa{width:845.097296pt;}
._a6{width:850.995155pt;}
._a8{width:861.303125pt;}
._a9{width:867.254118pt;}
._ab{width:877.562089pt;}
._a5{width:883.513082pt;}
._16{width:1206.762029pt;}
.fsb{font-size:8.160712pt;}
.fsd{font-size:26.667467pt;}
.fsa{font-size:31.415952pt;}
.fs6{font-size:31.880533pt;}
.fs8{font-size:34.117625pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fsc{font-size:44.001320pt;}
.fs2{font-size:47.820800pt;}
.fs9{font-size:48.025675pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y17c{bottom:3.635525pt;}
.y17e{bottom:4.635558pt;}
.y17a{bottom:4.997546pt;}
.y17b{bottom:5.997576pt;}
.y17d{bottom:9.974258pt;}
.y66{bottom:11.160692pt;}
.y123{bottom:12.520442pt;}
.ybf{bottom:15.734613pt;}
.y112{bottom:31.582868pt;}
.y68{bottom:37.663030pt;}
.y12b{bottom:44.844555pt;}
.yc1{bottom:53.039494pt;}
.y121{bottom:57.554616pt;}
.y67{bottom:64.165369pt;}
.y12f{bottom:70.318748pt;}
.y129{bottom:80.605297pt;}
.yc0{bottom:90.344375pt;}
.y12c{bottom:94.532236pt;}
.yc2{bottom:99.348771pt;}
.y122{bottom:113.865689pt;}
.y12d{bottom:114.536168pt;}
.y1f{bottom:119.153333pt;}
.y126{bottom:124.206309pt;}
.y11d{bottom:127.082878pt;}
.y125{bottom:136.396152pt;}
.y12e{bottom:146.952486pt;}
.y124{bottom:158.827579pt;}
.y178{bottom:159.004000pt;}
.y87{bottom:159.008000pt;}
.y1a1{bottom:162.060000pt;}
.ybd{bottom:164.200000pt;}
.y64{bottom:164.425333pt;}
.y14e{bottom:168.198667pt;}
.yf1{bottom:170.788000pt;}
.y1c4{bottom:170.966667pt;}
.y1e{bottom:171.134667pt;}
.y142{bottom:171.954667pt;}
.y1a0{bottom:174.680000pt;}
.y177{bottom:175.481333pt;}
.y86{bottom:175.485333pt;}
.y63{bottom:177.045333pt;}
.y11e{bottom:181.109885pt;}
.y11f{bottom:181.335844pt;}
.yb3{bottom:181.549333pt;}
.y120{bottom:181.560665pt;}
.y14d{bottom:184.138667pt;}
.y15e{bottom:184.724000pt;}
.yf0{bottom:186.728000pt;}
.y1c3{bottom:186.906667pt;}
.y1d{bottom:187.074667pt;}
.ybc{bottom:188.110667pt;}
.y62{bottom:189.664000pt;}
.y176{bottom:190.902667pt;}
.y127{bottom:190.963868pt;}
.y19f{bottom:191.157333pt;}
.y141{bottom:194.570667pt;}
.yb2{bottom:197.490667pt;}
.y14c{bottom:200.078667pt;}
.y19e{bottom:200.242667pt;}
.y15d{bottom:200.664000pt;}
.yef{bottom:202.668000pt;}
.y1c2{bottom:202.848000pt;}
.y1c{bottom:203.014667pt;}
.ybb{bottom:204.050667pt;}
.y61{bottom:206.141333pt;}
.y175{bottom:206.842667pt;}
.yb1{bottom:213.430667pt;}
.y15c{bottom:216.604000pt;}
.y19d{bottom:216.720000pt;}
.y11a{bottom:216.985333pt;}
.yee{bottom:218.608000pt;}
.y1c1{bottom:218.788000pt;}
.y1b{bottom:218.954667pt;}
.yba{bottom:219.990667pt;}
.y11c{bottom:220.281074pt;}
.y41{bottom:220.821333pt;}
.y14b{bottom:222.694667pt;}
.y174{bottom:222.782667pt;}
.y60{bottom:226.133333pt;}
.y140{bottom:226.598667pt;}
.yb0{bottom:229.370667pt;}
.y19c{bottom:229.664000pt;}
.y15b{bottom:232.544000pt;}
.y119{bottom:232.925333pt;}
.yed{bottom:234.549333pt;}
.y1c0{bottom:234.728000pt;}
.y12a{bottom:235.446519pt;}
.yb9{bottom:235.930667pt;}
.y40{bottom:236.761333pt;}
.y85{bottom:239.193333pt;}
.y109{bottom:241.224000pt;}
.y5f{bottom:242.073333pt;}
.y13f{bottom:242.538667pt;}
.yaf{bottom:245.310667pt;}
.y173{bottom:246.693333pt;}
.y1a{bottom:248.178667pt;}
.y15a{bottom:248.484000pt;}
.y19b{bottom:249.734667pt;}
.yec{bottom:250.489333pt;}
.y1bf{bottom:250.668000pt;}
.ydd{bottom:251.828000pt;}
.yb8{bottom:251.870667pt;}
.y3f{bottom:252.701333pt;}
.y84{bottom:255.134667pt;}
.y118{bottom:256.836000pt;}
.y14a{bottom:257.898667pt;}
.y13e{bottom:258.478667pt;}
.y128{bottom:259.853524pt;}
.yae{bottom:261.250667pt;}
.y172{bottom:262.633333pt;}
.y159{bottom:264.424000pt;}
.y19a{bottom:265.676000pt;}
.y5e{bottom:265.984000pt;}
.yeb{bottom:266.429333pt;}
.y1be{bottom:266.608000pt;}
.ydc{bottom:267.768000pt;}
.y83{bottom:271.074667pt;}
.y117{bottom:272.776000pt;}
.y149{bottom:273.838667pt;}
.y13d{bottom:274.420000pt;}
.yb7{bottom:276.398667pt;}
.y108{bottom:276.428000pt;}
.y3e{bottom:276.612000pt;}
.yad{bottom:277.190667pt;}
.y19{bottom:277.402667pt;}
.y158{bottom:280.365333pt;}
.y199{bottom:281.616000pt;}
.yea{bottom:282.369333pt;}
.y1bd{bottom:282.548000pt;}
.ydb{bottom:283.709333pt;}
.y82{bottom:287.014667pt;}
.y171{bottom:287.161333pt;}
.y148{bottom:289.778667pt;}
.y5d{bottom:289.894667pt;}
.y107{bottom:292.368000pt;}
.y3d{bottom:292.552000pt;}
.yac{bottom:293.132000pt;}
.y18{bottom:293.342667pt;}
.y157{bottom:296.305333pt;}
.y116{bottom:296.686667pt;}
.y198{bottom:297.556000pt;}
.ye9{bottom:298.309333pt;}
.y1bc{bottom:298.489333pt;}
.yda{bottom:299.649333pt;}
.y81{bottom:302.954667pt;}
.y147{bottom:305.718667pt;}
.y5c{bottom:305.834667pt;}
.y3c{bottom:308.492000pt;}
.yab{bottom:309.072000pt;}
.y156{bottom:312.245333pt;}
.y115{bottom:312.626667pt;}
.yb6{bottom:313.602667pt;}
.ye8{bottom:314.249333pt;}
.y1bb{bottom:314.429333pt;}
.yd9{bottom:315.589333pt;}
.y80{bottom:318.894667pt;}
.y197{bottom:321.466667pt;}
.y146{bottom:321.658667pt;}
.y5b{bottom:321.774667pt;}
.y17{bottom:322.566667pt;}
.y170{bottom:323.512000pt;}
.y3b{bottom:324.433333pt;}
.yaa{bottom:325.012000pt;}
.y13c{bottom:325.593333pt;}
.y155{bottom:328.185333pt;}
.yb5{bottom:329.542667pt;}
.ye7{bottom:330.190667pt;}
.y1ba{bottom:330.369333pt;}
.yd8{bottom:331.529333pt;}
.y7f{bottom:334.834667pt;}
.y196{bottom:337.406667pt;}
.y145{bottom:337.600000pt;}
.y5a{bottom:337.714667pt;}
.y16f{bottom:339.453333pt;}
.y3a{bottom:340.373333pt;}
.ya9{bottom:340.952000pt;}
.y13b{bottom:341.533333pt;}
.y106{bottom:343.541333pt;}
.y154{bottom:344.125333pt;}
.ye6{bottom:346.130667pt;}
.y1b9{bottom:346.309333pt;}
.y114{bottom:347.097333pt;}
.yd7{bottom:347.469333pt;}
.y7e{bottom:350.776000pt;}
.y195{bottom:353.346667pt;}
.y144{bottom:353.540000pt;}
.yb4{bottom:354.070667pt;}
.y39{bottom:356.313333pt;}
.ya8{bottom:356.892000pt;}
.y13a{bottom:357.473333pt;}
.y105{bottom:359.481333pt;}
.y153{bottom:360.066667pt;}
.y1b8{bottom:362.249333pt;}
.y113{bottom:363.037333pt;}
.yd6{bottom:363.409333pt;}
.y16{bottom:366.514667pt;}
.y7d{bottom:366.716000pt;}
.ye5{bottom:368.746667pt;}
.y194{bottom:369.286667pt;}
.y59{bottom:369.596000pt;}
.y38{bottom:372.253333pt;}
.ya7{bottom:372.832000pt;}
.y139{bottom:373.413333pt;}
.y104{bottom:375.421333pt;}
.y152{bottom:376.006667pt;}
.y1b7{bottom:378.189333pt;}
.yd5{bottom:379.350667pt;}
.y15{bottom:381.126667pt;}
.y7c{bottom:382.656000pt;}
.y16e{bottom:383.478667pt;}
.y193{bottom:385.226667pt;}
.y58{bottom:385.536000pt;}
.y37{bottom:388.193333pt;}
.ya6{bottom:388.773333pt;}
.y103{bottom:391.362667pt;}
.y151{bottom:391.946667pt;}
.y111{bottom:392.260988pt;}
.y1b6{bottom:394.130667pt;}
.yd4{bottom:395.290667pt;}
.y14{bottom:395.738667pt;}
.y138{bottom:396.029333pt;}
.y7b{bottom:398.596000pt;}
.y192{bottom:401.166667pt;}
.y57{bottom:401.476000pt;}
.ye4{bottom:403.949333pt;}
.y36{bottom:404.133333pt;}
.ya5{bottom:404.713333pt;}
.y16d{bottom:406.094667pt;}
.y102{bottom:407.302667pt;}
.y1b5{bottom:410.070667pt;}
.y13{bottom:410.350667pt;}
.yd3{bottom:411.230667pt;}
.y7a{bottom:414.536000pt;}
.y150{bottom:414.562667pt;}
.y191{bottom:417.108000pt;}
.ye3{bottom:419.889333pt;}
.y35{bottom:420.074667pt;}
.ya4{bottom:420.653333pt;}
.y101{bottom:423.242667pt;}
.y12{bottom:424.962667pt;}
.y1b4{bottom:426.010667pt;}
.yd2{bottom:427.170667pt;}
.y79{bottom:430.476000pt;}
.y137{bottom:430.648000pt;}
.y190{bottom:433.048000pt;}
.y56{bottom:433.356000pt;}
.y34{bottom:436.014667pt;}
.ya3{bottom:436.593333pt;}
.y100{bottom:439.182667pt;}
.y11{bottom:439.574667pt;}
.y16c{bottom:440.713333pt;}
.y1b3{bottom:441.950667pt;}
.yd1{bottom:443.110667pt;}
.y78{bottom:446.417333pt;}
.y14f{bottom:449.181333pt;}
.y55{bottom:449.296000pt;}
.y33{bottom:451.954667pt;}
.ya2{bottom:452.533333pt;}
.y10{bottom:454.186667pt;}
.yff{bottom:455.122667pt;}
.y18f{bottom:456.958667pt;}
.y1b2{bottom:457.890667pt;}
.y136{bottom:457.892000pt;}
.yd0{bottom:459.050667pt;}
.y77{bottom:462.357333pt;}
.y54{bottom:465.237333pt;}
.y16b{bottom:466.589333pt;}
.ya1{bottom:468.473333pt;}
.y143{bottom:468.474667pt;}
.yf{bottom:468.798667pt;}
.ye2{bottom:471.062667pt;}
.y18e{bottom:472.898667pt;}
.y1b1{bottom:473.830667pt;}
.y135{bottom:473.833333pt;}
.ycf{bottom:474.992000pt;}
.y110{bottom:475.661333pt;}
.y32{bottom:475.865333pt;}
.y76{bottom:478.297333pt;}
.ye{bottom:483.410667pt;}
.ya0{bottom:484.414667pt;}
.ye1{bottom:487.002667pt;}
.yfe{bottom:487.004000pt;}
.y18d{bottom:488.838667pt;}
.y1b0{bottom:489.772000pt;}
.y134{bottom:489.773333pt;}
.yce{bottom:490.932000pt;}
.y10f{bottom:491.601333pt;}
.y31{bottom:491.805333pt;}
.y75{bottom:494.237333pt;}
.y53{bottom:497.117333pt;}
.yd{bottom:498.022667pt;}
.y9f{bottom:500.354667pt;}
.yfd{bottom:502.944000pt;}
.y18c{bottom:504.778667pt;}
.y1af{bottom:505.712000pt;}
.y133{bottom:505.713333pt;}
.y10e{bottom:507.542667pt;}
.ye0{bottom:509.618667pt;}
.y74{bottom:510.177333pt;}
.y16a{bottom:510.616000pt;}
.yc{bottom:512.634667pt;}
.y52{bottom:513.057333pt;}
.ycd{bottom:513.548000pt;}
.y30{bottom:515.716000pt;}
.y9e{bottom:516.294667pt;}
.yfc{bottom:518.884000pt;}
.y18b{bottom:520.718667pt;}
.y1ae{bottom:521.652000pt;}
.y10d{bottom:523.482667pt;}
.y73{bottom:526.117333pt;}
.y169{bottom:526.556000pt;}
.yb{bottom:527.245333pt;}
.y132{bottom:530.241333pt;}
.y2f{bottom:531.656000pt;}
.y9d{bottom:532.234667pt;}
.yfb{bottom:534.824000pt;}
.y18a{bottom:536.658667pt;}
.y51{bottom:536.968000pt;}
.y10c{bottom:539.422667pt;}
.y72{bottom:542.058667pt;}
.y168{bottom:542.496000pt;}
.y1ad{bottom:542.789333pt;}
.ydf{bottom:544.822667pt;}
.y2e{bottom:547.596000pt;}
.ycc{bottom:548.006667pt;}
.y9c{bottom:548.174667pt;}
.ya{bottom:549.164000pt;}
.yfa{bottom:550.764000pt;}
.y10b{bottom:555.362667pt;}
.y71{bottom:557.998667pt;}
.y167{bottom:558.436000pt;}
.yde{bottom:560.762667pt;}
.y2d{bottom:563.536000pt;}
.y9b{bottom:564.116000pt;}
.y189{bottom:565.768000pt;}
.yf9{bottom:566.704000pt;}
.y131{bottom:572.828000pt;}
.y70{bottom:573.938667pt;}
.ycb{bottom:577.841333pt;}
.y2c{bottom:579.476000pt;}
.y10a{bottom:579.890667pt;}
.y9a{bottom:580.056000pt;}
.y166{bottom:581.052000pt;}
.yf8{bottom:582.645333pt;}
.y9{bottom:583.701333pt;}
.y50{bottom:584.953333pt;}
.y1ac{bottom:586.738667pt;}
.y130{bottom:588.768000pt;}
.y2b{bottom:595.416000pt;}
.y99{bottom:595.996000pt;}
.y6f{bottom:596.554667pt;}
.yf7{bottom:598.585333pt;}
.y4f{bottom:600.893333pt;}
.yca{bottom:601.752000pt;}
.y1ab{bottom:602.678667pt;}
.y188{bottom:609.716000pt;}
.y98{bottom:611.936000pt;}
.y165{bottom:613.081333pt;}
.yf6{bottom:614.525333pt;}
.y4e{bottom:616.833333pt;}
.yc9{bottom:617.692000pt;}
.y11b{bottom:617.992032pt;}
.y1aa{bottom:618.618667pt;}
.y2a{bottom:619.944000pt;}
.y8{bottom:622.462667pt;}
.y187{bottom:625.656000pt;}
.y97{bottom:627.876000pt;}
.yf5{bottom:630.465333pt;}
.y6e{bottom:631.173333pt;}
.y4d{bottom:632.773333pt;}
.yc8{bottom:633.632000pt;}
.y164{bottom:636.366667pt;}
.y7{bottom:641.058667pt;}
.y96{bottom:643.816000pt;}
.y1a9{bottom:647.726667pt;}
.y4c{bottom:648.714667pt;}
.y29{bottom:651.709333pt;}
.y163{bottom:652.306667pt;}
.yf4{bottom:653.081333pt;}
.y6d{bottom:655.701333pt;}
.y186{bottom:657.536000pt;}
.yc7{bottom:657.542667pt;}
.y6{bottom:659.656000pt;}
.y95{bottom:659.757333pt;}
.y4b{bottom:664.654667pt;}
.y162{bottom:668.246667pt;}
.yc6{bottom:673.482667pt;}
.y94{bottom:675.697333pt;}
.y5{bottom:678.253333pt;}
.y4a{bottom:680.594667pt;}
.y161{bottom:684.186667pt;}
.y185{bottom:686.759803pt;}
.yf3{bottom:688.284000pt;}
.yc5{bottom:689.422667pt;}
.y93{bottom:691.637333pt;}
.y1a8{bottom:691.676000pt;}
.y6c{bottom:692.905333pt;}
.y28{bottom:695.657333pt;}
.y49{bottom:696.534667pt;}
.y160{bottom:700.126667pt;}
.y1ca{bottom:700.972000pt;}
.yf2{bottom:704.224000pt;}
.yc4{bottom:705.364000pt;}
.y92{bottom:707.577333pt;}
.y1a7{bottom:707.616000pt;}
.y6b{bottom:708.845333pt;}
.y48{bottom:712.474667pt;}
.y1c9{bottom:716.912000pt;}
.y91{bottom:723.517333pt;}
.y1a6{bottom:723.556000pt;}
.y15f{bottom:724.654667pt;}
.y27{bottom:724.881333pt;}
.y184{bottom:725.437333pt;}
.y4{bottom:732.852000pt;}
.y47{bottom:735.090667pt;}
.y6a{bottom:737.953333pt;}
.y90{bottom:739.457333pt;}
.y1a5{bottom:739.496000pt;}
.y183{bottom:741.377333pt;}
.yc3{bottom:747.950667pt;}
.y1c8{bottom:748.792000pt;}
.y26{bottom:754.105333pt;}
.y8f{bottom:755.398667pt;}
.y1a4{bottom:755.436000pt;}
.y182{bottom:757.317333pt;}
.y3{bottom:762.076000pt;}
.y1c7{bottom:764.732000pt;}
.y46{bottom:769.550667pt;}
.y8e{bottom:771.338667pt;}
.y1a3{bottom:771.377333pt;}
.y181{bottom:773.258667pt;}
.ybe{bottom:777.173808pt;}
.y69{bottom:780.540000pt;}
.y1c6{bottom:780.672000pt;}
.y25{bottom:783.329333pt;}
.y8d{bottom:787.278667pt;}
.y2{bottom:791.298667pt;}
.y1c5{bottom:796.613333pt;}
.y180{bottom:797.786667pt;}
.y45{bottom:799.385333pt;}
.y1a2{bottom:800.485333pt;}
.y8c{bottom:803.218667pt;}
.y65{bottom:809.763801pt;}
.y24{bottom:812.553333pt;}
.y44{bottom:815.325333pt;}
.y8b{bottom:819.158667pt;}
.y1{bottom:820.522667pt;}
.y23{bottom:828.493333pt;}
.y43{bottom:831.265333pt;}
.y8a{bottom:835.098667pt;}
.y17f{bottom:840.373333pt;}
.y22{bottom:844.433333pt;}
.y42{bottom:847.205333pt;}
.y89{bottom:851.040000pt;}
.y21{bottom:860.373333pt;}
.y179{bottom:869.597288pt;}
.y88{bottom:873.654667pt;}
.y20{bottom:876.313333pt;}
.h15{height:6.200228pt;}
.h18{height:19.792260pt;}
.h16{height:20.000600pt;}
.hb{height:21.519360pt;}
.h13{height:23.868761pt;}
.he{height:25.921399pt;}
.h19{height:31.024368pt;}
.hc{height:31.880400pt;}
.h17{height:33.430690pt;}
.h3{height:33.474560pt;}
.h4{height:35.865600pt;}
.h10{height:36.488257pt;}
.ha{height:36.874903pt;}
.h6{height:37.193707pt;}
.h7{height:39.850400pt;}
.h11{height:39.855733pt;}
.h9{height:44.359153pt;}
.h8{height:44.632747pt;}
.h2{height:47.820800pt;}
.h5{height:53.559147pt;}
.h12{height:67.315200pt;}
.h1{height:68.769785pt;}
.hd{height:79.833147pt;}
.hf{height:112.424200pt;}
.h14{height:271.597227pt;}
.h0{height:1056.000000pt;}
.w5{width:62.001860pt;}
.w4{width:458.247467pt;}
.w2{width:458.278800pt;}
.w1{width:458.278827pt;}
.w3{width:458.304320pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:3.312599pt;}
.x3e{left:5.763382pt;}
.x4d{left:6.953334pt;}
.x14{left:18.251453pt;}
.x36{left:24.210073pt;}
.x23{left:30.435929pt;}
.x15{left:35.117443pt;}
.x22{left:42.226122pt;}
.x4b{left:46.746194pt;}
.x33{left:61.518948pt;}
.x34{left:64.200292pt;}
.x16{left:70.544354pt;}
.x24{left:86.601096pt;}
.x18{left:117.533455pt;}
.x17{left:125.339183pt;}
.x40{left:129.332311pt;}
.x37{left:130.935084pt;}
.x39{left:135.816827pt;}
.x10{left:177.029333pt;}
.xd{left:178.357333pt;}
.x4{left:180.381333pt;}
.x12{left:185.332000pt;}
.x46{left:188.121333pt;}
.x13{left:191.952000pt;}
.x4f{left:195.825333pt;}
.x50{left:196.954667pt;}
.xe{left:198.282667pt;}
.x38{left:199.901009pt;}
.x2{left:201.269333pt;}
.x8{left:209.752000pt;}
.xc{left:211.566667pt;}
.x2b{left:215.020000pt;}
.x2f{left:219.710064pt;}
.x1b{left:221.357491pt;}
.x5{left:222.289333pt;}
.x1{left:224.808000pt;}
.xb{left:229.500000pt;}
.x43{left:230.894667pt;}
.x2e{left:240.073333pt;}
.x1a{left:241.301494pt;}
.x47{left:242.404000pt;}
.x7{left:248.893333pt;}
.x35{left:249.876688pt;}
.x44{left:254.100000pt;}
.x3f{left:260.861036pt;}
.x3b{left:262.472916pt;}
.x19{left:263.428435pt;}
.x3{left:266.102667pt;}
.x28{left:271.289333pt;}
.x42{left:274.205333pt;}
.x4c{left:275.949333pt;}
.x45{left:277.386667pt;}
.x4e{left:280.645333pt;}
.x30{left:283.741536pt;}
.x11{left:285.708000pt;}
.x6{left:287.325333pt;}
.x27{left:290.397333pt;}
.x25{left:297.305957pt;}
.x1e{left:304.160000pt;}
.x48{left:305.314667pt;}
.x2d{left:308.974667pt;}
.x2c{left:320.544000pt;}
.x41{left:321.614667pt;}
.x3d{left:329.814439pt;}
.x3a{left:334.294350pt;}
.x26{left:361.888860pt;}
.x31{left:366.126134pt;}
.x3c{left:369.752295pt;}
.x9{left:371.058667pt;}
.x49{left:376.497748pt;}
.x1d{left:378.300468pt;}
.xa{left:380.444000pt;}
.x1c{left:382.428291pt;}
.x21{left:400.857333pt;}
.xf{left:404.177333pt;}
.x20{left:413.914667pt;}
.x1f{left:415.469333pt;}
.x32{left:437.655586pt;}
.x29{left:532.469333pt;}
.x2a{left:534.024000pt;}
}




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