
    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_1140ddf9ecf12f2289a6e24b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.956543;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_3fb615490a1d0df8487c623b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_d2655a1ca06d3db6220263c2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_b5b535bf57eda66254ca2867.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_31a4e685cbe75f50b4fd608e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_6be90fc9e046c148718ab185.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_893525c74a37befad7de28f5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_ee4833c204ccc0c85d0c5c2b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_0daf9bd3661449e0d398e877.woff')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_b98ca3aa7fda0b1dbbed459a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_3ebca48d2ad88313203bd3bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_a5b78d58feab47a0eb3a36b1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.232465,0.000000,-0.077480,0.237691,0,0);-ms-transform:matrix(0.232465,0.000000,-0.077480,0.237691,0,0);-webkit-transform:matrix(0.232465,0.000000,-0.077480,0.237691,0,0);}
.m3{transform:matrix(0.244504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244504,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245099,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245099,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.250471,0.000000,-0.083482,0.235650,0,0);-ms-transform:matrix(0.250471,0.000000,-0.083482,0.235650,0,0);-webkit-transform:matrix(0.250471,0.000000,-0.083482,0.235650,0,0);}
.mc{transform:matrix(0.250540,0.000000,-0.083505,0.235642,0,0);-ms-transform:matrix(0.250540,0.000000,-0.083505,0.235642,0,0);-webkit-transform:matrix(0.250540,0.000000,-0.083505,0.235642,0,0);}
.ma{transform:matrix(0.250648,0.000000,-0.083541,0.235629,0,0);-ms-transform:matrix(0.250648,0.000000,-0.083541,0.235629,0,0);-webkit-transform:matrix(0.250648,0.000000,-0.083541,0.235629,0,0);}
.m8{transform:matrix(0.250688,0.000000,-0.083554,0.235624,0,0);-ms-transform:matrix(0.250688,0.000000,-0.083554,0.235624,0,0);-webkit-transform:matrix(0.250688,0.000000,-0.083554,0.235624,0,0);}
.me{transform:matrix(0.251590,0.000000,-0.083855,0.235517,0,0);-ms-transform:matrix(0.251590,0.000000,-0.083855,0.235517,0,0);-webkit-transform:matrix(0.251590,0.000000,-0.083855,0.235517,0,0);}
.m5{transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265724,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.265807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265807,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265935,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.265983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265983,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267061,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-18.939098px;}
.v7{vertical-align:-17.163580px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:17.163580px;}
.v4{vertical-align:18.939098px;}
.v5{vertical-align:52.861789px;}
.ls2f{letter-spacing:-1.104110px;}
.ls41{letter-spacing:-0.513600px;}
.ls32{letter-spacing:-0.439402px;}
.ls30{letter-spacing:-0.439384px;}
.lsf{letter-spacing:-0.312600px;}
.ls36{letter-spacing:-0.291600px;}
.ls10{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls3f{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls35{letter-spacing:-0.101400px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.067200px;}
.ls34{letter-spacing:-0.063600px;}
.ls33{letter-spacing:-0.049680px;}
.ls3a{letter-spacing:-0.048960px;}
.ls38{letter-spacing:-0.040320px;}
.ls39{letter-spacing:-0.022320px;}
.ls31{letter-spacing:-0.014760px;}
.ls42{letter-spacing:-0.013320px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls37{letter-spacing:0.041760px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls40{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.170071px;}
.lsa{letter-spacing:0.173400px;}
.ls3d{letter-spacing:0.181200px;}
.ls43{letter-spacing:0.199200px;}
.ls3e{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.431556px;}
.ls20{letter-spacing:1.324093px;}
.ls2e{letter-spacing:3.387939px;}
.ls3c{letter-spacing:47.726640px;}
.ls2a{letter-spacing:50.820944px;}
.ls21{letter-spacing:51.007436px;}
.ls22{letter-spacing:53.605892px;}
.ls26{letter-spacing:54.364293px;}
.ls25{letter-spacing:54.426457px;}
.ls28{letter-spacing:54.538352px;}
.ls24{letter-spacing:54.985933px;}
.ls23{letter-spacing:54.998366px;}
.ls27{letter-spacing:55.756767px;}
.ls29{letter-spacing:55.794065px;}
.ls2b{letter-spacing:71.944276px;}
.ls3b{letter-spacing:80.846640px;}
.ls17{letter-spacing:339.507175px;}
.ls1b{letter-spacing:340.570180px;}
.ls18{letter-spacing:344.728952px;}
.ls19{letter-spacing:345.350592px;}
.ls15{letter-spacing:346.581440px;}
.ls1a{letter-spacing:353.494078px;}
.ls16{letter-spacing:353.512727px;}
.ls1e{letter-spacing:354.302210px;}
.ls1c{letter-spacing:358.715855px;}
.ls1d{letter-spacing:359.337495px;}
.ls1f{letter-spacing:366.436625px;}
.ls14{letter-spacing:578.900784px;}
.ls13{letter-spacing:583.563085px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws17{word-spacing:-60.556798px;}
.ws12{word-spacing:-40.892200px;}
.ws16{word-spacing:-40.342759px;}
.ws31{word-spacing:-39.337458px;}
.ws22{word-spacing:-39.319624px;}
.ws28{word-spacing:-39.317207px;}
.ws2c{word-spacing:-39.316718px;}
.ws1e{word-spacing:-39.315353px;}
.ws1f{word-spacing:-37.058604px;}
.ws29{word-spacing:-37.057070px;}
.ws14{word-spacing:-19.695113px;}
.wse{word-spacing:-18.791291px;}
.ws15{word-spacing:-18.371020px;}
.ws1b{word-spacing:-17.307058px;}
.ws1a{word-spacing:-16.875503px;}
.ws24{word-spacing:-16.874804px;}
.ws2f{word-spacing:-16.436101px;}
.ws25{word-spacing:-16.435421px;}
.ws19{word-spacing:-15.771393px;}
.ws8{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws3a{word-spacing:-13.425600px;}
.ws35{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws37{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws39{word-spacing:-13.213080px;}
.ws2d{word-spacing:-13.211640px;}
.ws34{word-spacing:-13.177440px;}
.ws32{word-spacing:-13.162800px;}
.ws5{word-spacing:-13.159200px;}
.ws33{word-spacing:-13.125000px;}
.ws6{word-spacing:-13.101000px;}
.ws36{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.982800px;}
.ws9{word-spacing:-12.913800px;}
.ws38{word-spacing:-12.712800px;}
.ws13{word-spacing:-10.706819px;}
.ws1d{word-spacing:-9.826716px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
.ws27{word-spacing:352.880266px;}
.ws26{word-spacing:648.753184px;}
.ws23{word-spacing:672.442056px;}
.ws2b{word-spacing:705.476495px;}
.ws21{word-spacing:706.661849px;}
.ws1c{word-spacing:709.581676px;}
.ws2a{word-spacing:729.110144px;}
.ws20{word-spacing:729.838744px;}
.ws18{word-spacing:734.546623px;}
.ws30{word-spacing:1271.218537px;}
.ws2e{word-spacing:1291.499863px;}
.ws11{word-spacing:1740.895627px;}
.wsf{word-spacing:1822.102101px;}
.ws10{word-spacing:1978.877126px;}
._46{margin-left:-777.432280px;}
._3a{margin-left:-740.127830px;}
._38{margin-left:-731.929257px;}
._18{margin-left:-652.010377px;}
._2e{margin-left:-644.384432px;}
._36{margin-left:-634.935502px;}
._37{margin-left:-630.770514px;}
._30{margin-left:-628.520326px;}
._31{margin-left:-625.183465px;}
._34{margin-left:-621.154789px;}
._35{margin-left:-615.449395px;}
._33{margin-left:-606.608410px;}
._32{margin-left:-603.099417px;}
._2c{margin-left:-600.213755px;}
._3b{margin-left:-598.326927px;}
._3d{margin-left:-593.726790px;}
._4c{margin-left:-565.484082px;}
._4b{margin-left:-557.868991px;}
._48{margin-left:-552.212066px;}
._47{margin-left:-544.976175px;}
._49{margin-left:-543.322612px;}
._4a{margin-left:-539.505742px;}
._1d{margin-left:-520.118311px;}
._17{margin-left:-491.881068px;}
._16{margin-left:-486.996121px;}
._15{margin-left:-485.600367px;}
._14{margin-left:-474.893786px;}
._52{margin-left:-441.683098px;}
._13{margin-left:-439.812914px;}
._51{margin-left:-433.124780px;}
._59{margin-left:-427.123201px;}
._5a{margin-left:-422.966328px;}
._63{margin-left:-415.873720px;}
._50{margin-left:-410.893033px;}
._5e{margin-left:-395.166409px;}
._42{margin-left:-381.868376px;}
._2d{margin-left:-378.350602px;}
._2f{margin-left:-373.688301px;}
._6d{margin-left:-372.513432px;}
._40{margin-left:-368.898209px;}
._3e{margin-left:-367.670627px;}
._1f{margin-left:-364.735035px;}
._21{margin-left:-362.112851px;}
._3f{margin-left:-359.617122px;}
._1b{margin-left:-356.899697px;}
._41{margin-left:-355.414835px;}
._20{margin-left:-353.603120px;}
._1e{margin-left:-351.809645px;}
._55{margin-left:-348.881417px;}
._64{margin-left:-347.768700px;}
._1c{margin-left:-344.159839px;}
._19{margin-left:-342.067562px;}
._1a{margin-left:-341.005796px;}
._65{margin-left:-337.623021px;}
._5f{margin-left:-334.806330px;}
._6c{margin-left:-331.756863px;}
._26{margin-left:-330.074618px;}
._54{margin-left:-325.245190px;}
._56{margin-left:-323.292014px;}
._5b{margin-left:-322.070128px;}
._28{margin-left:-320.723809px;}
._27{margin-left:-317.334759px;}
._24{margin-left:-315.417596px;}
._25{margin-left:-314.118873px;}
._62{margin-left:-311.615026px;}
._60{margin-left:-310.516100px;}
._53{margin-left:-304.321091px;}
._4e{margin-left:-302.199269px;}
._58{margin-left:-300.885149px;}
._4f{margin-left:-297.312043px;}
._72{margin-left:-294.636818px;}
._5c{margin-left:-290.522945px;}
._61{margin-left:-285.833787px;}
._57{margin-left:-282.639155px;}
._71{margin-left:-280.418078px;}
._74{margin-left:-278.970293px;}
._5d{margin-left:-276.344943px;}
._75{margin-left:-274.862516px;}
._39{margin-left:-272.214342px;}
._76{margin-left:-268.882389px;}
._73{margin-left:-266.551276px;}
._6e{margin-left:-261.363496px;}
._6f{margin-left:-258.802452px;}
._77{margin-left:-256.507394px;}
._68{margin-left:-253.327006px;}
._66{margin-left:-251.645621px;}
._70{margin-left:-250.227387px;}
._69{margin-left:-248.675174px;}
._6a{margin-left:-242.762303px;}
._67{margin-left:-239.931971px;}
._6b{margin-left:-234.680444px;}
._43{margin-left:-201.862261px;}
._3c{margin-left:-189.712522px;}
._22{margin-left:-181.998464px;}
._29{margin-left:-149.681933px;}
._44{margin-left:-128.771065px;}
._2a{margin-left:-116.364333px;}
._23{margin-left:-112.863964px;}
._45{margin-left:-103.926186px;}
._2b{margin-left:-63.377784px;}
._81{margin-left:-4.456200px;}
._d{margin-left:-3.384000px;}
._4{margin-left:-2.343598px;}
._2{margin-left:-1.142400px;}
._1{width:1.023396px;}
._0{width:2.035440px;}
._3{width:3.375360px;}
._5{width:4.512240px;}
._8{width:5.768160px;}
._9{width:7.567921px;}
._e{width:9.145439px;}
._7{width:10.919640px;}
._6{width:11.964000px;}
._c{width:14.245401px;}
._b{width:15.270600px;}
._a{width:16.292400px;}
._f{width:17.314680px;}
._10{width:18.396840px;}
._11{width:19.839959px;}
._7c{width:20.861640px;}
._12{width:22.064040px;}
._8a{width:23.109840px;}
._80{width:24.528960px;}
._88{width:25.731480px;}
._8b{width:26.753280px;}
._9e{width:28.136160px;}
._78{width:31.382640px;}
._83{width:33.396480px;}
._89{width:35.651160px;}
._97{width:36.750600px;}
._a0{width:37.833720px;}
._a4{width:40.920961px;}
._a3{width:42.384600px;}
._8f{width:44.572680px;}
._90{width:50.464440px;}
._91{width:51.524280px;}
._95{width:58.316400px;}
._96{width:59.360160px;}
._84{width:61.051680px;}
._7f{width:62.524800px;}
._8e{width:70.040040px;}
._8d{width:71.242200px;}
._8c{width:72.504720px;}
._9d{width:76.232160px;}
._7d{width:80.320320px;}
._85{width:85.941360px;}
._86{width:87.384600px;}
._7a{width:89.157960px;}
._92{width:90.480600px;}
._9a{width:105.270481px;}
._99{width:106.472520px;}
._9f{width:115.971480px;}
._7e{width:124.388280px;}
._9b{width:131.302080px;}
._9c{width:132.684840px;}
._4d{width:134.373600px;}
._79{width:140.380200px;}
._93{width:142.339680px;}
._94{width:143.653320px;}
._87{width:151.382160px;}
._82{width:158.776920px;}
._7b{width:194.127480px;}
._a1{width:273.185280px;}
._a2{width:274.327560px;}
._98{width:550.578960px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:6.120000px;}
.fs0{font-size:38.880000px;}
.fs13{font-size:39.305236px;}
.fsf{font-size:39.306863px;}
.fs6{font-size:42.120000px;}
.fsa{font-size:42.827274px;}
.fs9{font-size:43.373034px;}
.fs3{font-size:45.000000px;}
.fs18{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs14{font-size:67.499218px;}
.fs10{font-size:67.502011px;}
.fs11{font-size:71.612664px;}
.fs16{font-size:71.615152px;}
.fs15{font-size:71.616042px;}
.fs12{font-size:71.620445px;}
.fs17{font-size:71.652928px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:73.484078px;}
.fs8{font-size:74.484881px;}
.fsc{font-size:77.289665px;}
.fs4{font-size:83.880000px;}
.fsd{font-size:110.303822px;}
.y0{bottom:0.000000px;}
.yec{bottom:4.574439px;}
.ye5{bottom:4.574629px;}
.yff{bottom:4.574630px;}
.y9d{bottom:7.040709px;}
.y9f{bottom:7.040720px;}
.ya1{bottom:7.040728px;}
.ya3{bottom:7.040735px;}
.y12d{bottom:7.830000px;}
.y1e0{bottom:7.860000px;}
.y12a{bottom:7.920000px;}
.y177{bottom:7.950000px;}
.yed{bottom:8.865157px;}
.ye6{bottom:8.865524px;}
.y100{bottom:8.865533px;}
.y101{bottom:8.865536px;}
.y8f{bottom:9.782639px;}
.y158{bottom:12.420000px;}
.y9b{bottom:20.256144px;}
.ybf{bottom:20.256147px;}
.yc0{bottom:20.256158px;}
.yc1{bottom:20.256170px;}
.yc2{bottom:20.256177px;}
.ybc{bottom:20.610491px;}
.yb9{bottom:24.975947px;}
.yb6{bottom:24.975952px;}
.y1dd{bottom:25.380000px;}
.y1df{bottom:25.410000px;}
.y15a{bottom:25.470000px;}
.y129{bottom:26.640000px;}
.y157{bottom:29.970000px;}
.y9c{bottom:44.879321px;}
.y9e{bottom:44.879332px;}
.ya0{bottom:44.879340px;}
.ya2{bottom:44.879347px;}
.y193{bottom:47.520000px;}
.y1ac{bottom:51.750000px;}
.y156{bottom:57.330000px;}
.ya5{bottom:65.017349px;}
.ya7{bottom:65.017356px;}
.ya9{bottom:65.017364px;}
.yab{bottom:65.017372px;}
.yad{bottom:65.017379px;}
.y192{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y1ab{bottom:73.800000px;}
.y29{bottom:74.190000px;}
.yc3{bottom:78.273819px;}
.yc5{bottom:78.273827px;}
.yc8{bottom:78.273834px;}
.yca{bottom:78.273842px;}
.ycb{bottom:78.273849px;}
.ybd{bottom:78.587753px;}
.yb7{bottom:82.953218px;}
.yba{bottom:82.953219px;}
.yc4{bottom:91.371784px;}
.yc6{bottom:91.371787px;}
.yc7{bottom:91.371792px;}
.yc9{bottom:91.371795px;}
.y1aa{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.ya4{bottom:102.856582px;}
.ya6{bottom:102.856590px;}
.ya8{bottom:102.856597px;}
.yaa{bottom:102.856605px;}
.yac{bottom:102.856613px;}
.y205{bottom:111.810000px;}
.yeb{bottom:113.025000px;}
.y174{bottom:116.850000px;}
.y27f{bottom:116.940000px;}
.y14d{bottom:117.030000px;}
.y199{bottom:117.120000px;}
.y1a9{bottom:117.990000px;}
.y1cb{bottom:118.380000px;}
.y5d{bottom:119.010000px;}
.yee{bottom:121.980000px;}
.yaf{bottom:122.994616px;}
.yb1{bottom:122.994623px;}
.yb3{bottom:122.994631px;}
.yb5{bottom:122.994639px;}
.y204{bottom:129.360000px;}
.y88{bottom:131.340000px;}
.y173{bottom:134.400000px;}
.y14c{bottom:134.580000px;}
.y1ca{bottom:136.020000px;}
.ycd{bottom:136.251086px;}
.yd0{bottom:136.251093px;}
.yd3{bottom:136.251101px;}
.yd6{bottom:136.251109px;}
.ybe{bottom:136.603872px;}
.y5c{bottom:136.650000px;}
.y1a8{bottom:140.040000px;}
.yb8{bottom:140.930484px;}
.ybb{bottom:140.930486px;}
.y198{bottom:144.480000px;}
.y203{bottom:147.000000px;}
.y87{bottom:148.980000px;}
.ycc{bottom:149.349043px;}
.yce{bottom:149.349046px;}
.ycf{bottom:149.349051px;}
.yd1{bottom:149.349054px;}
.yd2{bottom:149.349059px;}
.yd4{bottom:149.349062px;}
.yd5{bottom:149.349066px;}
.yd7{bottom:149.349069px;}
.y172{bottom:152.040000px;}
.y14b{bottom:152.130000px;}
.y1c9{bottom:153.570000px;}
.y5b{bottom:154.200000px;}
.ye9{bottom:157.125000px;}
.y240{bottom:158.700000px;}
.yae{bottom:160.833849px;}
.yb0{bottom:160.833857px;}
.yb2{bottom:160.833865px;}
.yb4{bottom:160.833873px;}
.y27e{bottom:161.130000px;}
.y1a7{bottom:162.180000px;}
.y202{bottom:164.550000px;}
.yea{bottom:166.080000px;}
.y86{bottom:166.530000px;}
.y171{bottom:169.590000px;}
.y265{bottom:169.680000px;}
.y14a{bottom:169.770000px;}
.y1c8{bottom:171.120000px;}
.y27{bottom:171.840000px;}
.y23f{bottom:176.250000px;}
.y27d{bottom:178.680000px;}
.y201{bottom:182.190000px;}
.y85{bottom:184.170000px;}
.y11d{bottom:186.150000px;}
.y149{bottom:187.320000px;}
.y1c7{bottom:188.760000px;}
.y26{bottom:189.390000px;}
.y1e5{bottom:193.890000px;}
.y170{bottom:196.140000px;}
.y264{bottom:196.320000px;}
.y197{bottom:199.110000px;}
.y84{bottom:201.720000px;}
.y23e{bottom:202.890000px;}
.ye8{bottom:204.510000px;}
.y148{bottom:204.960000px;}
.y27c{bottom:205.320000px;}
.y1c6{bottom:206.310000px;}
.y5a{bottom:206.940000px;}
.y25{bottom:207.030000px;}
.y263{bottom:213.870000px;}
.y200{bottom:217.740000px;}
.y83{bottom:219.270000px;}
.y23d{bottom:220.440000px;}
.y11c{bottom:221.790000px;}
.y147{bottom:222.510000px;}
.y27b{bottom:222.870000px;}
.y1c5{bottom:223.950000px;}
.y24{bottom:224.580000px;}
.y196{bottom:226.470000px;}
.y262{bottom:231.510000px;}
.y16f{bottom:231.780000px;}
.y1ff{bottom:235.290000px;}
.ye4{bottom:236.775000px;}
.y82{bottom:236.910000px;}
.y217{bottom:237.270000px;}
.y23c{bottom:238.080000px;}
.y1e4{bottom:238.800000px;}
.y11b{bottom:239.340000px;}
.y146{bottom:240.060000px;}
.y27a{bottom:240.510000px;}
.y1c4{bottom:241.500000px;}
.y23{bottom:242.130000px;}
.ye7{bottom:245.730000px;}
.y16e{bottom:249.330000px;}
.y1fe{bottom:252.930000px;}
.y195{bottom:253.830000px;}
.y81{bottom:254.460000px;}
.y216{bottom:254.910000px;}
.y11a{bottom:256.980000px;}
.y145{bottom:257.700000px;}
.y261{bottom:258.060000px;}
.y1c3{bottom:259.050000px;}
.y59{bottom:259.680000px;}
.y22{bottom:260.220000px;}
.y23b{bottom:264.630000px;}
.y16d{bottom:266.970000px;}
.y1fd{bottom:270.480000px;}
.y80{bottom:272.100000px;}
.y215{bottom:272.460000px;}
.y119{bottom:274.530000px;}
.y144{bottom:275.250000px;}
.y260{bottom:275.610000px;}
.y1c2{bottom:276.690000px;}
.y58{bottom:277.320000px;}
.y21{bottom:280.920000px;}
.y194{bottom:281.190000px;}
.y23a{bottom:282.180000px;}
.y1e3{bottom:283.710000px;}
.ye3{bottom:284.250000px;}
.y16c{bottom:284.520000px;}
.y279{bottom:284.610000px;}
.y1fc{bottom:288.120000px;}
.y7f{bottom:289.650000px;}
.y214{bottom:290.100000px;}
.y118{bottom:292.080000px;}
.y143{bottom:292.800000px;}
.y25f{bottom:293.250000px;}
.y1c1{bottom:294.240000px;}
.y57{bottom:294.870000px;}
.y239{bottom:299.820000px;}
.y20{bottom:301.170000px;}
.ye2{bottom:301.800000px;}
.y16b{bottom:302.070000px;}
.y278{bottom:302.250000px;}
.y1fb{bottom:305.670000px;}
.y213{bottom:307.650000px;}
.y191{bottom:308.460000px;}
.y117{bottom:309.720000px;}
.y1c0{bottom:311.880000px;}
.y56{bottom:312.510000px;}
.y25e{bottom:319.800000px;}
.y1fa{bottom:323.220000px;}
.y7e{bottom:325.200000px;}
.y238{bottom:326.370000px;}
.y116{bottom:327.270000px;}
.y1f{bottom:328.080000px;}
.y142{bottom:328.440000px;}
.y1e2{bottom:328.620000px;}
.y1bf{bottom:329.430000px;}
.y55{bottom:330.060000px;}
.y16a{bottom:336.990000px;}
.ye1{bottom:337.350000px;}
.y25d{bottom:337.440000px;}
.y7d{bottom:342.840000px;}
.y237{bottom:344.010000px;}
.y141{bottom:345.990000px;}
.y277{bottom:346.440000px;}
.y1be{bottom:346.980000px;}
.y169{bottom:349.140000px;}
.y1f9{bottom:350.130000px;}
.y115{bottom:353.910000px;}
.ye0{bottom:354.990000px;}
.y7c{bottom:360.390000px;}
.y236{bottom:361.560000px;}
.y140{bottom:363.630000px;}
.y276{bottom:363.990000px;}
.y54{bottom:365.610000px;}
.ydf{bottom:372.540000px;}
.y1e1{bottom:373.530000px;}
.y1e{bottom:376.320000px;}
.y168{bottom:376.500000px;}
.y7b{bottom:377.940000px;}
.y212{bottom:378.390000px;}
.y235{bottom:379.110000px;}
.y13f{bottom:381.180000px;}
.y275{bottom:381.540000px;}
.y1bd{bottom:382.620000px;}
.y53{bottom:383.250000px;}
.y114{bottom:389.460000px;}
.yde{bottom:390.180000px;}
.y1d{bottom:394.230000px;}
.y7a{bottom:395.580000px;}
.y211{bottom:395.940000px;}
.y1f8{bottom:398.460000px;}
.y13e{bottom:398.730000px;}
.y25c{bottom:399.180000px;}
.y1bc{bottom:400.170000px;}
.y52{bottom:400.800000px;}
.y167{bottom:403.770000px;}
.y234{bottom:405.750000px;}
.y113{bottom:407.010000px;}
.ydd{bottom:407.730000px;}
.y274{bottom:408.180000px;}
.y79{bottom:413.130000px;}
.y210{bottom:413.580000px;}
.y1f7{bottom:416.010000px;}
.y13d{bottom:416.370000px;}
.y25b{bottom:416.730000px;}
.y1bb{bottom:417.810000px;}
.y51{bottom:418.440000px;}
.y190{bottom:418.980000px;}
.y233{bottom:423.300000px;}
.y112{bottom:424.650000px;}
.ydc{bottom:425.280000px;}
.y273{bottom:425.730000px;}
.y78{bottom:430.770000px;}
.y166{bottom:431.130000px;}
.y1c{bottom:431.220000px;}
.y1f6{bottom:433.650000px;}
.y13c{bottom:433.920000px;}
.y25a{bottom:434.370000px;}
.y1ba{bottom:435.360000px;}
.y50{bottom:435.990000px;}
.y232{bottom:440.940000px;}
.y111{bottom:442.200000px;}
.y20f{bottom:448.770000px;}
.y1b{bottom:448.860000px;}
.y13b{bottom:451.560000px;}
.ydb{bottom:451.920000px;}
.y272{bottom:452.370000px;}
.y1b9{bottom:452.910000px;}
.y4f{bottom:453.540000px;}
.y18f{bottom:454.530000px;}
.y165{bottom:458.490000px;}
.y110{bottom:459.840000px;}
.y259{bottom:460.920000px;}
.y1de{bottom:463.440000px;}
.y77{bottom:466.320000px;}
.y1a{bottom:466.410000px;}
.y1f5{bottom:468.480000px;}
.y13a{bottom:469.110000px;}
.y271{bottom:469.950000px;}
.y18e{bottom:472.110000px;}
.y10f{bottom:477.420000px;}
.y258{bottom:478.500000px;}
.y1f4{bottom:480.660000px;}
.y76{bottom:483.900000px;}
.y19{bottom:484.080000px;}
.y231{bottom:485.070000px;}
.y164{bottom:485.880000px;}
.yda{bottom:487.500000px;}
.y1b8{bottom:487.860000px;}
.y4e{bottom:489.210000px;}
.y18d{bottom:489.750000px;}
.y10e{bottom:494.970000px;}
.y75{bottom:501.540000px;}
.y18{bottom:501.630000px;}
.y1b7{bottom:501.900000px;}
.y230{bottom:502.710000px;}
.y139{bottom:504.690000px;}
.yd9{bottom:505.050000px;}
.y257{bottom:505.140000px;}
.y4d{bottom:506.760000px;}
.y18c{bottom:507.300000px;}
.y1dc{bottom:508.380000px;}
.y10d{bottom:512.610000px;}
.y163{bottom:513.150000px;}
.y1b6{bottom:514.050000px;}
.y270{bottom:514.140000px;}
.y74{bottom:519.090000px;}
.y17{bottom:519.180000px;}
.y22f{bottom:520.260000px;}
.y138{bottom:522.330000px;}
.y256{bottom:522.690000px;}
.y4c{bottom:524.400000px;}
.y18b{bottom:524.940000px;}
.y1f3{bottom:525.570000px;}
.y10c{bottom:530.160000px;}
.y26f{bottom:531.690000px;}
.y73{bottom:536.730000px;}
.y16{bottom:536.820000px;}
.y9a{bottom:537.224959px;}
.y137{bottom:539.880000px;}
.y287{bottom:540.330000px;}
.y162{bottom:540.510000px;}
.y1b5{bottom:541.410000px;}
.y4b{bottom:541.950000px;}
.y22e{bottom:546.900000px;}
.y10b{bottom:547.800000px;}
.y255{bottom:549.330000px;}
.y1db{bottom:553.290000px;}
.y72{bottom:554.280000px;}
.y15{bottom:554.370000px;}
.y286{bottom:557.880000px;}
.y4a{bottom:559.500000px;}
.y18a{bottom:560.490000px;}
.y22d{bottom:564.450000px;}
.y10a{bottom:565.350000px;}
.y254{bottom:566.880000px;}
.y161{bottom:567.870000px;}
.y1b4{bottom:568.770000px;}
.y1f2{bottom:570.480000px;}
.y71{bottom:571.830000px;}
.y14{bottom:571.920000px;}
.y136{bottom:574.800000px;}
.y285{bottom:575.430000px;}
.y26e{bottom:575.880000px;}
.y49{bottom:577.140000px;}
.y189{bottom:578.040000px;}
.y109{bottom:582.900000px;}
.y253{bottom:584.430000px;}
.y135{bottom:586.950000px;}
.y70{bottom:589.470000px;}
.y13{bottom:589.560000px;}
.y22c{bottom:591.000000px;}
.y26d{bottom:593.430000px;}
.y48{bottom:594.690000px;}
.y188{bottom:595.680000px;}
.y1b3{bottom:596.040000px;}
.y1da{bottom:598.200000px;}
.y108{bottom:600.540000px;}
.y284{bottom:602.070000px;}
.y6f{bottom:607.020000px;}
.y12{bottom:607.110000px;}
.y22b{bottom:608.640000px;}
.y252{bottom:611.070000px;}
.y47{bottom:612.330000px;}
.y160{bottom:612.780000px;}
.y187{bottom:613.230000px;}
.y134{bottom:614.310000px;}
.y1f1{bottom:615.480000px;}
.yd8{bottom:616.740000px;}
.y107{bottom:618.090000px;}
.y1b2{bottom:623.400000px;}
.y6e{bottom:624.660000px;}
.y11{bottom:624.750000px;}
.y22a{bottom:626.190000px;}
.y251{bottom:628.620000px;}
.y46{bottom:629.880000px;}
.y186{bottom:630.870000px;}
.y133{bottom:641.580000px;}
.y6d{bottom:642.210000px;}
.y10{bottom:642.300000px;}
.y1d9{bottom:643.110000px;}
.y106{bottom:644.640000px;}
.y283{bottom:646.260000px;}
.y45{bottom:647.430000px;}
.y185{bottom:648.420000px;}
.y229{bottom:652.830000px;}
.y1b1{bottom:654.630000px;}
.y250{bottom:655.260000px;}
.y15f{bottom:657.690000px;}
.y6c{bottom:659.760000px;}
.yf{bottom:659.850000px;}
.y1f0{bottom:660.390000px;}
.y282{bottom:663.810000px;}
.y44{bottom:665.070000px;}
.y184{bottom:665.970000px;}
.y132{bottom:668.940000px;}
.y20e{bottom:669.120000px;}
.y228{bottom:670.380000px;}
.y1a6{bottom:672.180000px;}
.y24f{bottom:672.810000px;}
.y6b{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y105{bottom:680.280000px;}
.y43{bottom:682.620000px;}
.y183{bottom:683.610000px;}
.y15e{bottom:685.050000px;}
.y227{bottom:687.930000px;}
.y1d8{bottom:688.020000px;}
.y24e{bottom:690.360000px;}
.y6a{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y131{bottom:696.300000px;}
.y104{bottom:697.830000px;}
.y1b0{bottom:699.540000px;}
.y42{bottom:700.260000px;}
.y1ef{bottom:705.300000px;}
.y26c{bottom:708.000000px;}
.y182{bottom:710.160000px;}
.y69{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y226{bottom:714.570000px;}
.y24d{bottom:717.000000px;}
.y20d{bottom:717.360000px;}
.y41{bottom:717.810000px;}
.y130{bottom:723.570000px;}
.y281{bottom:725.550000px;}
.y1af{bottom:726.900000px;}
.y15d{bottom:729.960000px;}
.y68{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.y225{bottom:732.120000px;}
.y99{bottom:732.300000px;}
.y1d7{bottom:732.930000px;}
.y103{bottom:733.470000px;}
.y24c{bottom:734.550000px;}
.y20c{bottom:735.000000px;}
.y40{bottom:735.360000px;}
.y181{bottom:744.990000px;}
.y67{bottom:747.690000px;}
.y224{bottom:749.670000px;}
.y98{bottom:749.940000px;}
.y1ee{bottom:750.210000px;}
.y12f{bottom:750.930000px;}
.y24b{bottom:752.190000px;}
.y20b{bottom:752.550000px;}
.y3f{bottom:753.000000px;}
.y1ae{bottom:754.170000px;}
.ya{bottom:757.140000px;}
.y180{bottom:757.230000px;}
.y1d6{bottom:760.290000px;}
.y66{bottom:765.330000px;}
.yfe{bottom:765.674919px;}
.y97{bottom:767.490000px;}
.y26b{bottom:769.740000px;}
.y20a{bottom:770.190000px;}
.y3e{bottom:770.550000px;}
.y102{bottom:774.690000px;}
.y15c{bottom:774.870000px;}
.y223{bottom:776.310000px;}
.y12e{bottom:778.290000px;}
.y24a{bottom:778.740000px;}
.y1ad{bottom:781.530000px;}
.y17f{bottom:784.500000px;}
.y96{bottom:785.130000px;}
.y280{bottom:787.290000px;}
.y209{bottom:787.740000px;}
.y3d{bottom:788.190000px;}
.y222{bottom:793.860000px;}
.y1ed{bottom:795.120000px;}
.y249{bottom:796.290000px;}
.y65{bottom:800.880000px;}
.y95{bottom:802.680000px;}
.y208{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y12c{bottom:805.650000px;}
.y3c{bottom:805.740000px;}
.y221{bottom:811.500000px;}
.y17e{bottom:811.860000px;}
.yfd{bottom:813.120000px;}
.y248{bottom:813.930000px;}
.y64{bottom:818.520000px;}
.y15b{bottom:819.780000px;}
.y94{bottom:820.230000px;}
.y3b{bottom:823.290000px;}
.y1a5{bottom:826.440000px;}
.yfc{bottom:830.760000px;}
.y26a{bottom:831.480000px;}
.y12b{bottom:832.920000px;}
.y63{bottom:836.070000px;}
.y93{bottom:837.870000px;}
.y220{bottom:838.050000px;}
.y17d{bottom:839.220000px;}
.y1ec{bottom:840.030000px;}
.y247{bottom:840.480000px;}
.y3a{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y1d5{bottom:848.670000px;}
.y269{bottom:849.030000px;}
.y62{bottom:853.620000px;}
.y1a4{bottom:853.800000px;}
.y92{bottom:855.420000px;}
.y21f{bottom:855.600000px;}
.y246{bottom:858.030000px;}
.y39{bottom:858.480000px;}
.y128{bottom:860.280000px;}
.y159{bottom:864.690000px;}
.yfb{bottom:866.310000px;}
.y17c{bottom:866.580000px;}
.y21e{bottom:873.240000px;}
.y245{bottom:875.670000px;}
.y38{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y61{bottom:880.530000px;}
.y1a3{bottom:881.160000px;}
.yfa{bottom:883.860000px;}
.y1d4{bottom:884.220000px;}
.y1eb{bottom:884.940000px;}
.y91{bottom:891.060000px;}
.y268{bottom:893.220000px;}
.y37{bottom:893.670000px;}
.y17b{bottom:893.850000px;}
.y21d{bottom:899.790000px;}
.yf9{bottom:901.500000px;}
.y1d3{bottom:901.860000px;}
.y244{bottom:902.220000px;}
.y1a2{bottom:908.430000px;}
.y127{bottom:908.970000px;}
.y155{bottom:909.600000px;}
.y267{bottom:910.860000px;}
.y207{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y21c{bottom:917.430000px;}
.yf8{bottom:919.050000px;}
.y1d2{bottom:919.410000px;}
.y243{bottom:919.860000px;}
.y17a{bottom:921.210000px;}
.y90{bottom:926.610000px;}
.y8e{bottom:926.624919px;}
.y60{bottom:928.860000px;}
.y36{bottom:929.220000px;}
.y1ea{bottom:929.850000px;}
.y21b{bottom:934.980000px;}
.y1a1{bottom:935.790000px;}
.yf7{bottom:936.690000px;}
.y1d1{bottom:936.960000px;}
.y242{bottom:937.410000px;}
.y126{bottom:944.610000px;}
.y5f{bottom:946.410000px;}
.y35{bottom:946.860000px;}
.y179{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.yf6{bottom:954.240000px;}
.y241{bottom:954.960000px;}
.y154{bottom:959.100000px;}
.y21a{bottom:961.890000px;}
.y125{bottom:962.160000px;}
.y1a0{bottom:963.150000px;}
.y1d0{bottom:963.600000px;}
.y5e{bottom:963.960000px;}
.y34{bottom:964.410000px;}
.yf5{bottom:971.790000px;}
.y266{bottom:972.600000px;}
.y1e9{bottom:974.850000px;}
.y178{bottom:975.930000px;}
.y8d{bottom:976.740000px;}
.y124{bottom:979.710000px;}
.y206{bottom:981.600000px;}
.y33{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.y19f{bottom:990.510000px;}
.y8c{bottom:994.290000px;}
.y123{bottom:997.350000px;}
.y1cf{bottom:999.150000px;}
.y32{bottom:999.600000px;}
.y176{bottom:1003.200000px;}
.yf4{bottom:1007.430000px;}
.y153{bottom:1007.790000px;}
.y219{bottom:1010.160000px;}
.y8b{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y122{bottom:1014.930000px;}
.y1ce{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.y19e{bottom:1017.810000px;}
.y1e8{bottom:1019.790000px;}
.y121{bottom:1032.570000px;}
.y1cd{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.y218{bottom:1037.070000px;}
.y8a{bottom:1038.510000px;}
.yf3{bottom:1043.010000px;}
.y152{bottom:1043.370000px;}
.y19d{bottom:1045.170000px;}
.y175{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.y120{bottom:1059.120000px;}
.yf2{bottom:1060.650000px;}
.y151{bottom:1060.920000px;}
.y1e7{bottom:1064.700000px;}
.y1cc{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y19c{bottom:1072.530000px;}
.y89{bottom:1074.420000px;}
.y150{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y11f{bottom:1091.700000px;}
.y14f{bottom:1096.110000px;}
.yf1{bottom:1096.200000px;}
.y19b{bottom:1099.890000px;}
.y2c{bottom:1105.110000px;}
.y1e6{bottom:1109.610000px;}
.y14e{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y19a{bottom:1127.160000px;}
.y11e{bottom:1127.610000px;}
.yef{bottom:1128.375000px;}
.yf0{bottom:1137.420000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h20{height:26.099623px;}
.h1b{height:26.100703px;}
.h25{height:26.100784px;}
.h29{height:26.550000px;}
.h2e{height:26.580000px;}
.h28{height:26.640000px;}
.h2f{height:26.670000px;}
.hc{height:28.800820px;}
.h2{height:30.022383px;}
.h1a{height:31.723132px;}
.h3{height:39.155273px;}
.h2a{height:41.661211px;}
.hf{height:42.011716px;}
.h13{height:42.032627px;}
.h34{height:44.100000px;}
.h35{height:44.130000px;}
.h2d{height:44.190000px;}
.h2c{height:48.690000px;}
.h23{height:49.998200px;}
.h1e{height:50.000269px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h1d{height:53.045123px;}
.h24{height:53.046965px;}
.h22{height:53.047625px;}
.h1f{height:53.050886px;}
.h26{height:53.074947px;}
.h18{height:54.431322px;}
.h8{height:55.779258px;}
.h17{height:57.250206px;}
.h5{height:57.323320px;}
.h27{height:59.973223px;}
.h36{height:61.793886px;}
.hb{height:62.585859px;}
.h33{height:66.240000px;}
.ha{height:68.582109px;}
.h32{height:70.628906px;}
.h9{height:70.664062px;}
.h12{height:72.084723px;}
.h16{height:72.120604px;}
.h4{height:72.985430px;}
.hd{height:73.066468px;}
.h2b{height:76.050000px;}
.h19{height:81.704540px;}
.h1c{height:83.380152px;}
.h21{height:83.409661px;}
.h30{height:88.380000px;}
.h10{height:94.873505px;}
.h14{height:94.894416px;}
.h11{height:95.037618px;}
.h15{height:95.058529px;}
.he{height:173.701830px;}
.h31{height:180.900000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:51.750000px;}
.we{width:60.030000px;}
.wb{width:60.120000px;}
.w2c{width:62.100000px;}
.wc{width:66.990000px;}
.w2f{width:73.620000px;}
.w2e{width:75.330000px;}
.w21{width:79.380000px;}
.w27{width:87.030000px;}
.w23{width:87.750000px;}
.w1f{width:88.920000px;}
.w14{width:93.720000px;}
.w16{width:93.780000px;}
.w15{width:95.670000px;}
.w28{width:100.560000px;}
.w13{width:104.310000px;}
.w22{width:109.350000px;}
.w26{width:113.670000px;}
.w29{width:114.030000px;}
.w20{width:116.490000px;}
.w2a{width:119.190000px;}
.w12{width:123.480000px;}
.w17{width:128.520000px;}
.w19{width:128.970000px;}
.w1e{width:130.410000px;}
.w1a{width:138.900000px;}
.w18{width:158.880000px;}
.w2d{width:170.130000px;}
.w11{width:190.170000px;}
.w1c{width:196.590000px;}
.w1d{width:197.820000px;}
.w10{width:198.840000px;}
.w1b{width:220.140000px;}
.wf{width:240.960000px;}
.w2b{width:251.550000px;}
.wa{width:259.020000px;}
.w7{width:264.755062px;}
.w8{width:276.452074px;}
.w6{width:278.990517px;}
.w5{width:279.910484px;}
.w24{width:337.350000px;}
.w25{width:417.990000px;}
.w9{width:423.751970px;}
.w3{width:566.176960px;}
.w4{width:611.104090px;}
.w30{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:7.650000px;}
.x10{left:19.587380px;}
.xf{left:23.580241px;}
.x25{left:29.869724px;}
.x1{left:68.040000px;}
.x73{left:84.149987px;}
.x41{left:97.331926px;}
.x37{left:100.496429px;}
.x1e{left:102.379619px;}
.x1d{left:106.974373px;}
.x79{left:111.239987px;}
.x2d{left:112.661963px;}
.x7{left:118.469990px;}
.x16{left:132.173341px;}
.xe{left:135.337844px;}
.x48{left:136.693615px;}
.xd{left:139.368702px;}
.x29{left:142.457204px;}
.x67{left:143.819987px;}
.x24{left:145.658185px;}
.x4{left:149.520000px;}
.x5d{left:165.810000px;}
.x46{left:184.185427px;}
.x47{left:186.450128px;}
.x75{left:188.670000px;}
.x55{left:191.024860px;}
.x2{left:201.539987px;}
.x54{left:203.544238px;}
.x4d{left:205.863399px;}
.x6b{left:208.380000px;}
.x51{left:210.208135px;}
.x40{left:213.079349px;}
.x36{left:214.553687px;}
.x4c{left:218.418043px;}
.x1c{left:221.256584px;}
.x50{left:222.775006px;}
.x1b{left:225.892376px;}
.x2c{left:231.576926px;}
.x5a{left:234.794980px;}
.x68{left:237.720000px;}
.x15{left:247.931403px;}
.xc{left:249.390542px;}
.x3c{left:251.913627px;}
.xb{left:253.387962px;}
.x53{left:257.183816px;}
.x28{left:258.206147px;}
.x23{left:259.680485px;}
.x58{left:269.033139px;}
.x4b{left:273.446998px;}
.x3f{left:279.378806px;}
.x44{left:300.095483px;}
.x45{left:302.360184px;}
.x4a{left:306.644980px;}
.x57{left:308.444980px;}
.x63{left:310.440000px;}
.x52{left:314.294980px;}
.x62{left:322.229987px;}
.x3d{left:324.611999px;}
.x3e{left:326.831101px;}
.x1a{left:337.197038px;}
.x6e{left:339.600000px;}
.x19{left:341.787232px;}
.x2b{left:347.471782px;}
.x71{left:352.020000px;}
.x14{left:361.683155px;}
.x6a{left:364.709987px;}
.x13{left:366.318947px;}
.x43{left:368.644441px;}
.x27{left:371.957899px;}
.x5b{left:374.672713px;}
.x35{left:385.409305px;}
.x3b{left:393.130558px;}
.x74{left:401.969987px;}
.x66{left:415.560000px;}
.x32{left:417.236692px;}
.xa{left:420.246159px;}
.x9{left:424.243580px;}
.x4f{left:426.269987px;}
.x6c{left:429.240000px;}
.x22{left:430.536103px;}
.x39{left:438.211757px;}
.x3a{left:440.446059px;}
.x33{left:451.359171px;}
.x18{left:454.383838px;}
.x17{left:458.974032px;}
.x2a{left:464.658582px;}
.x31{left:473.094206px;}
.x12{left:475.282913px;}
.x11{left:479.280334px;}
.x26{left:485.572857px;}
.x20{left:493.886883px;}
.x2e{left:502.398512px;}
.x76{left:503.850000px;}
.x64{left:510.090000px;}
.x1f{left:513.554817px;}
.x69{left:526.560000px;}
.x42{left:534.347487px;}
.x5{left:536.376577px;}
.x72{left:541.050000px;}
.x6f{left:546.450000px;}
.x38{left:552.769074px;}
.x5f{left:554.100000px;}
.x34{left:557.389672px;}
.x30{left:575.400873px;}
.x56{left:579.029987px;}
.x59{left:584.879987px;}
.x4e{left:586.589987px;}
.x2f{left:588.502691px;}
.x21{left:598.564645px;}
.x8{left:604.036402px;}
.x60{left:606.570000px;}
.x6d{left:626.640000px;}
.x5c{left:658.589987px;}
.x61{left:667.410000px;}
.x77{left:674.700000px;}
.x65{left:700.980000px;}
.x6{left:715.739987px;}
.x49{left:729.599987px;}
.x70{left:736.710000px;}
.x78{left:750.840000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.834754pt;}
.v7{vertical-align:-15.256516pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:15.256516pt;}
.v4{vertical-align:16.834754pt;}
.v5{vertical-align:46.988257pt;}
.ls2f{letter-spacing:-0.981431pt;}
.ls41{letter-spacing:-0.456533pt;}
.ls32{letter-spacing:-0.390580pt;}
.ls30{letter-spacing:-0.390563pt;}
.lsf{letter-spacing:-0.277867pt;}
.ls36{letter-spacing:-0.259200pt;}
.ls10{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls3f{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls35{letter-spacing:-0.090133pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls34{letter-spacing:-0.056533pt;}
.ls33{letter-spacing:-0.044160pt;}
.ls3a{letter-spacing:-0.043520pt;}
.ls38{letter-spacing:-0.035840pt;}
.ls39{letter-spacing:-0.019840pt;}
.ls31{letter-spacing:-0.013120pt;}
.ls42{letter-spacing:-0.011840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls37{letter-spacing:0.037120pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls40{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.151174pt;}
.lsa{letter-spacing:0.154133pt;}
.ls3d{letter-spacing:0.161067pt;}
.ls43{letter-spacing:0.177067pt;}
.ls3e{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.383605pt;}
.ls20{letter-spacing:1.176972pt;}
.ls2e{letter-spacing:3.011501pt;}
.ls3c{letter-spacing:42.423680pt;}
.ls2a{letter-spacing:45.174173pt;}
.ls21{letter-spacing:45.339944pt;}
.ls22{letter-spacing:47.649682pt;}
.ls26{letter-spacing:48.323816pt;}
.ls25{letter-spacing:48.379073pt;}
.ls28{letter-spacing:48.478535pt;}
.ls24{letter-spacing:48.876385pt;}
.ls23{letter-spacing:48.887436pt;}
.ls27{letter-spacing:49.561571pt;}
.ls29{letter-spacing:49.594725pt;}
.ls2b{letter-spacing:63.950467pt;}
.ls3b{letter-spacing:71.863680pt;}
.ls17{letter-spacing:301.784156pt;}
.ls1b{letter-spacing:302.729049pt;}
.ls18{letter-spacing:306.425735pt;}
.ls19{letter-spacing:306.978304pt;}
.ls15{letter-spacing:308.072391pt;}
.ls1a{letter-spacing:314.216958pt;}
.ls16{letter-spacing:314.233535pt;}
.ls1e{letter-spacing:314.935298pt;}
.ls1c{letter-spacing:318.858538pt;}
.ls1d{letter-spacing:319.411107pt;}
.ls1f{letter-spacing:325.721445pt;}
.ls14{letter-spacing:514.578475pt;}
.ls13{letter-spacing:518.722742pt;}
.ws17{word-spacing:-53.828265pt;}
.ws12{word-spacing:-36.348622pt;}
.ws16{word-spacing:-35.860230pt;}
.ws31{word-spacing:-34.966629pt;}
.ws22{word-spacing:-34.950777pt;}
.ws28{word-spacing:-34.948629pt;}
.ws2c{word-spacing:-34.948194pt;}
.ws1e{word-spacing:-34.946980pt;}
.ws1f{word-spacing:-32.940981pt;}
.ws29{word-spacing:-32.939618pt;}
.ws14{word-spacing:-17.506767pt;}
.wse{word-spacing:-16.703370pt;}
.ws15{word-spacing:-16.329795pt;}
.ws1b{word-spacing:-15.384052pt;}
.ws1a{word-spacing:-15.000447pt;}
.ws24{word-spacing:-14.999826pt;}
.ws2f{word-spacing:-14.609867pt;}
.ws25{word-spacing:-14.609263pt;}
.ws19{word-spacing:-14.019016pt;}
.ws8{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws3a{word-spacing:-11.933867pt;}
.ws35{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws37{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws39{word-spacing:-11.744960pt;}
.ws2d{word-spacing:-11.743680pt;}
.ws34{word-spacing:-11.713280pt;}
.ws32{word-spacing:-11.700267pt;}
.ws5{word-spacing:-11.697067pt;}
.ws33{word-spacing:-11.666667pt;}
.ws6{word-spacing:-11.645333pt;}
.ws36{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.540267pt;}
.ws9{word-spacing:-11.478933pt;}
.ws38{word-spacing:-11.300267pt;}
.ws13{word-spacing:-9.517172pt;}
.ws1d{word-spacing:-8.734858pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
.ws27{word-spacing:313.671348pt;}
.ws26{word-spacing:576.669497pt;}
.ws23{word-spacing:597.726272pt;}
.ws2b{word-spacing:627.090218pt;}
.ws21{word-spacing:628.143866pt;}
.ws1c{word-spacing:630.739267pt;}
.ws2a{word-spacing:648.097906pt;}
.ws20{word-spacing:648.745551pt;}
.ws18{word-spacing:652.930331pt;}
.ws30{word-spacing:1129.972033pt;}
.ws2e{word-spacing:1147.999878pt;}
.ws11{word-spacing:1547.462779pt;}
.wsf{word-spacing:1619.646312pt;}
.ws10{word-spacing:1759.001890pt;}
._46{margin-left:-691.050915pt;}
._3a{margin-left:-657.891405pt;}
._38{margin-left:-650.603784pt;}
._18{margin-left:-579.564780pt;}
._2e{margin-left:-572.786162pt;}
._36{margin-left:-564.387113pt;}
._37{margin-left:-560.684901pt;}
._30{margin-left:-558.684734pt;}
._31{margin-left:-555.718635pt;}
._34{margin-left:-552.137590pt;}
._35{margin-left:-547.066129pt;}
._33{margin-left:-539.207476pt;}
._32{margin-left:-536.088371pt;}
._2c{margin-left:-533.523338pt;}
._3b{margin-left:-531.846157pt;}
._3d{margin-left:-527.757147pt;}
._4c{margin-left:-502.652517pt;}
._4b{margin-left:-495.883547pt;}
._48{margin-left:-490.855169pt;}
._47{margin-left:-484.423266pt;}
._49{margin-left:-482.953433pt;}
._4a{margin-left:-479.560659pt;}
._1d{margin-left:-462.327387pt;}
._17{margin-left:-437.227616pt;}
._16{margin-left:-432.885441pt;}
._15{margin-left:-431.644771pt;}
._14{margin-left:-422.127809pt;}
._52{margin-left:-392.607198pt;}
._13{margin-left:-390.944812pt;}
._51{margin-left:-384.999805pt;}
._59{margin-left:-379.665068pt;}
._5a{margin-left:-375.970070pt;}
._63{margin-left:-369.665529pt;}
._50{margin-left:-365.238251pt;}
._5e{margin-left:-351.259030pt;}
._42{margin-left:-339.438557pt;}
._2d{margin-left:-336.311646pt;}
._2f{margin-left:-332.167379pt;}
._6d{margin-left:-331.123051pt;}
._40{margin-left:-327.909519pt;}
._3e{margin-left:-326.818335pt;}
._1f{margin-left:-324.208920pt;}
._21{margin-left:-321.878090pt;}
._3f{margin-left:-319.659664pt;}
._1b{margin-left:-317.244175pt;}
._41{margin-left:-315.924298pt;}
._20{margin-left:-314.313885pt;}
._1e{margin-left:-312.719684pt;}
._55{margin-left:-310.116815pt;}
._64{margin-left:-309.127733pt;}
._1c{margin-left:-305.919857pt;}
._19{margin-left:-304.060055pt;}
._1a{margin-left:-303.116263pt;}
._65{margin-left:-300.109352pt;}
._5f{margin-left:-297.605627pt;}
._6c{margin-left:-294.894989pt;}
._26{margin-left:-293.399660pt;}
._54{margin-left:-289.106835pt;}
._56{margin-left:-287.370679pt;}
._5b{margin-left:-286.284558pt;}
._28{margin-left:-285.087830pt;}
._27{margin-left:-282.075342pt;}
._24{margin-left:-280.371197pt;}
._25{margin-left:-279.216776pt;}
._62{margin-left:-276.991134pt;}
._60{margin-left:-276.014311pt;}
._53{margin-left:-270.507636pt;}
._4e{margin-left:-268.621573pt;}
._58{margin-left:-267.453466pt;}
._4f{margin-left:-264.277371pt;}
._72{margin-left:-261.899394pt;}
._5c{margin-left:-258.242618pt;}
._61{margin-left:-254.074477pt;}
._57{margin-left:-251.234804pt;}
._71{margin-left:-249.260514pt;}
._74{margin-left:-247.973594pt;}
._5d{margin-left:-245.639950pt;}
._75{margin-left:-244.322237pt;}
._39{margin-left:-241.968304pt;}
._76{margin-left:-239.006568pt;}
._73{margin-left:-236.934468pt;}
._6e{margin-left:-232.323108pt;}
._6f{margin-left:-230.046624pt;}
._77{margin-left:-228.006573pt;}
._68{margin-left:-225.179561pt;}
._66{margin-left:-223.684996pt;}
._70{margin-left:-222.424344pt;}
._69{margin-left:-221.044599pt;}
._6a{margin-left:-215.788713pt;}
._67{margin-left:-213.272863pt;}
._6b{margin-left:-208.604839pt;}
._43{margin-left:-179.433121pt;}
._3c{margin-left:-168.633353pt;}
._22{margin-left:-161.776412pt;}
._29{margin-left:-133.050607pt;}
._44{margin-left:-114.463169pt;}
._2a{margin-left:-103.434963pt;}
._23{margin-left:-100.323524pt;}
._45{margin-left:-92.378832pt;}
._2b{margin-left:-56.335808pt;}
._81{margin-left:-3.961066pt;}
._d{margin-left:-3.008000pt;}
._4{margin-left:-2.083198pt;}
._2{margin-left:-1.015467pt;}
._1{width:0.909685pt;}
._0{width:1.809280pt;}
._3{width:3.000320pt;}
._5{width:4.010880pt;}
._8{width:5.127253pt;}
._9{width:6.727041pt;}
._e{width:8.129279pt;}
._7{width:9.706347pt;}
._6{width:10.634667pt;}
._c{width:12.662578pt;}
._b{width:13.573867pt;}
._a{width:14.482133pt;}
._f{width:15.390827pt;}
._10{width:16.352747pt;}
._11{width:17.635519pt;}
._7c{width:18.543680pt;}
._12{width:19.612480pt;}
._8a{width:20.542080pt;}
._80{width:21.803520pt;}
._88{width:22.872427pt;}
._8b{width:23.780693pt;}
._9e{width:25.009920pt;}
._78{width:27.895680pt;}
._83{width:29.685760pt;}
._89{width:31.689920pt;}
._97{width:32.667200pt;}
._a0{width:33.629973pt;}
._a4{width:36.374187pt;}
._a3{width:37.675200pt;}
._8f{width:39.620160pt;}
._90{width:44.857280pt;}
._91{width:45.799360pt;}
._95{width:51.836800pt;}
._96{width:52.764587pt;}
._84{width:54.268160pt;}
._7f{width:55.577600pt;}
._8e{width:62.257814pt;}
._8d{width:63.326400pt;}
._8c{width:64.448640pt;}
._9d{width:67.761920pt;}
._7d{width:71.395840pt;}
._85{width:76.392320pt;}
._86{width:77.675200pt;}
._7a{width:79.251520pt;}
._92{width:80.427200pt;}
._9a{width:93.573761pt;}
._99{width:94.642240pt;}
._9f{width:103.085760pt;}
._7e{width:110.567360pt;}
._9b{width:116.712960pt;}
._9c{width:117.942080pt;}
._4d{width:119.443200pt;}
._79{width:124.782400pt;}
._93{width:126.524160pt;}
._94{width:127.691840pt;}
._87{width:134.561920pt;}
._82{width:141.135040pt;}
._7b{width:172.557760pt;}
._a1{width:242.831360pt;}
._a2{width:243.846720pt;}
._98{width:489.403520pt;}
.fse{font-size:5.440000pt;}
.fs0{font-size:34.560000pt;}
.fs13{font-size:34.937988pt;}
.fsf{font-size:34.939433pt;}
.fs6{font-size:37.440000pt;}
.fsa{font-size:38.068688pt;}
.fs9{font-size:38.553808pt;}
.fs3{font-size:40.000000pt;}
.fs18{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs14{font-size:59.999305pt;}
.fs10{font-size:60.001787pt;}
.fs11{font-size:63.655702pt;}
.fs16{font-size:63.657913pt;}
.fs15{font-size:63.658704pt;}
.fs12{font-size:63.662618pt;}
.fs17{font-size:63.691492pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:65.319181pt;}
.fs8{font-size:66.208783pt;}
.fsc{font-size:68.701924pt;}
.fs4{font-size:74.560000pt;}
.fsd{font-size:98.047842pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:4.066168pt;}
.ye5{bottom:4.066337pt;}
.yff{bottom:4.066338pt;}
.y9d{bottom:6.258408pt;}
.y9f{bottom:6.258418pt;}
.ya1{bottom:6.258425pt;}
.ya3{bottom:6.258431pt;}
.y12d{bottom:6.960000pt;}
.y1e0{bottom:6.986667pt;}
.y12a{bottom:7.040000pt;}
.y177{bottom:7.066667pt;}
.yed{bottom:7.880139pt;}
.ye6{bottom:7.880466pt;}
.y100{bottom:7.880474pt;}
.y101{bottom:7.880476pt;}
.y8f{bottom:8.695679pt;}
.y158{bottom:11.040000pt;}
.y9b{bottom:18.005461pt;}
.ybf{bottom:18.005464pt;}
.yc0{bottom:18.005474pt;}
.yc1{bottom:18.005484pt;}
.yc2{bottom:18.005491pt;}
.ybc{bottom:18.320436pt;}
.yb9{bottom:22.200842pt;}
.yb6{bottom:22.200846pt;}
.y1dd{bottom:22.560000pt;}
.y1df{bottom:22.586667pt;}
.y15a{bottom:22.640000pt;}
.y129{bottom:23.680000pt;}
.y157{bottom:26.640000pt;}
.y9c{bottom:39.892729pt;}
.y9e{bottom:39.892740pt;}
.ya0{bottom:39.892746pt;}
.ya2{bottom:39.892753pt;}
.y193{bottom:42.240000pt;}
.y1ac{bottom:46.000000pt;}
.y156{bottom:50.960000pt;}
.ya5{bottom:57.793199pt;}
.ya7{bottom:57.793206pt;}
.ya9{bottom:57.793212pt;}
.yab{bottom:57.793219pt;}
.yad{bottom:57.793226pt;}
.y192{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y1ab{bottom:65.600000pt;}
.y29{bottom:65.946667pt;}
.yc3{bottom:69.576728pt;}
.yc5{bottom:69.576735pt;}
.yc8{bottom:69.576741pt;}
.yca{bottom:69.576748pt;}
.ycb{bottom:69.576755pt;}
.ybd{bottom:69.855780pt;}
.yb7{bottom:73.736194pt;}
.yba{bottom:73.736195pt;}
.yc4{bottom:81.219364pt;}
.yc6{bottom:81.219366pt;}
.yc7{bottom:81.219370pt;}
.yc9{bottom:81.219373pt;}
.y1aa{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.ya4{bottom:91.428073pt;}
.ya6{bottom:91.428080pt;}
.ya8{bottom:91.428087pt;}
.yaa{bottom:91.428094pt;}
.yac{bottom:91.428100pt;}
.y205{bottom:99.386667pt;}
.yeb{bottom:100.466667pt;}
.y174{bottom:103.866667pt;}
.y27f{bottom:103.946667pt;}
.y14d{bottom:104.026667pt;}
.y199{bottom:104.106667pt;}
.y1a9{bottom:104.880000pt;}
.y1cb{bottom:105.226667pt;}
.y5d{bottom:105.786667pt;}
.yee{bottom:108.426667pt;}
.yaf{bottom:109.328547pt;}
.yb1{bottom:109.328554pt;}
.yb3{bottom:109.328561pt;}
.yb5{bottom:109.328568pt;}
.y204{bottom:114.986667pt;}
.y88{bottom:116.746667pt;}
.y173{bottom:119.466667pt;}
.y14c{bottom:119.626667pt;}
.y1ca{bottom:120.906667pt;}
.ycd{bottom:121.112076pt;}
.yd0{bottom:121.112083pt;}
.yd3{bottom:121.112090pt;}
.yd6{bottom:121.112097pt;}
.ybe{bottom:121.425664pt;}
.y5c{bottom:121.466667pt;}
.y1a8{bottom:124.480000pt;}
.yb8{bottom:125.271542pt;}
.ybb{bottom:125.271543pt;}
.y198{bottom:128.426667pt;}
.y203{bottom:130.666667pt;}
.y87{bottom:132.426667pt;}
.ycc{bottom:132.754705pt;}
.yce{bottom:132.754708pt;}
.ycf{bottom:132.754712pt;}
.yd1{bottom:132.754715pt;}
.yd2{bottom:132.754719pt;}
.yd4{bottom:132.754722pt;}
.yd5{bottom:132.754726pt;}
.yd7{bottom:132.754728pt;}
.y172{bottom:135.146667pt;}
.y14b{bottom:135.226667pt;}
.y1c9{bottom:136.506667pt;}
.y5b{bottom:137.066667pt;}
.ye9{bottom:139.666667pt;}
.y240{bottom:141.066667pt;}
.yae{bottom:142.963421pt;}
.yb0{bottom:142.963428pt;}
.yb2{bottom:142.963435pt;}
.yb4{bottom:142.963442pt;}
.y27e{bottom:143.226667pt;}
.y1a7{bottom:144.160000pt;}
.y202{bottom:146.266667pt;}
.yea{bottom:147.626667pt;}
.y86{bottom:148.026667pt;}
.y171{bottom:150.746667pt;}
.y265{bottom:150.826667pt;}
.y14a{bottom:150.906667pt;}
.y1c8{bottom:152.106667pt;}
.y27{bottom:152.746667pt;}
.y23f{bottom:156.666667pt;}
.y27d{bottom:158.826667pt;}
.y201{bottom:161.946667pt;}
.y85{bottom:163.706667pt;}
.y11d{bottom:165.466667pt;}
.y149{bottom:166.506667pt;}
.y1c7{bottom:167.786667pt;}
.y26{bottom:168.346667pt;}
.y1e5{bottom:172.346667pt;}
.y170{bottom:174.346667pt;}
.y264{bottom:174.506667pt;}
.y197{bottom:176.986667pt;}
.y84{bottom:179.306667pt;}
.y23e{bottom:180.346667pt;}
.ye8{bottom:181.786667pt;}
.y148{bottom:182.186667pt;}
.y27c{bottom:182.506667pt;}
.y1c6{bottom:183.386667pt;}
.y5a{bottom:183.946667pt;}
.y25{bottom:184.026667pt;}
.y263{bottom:190.106667pt;}
.y200{bottom:193.546667pt;}
.y83{bottom:194.906667pt;}
.y23d{bottom:195.946667pt;}
.y11c{bottom:197.146667pt;}
.y147{bottom:197.786667pt;}
.y27b{bottom:198.106667pt;}
.y1c5{bottom:199.066667pt;}
.y24{bottom:199.626667pt;}
.y196{bottom:201.306667pt;}
.y262{bottom:205.786667pt;}
.y16f{bottom:206.026667pt;}
.y1ff{bottom:209.146667pt;}
.ye4{bottom:210.466667pt;}
.y82{bottom:210.586667pt;}
.y217{bottom:210.906667pt;}
.y23c{bottom:211.626667pt;}
.y1e4{bottom:212.266667pt;}
.y11b{bottom:212.746667pt;}
.y146{bottom:213.386667pt;}
.y27a{bottom:213.786667pt;}
.y1c4{bottom:214.666667pt;}
.y23{bottom:215.226667pt;}
.ye7{bottom:218.426667pt;}
.y16e{bottom:221.626667pt;}
.y1fe{bottom:224.826667pt;}
.y195{bottom:225.626667pt;}
.y81{bottom:226.186667pt;}
.y216{bottom:226.586667pt;}
.y11a{bottom:228.426667pt;}
.y145{bottom:229.066667pt;}
.y261{bottom:229.386667pt;}
.y1c3{bottom:230.266667pt;}
.y59{bottom:230.826667pt;}
.y22{bottom:231.306667pt;}
.y23b{bottom:235.226667pt;}
.y16d{bottom:237.306667pt;}
.y1fd{bottom:240.426667pt;}
.y80{bottom:241.866667pt;}
.y215{bottom:242.186667pt;}
.y119{bottom:244.026667pt;}
.y144{bottom:244.666667pt;}
.y260{bottom:244.986667pt;}
.y1c2{bottom:245.946667pt;}
.y58{bottom:246.506667pt;}
.y21{bottom:249.706667pt;}
.y194{bottom:249.946667pt;}
.y23a{bottom:250.826667pt;}
.y1e3{bottom:252.186667pt;}
.ye3{bottom:252.666667pt;}
.y16c{bottom:252.906667pt;}
.y279{bottom:252.986667pt;}
.y1fc{bottom:256.106667pt;}
.y7f{bottom:257.466667pt;}
.y214{bottom:257.866667pt;}
.y118{bottom:259.626667pt;}
.y143{bottom:260.266667pt;}
.y25f{bottom:260.666667pt;}
.y1c1{bottom:261.546667pt;}
.y57{bottom:262.106667pt;}
.y239{bottom:266.506667pt;}
.y20{bottom:267.706667pt;}
.ye2{bottom:268.266667pt;}
.y16b{bottom:268.506667pt;}
.y278{bottom:268.666667pt;}
.y1fb{bottom:271.706667pt;}
.y213{bottom:273.466667pt;}
.y191{bottom:274.186667pt;}
.y117{bottom:275.306667pt;}
.y1c0{bottom:277.226667pt;}
.y56{bottom:277.786667pt;}
.y25e{bottom:284.266667pt;}
.y1fa{bottom:287.306667pt;}
.y7e{bottom:289.066667pt;}
.y238{bottom:290.106667pt;}
.y116{bottom:290.906667pt;}
.y1f{bottom:291.626667pt;}
.y142{bottom:291.946667pt;}
.y1e2{bottom:292.106667pt;}
.y1bf{bottom:292.826667pt;}
.y55{bottom:293.386667pt;}
.y16a{bottom:299.546667pt;}
.ye1{bottom:299.866667pt;}
.y25d{bottom:299.946667pt;}
.y7d{bottom:304.746667pt;}
.y237{bottom:305.786667pt;}
.y141{bottom:307.546667pt;}
.y277{bottom:307.946667pt;}
.y1be{bottom:308.426667pt;}
.y169{bottom:310.346667pt;}
.y1f9{bottom:311.226667pt;}
.y115{bottom:314.586667pt;}
.ye0{bottom:315.546667pt;}
.y7c{bottom:320.346667pt;}
.y236{bottom:321.386667pt;}
.y140{bottom:323.226667pt;}
.y276{bottom:323.546667pt;}
.y54{bottom:324.986667pt;}
.ydf{bottom:331.146667pt;}
.y1e1{bottom:332.026667pt;}
.y1e{bottom:334.506667pt;}
.y168{bottom:334.666667pt;}
.y7b{bottom:335.946667pt;}
.y212{bottom:336.346667pt;}
.y235{bottom:336.986667pt;}
.y13f{bottom:338.826667pt;}
.y275{bottom:339.146667pt;}
.y1bd{bottom:340.106667pt;}
.y53{bottom:340.666667pt;}
.y114{bottom:346.186667pt;}
.yde{bottom:346.826667pt;}
.y1d{bottom:350.426667pt;}
.y7a{bottom:351.626667pt;}
.y211{bottom:351.946667pt;}
.y1f8{bottom:354.186667pt;}
.y13e{bottom:354.426667pt;}
.y25c{bottom:354.826667pt;}
.y1bc{bottom:355.706667pt;}
.y52{bottom:356.266667pt;}
.y167{bottom:358.906667pt;}
.y234{bottom:360.666667pt;}
.y113{bottom:361.786667pt;}
.ydd{bottom:362.426667pt;}
.y274{bottom:362.826667pt;}
.y79{bottom:367.226667pt;}
.y210{bottom:367.626667pt;}
.y1f7{bottom:369.786667pt;}
.y13d{bottom:370.106667pt;}
.y25b{bottom:370.426667pt;}
.y1bb{bottom:371.386667pt;}
.y51{bottom:371.946667pt;}
.y190{bottom:372.426667pt;}
.y233{bottom:376.266667pt;}
.y112{bottom:377.466667pt;}
.ydc{bottom:378.026667pt;}
.y273{bottom:378.426667pt;}
.y78{bottom:382.906667pt;}
.y166{bottom:383.226667pt;}
.y1c{bottom:383.306667pt;}
.y1f6{bottom:385.466667pt;}
.y13c{bottom:385.706667pt;}
.y25a{bottom:386.106667pt;}
.y1ba{bottom:386.986667pt;}
.y50{bottom:387.546667pt;}
.y232{bottom:391.946667pt;}
.y111{bottom:393.066667pt;}
.y20f{bottom:398.906667pt;}
.y1b{bottom:398.986667pt;}
.y13b{bottom:401.386667pt;}
.ydb{bottom:401.706667pt;}
.y272{bottom:402.106667pt;}
.y1b9{bottom:402.586667pt;}
.y4f{bottom:403.146667pt;}
.y18f{bottom:404.026667pt;}
.y165{bottom:407.546667pt;}
.y110{bottom:408.746667pt;}
.y259{bottom:409.706667pt;}
.y1de{bottom:411.946667pt;}
.y77{bottom:414.506667pt;}
.y1a{bottom:414.586667pt;}
.y1f5{bottom:416.426667pt;}
.y13a{bottom:416.986667pt;}
.y271{bottom:417.733333pt;}
.y18e{bottom:419.653333pt;}
.y10f{bottom:424.373333pt;}
.y258{bottom:425.333333pt;}
.y1f4{bottom:427.253333pt;}
.y76{bottom:430.133333pt;}
.y19{bottom:430.293333pt;}
.y231{bottom:431.173333pt;}
.y164{bottom:431.893333pt;}
.yda{bottom:433.333333pt;}
.y1b8{bottom:433.653333pt;}
.y4e{bottom:434.853333pt;}
.y18d{bottom:435.333333pt;}
.y10e{bottom:439.973333pt;}
.y75{bottom:445.813333pt;}
.y18{bottom:445.893333pt;}
.y1b7{bottom:446.133333pt;}
.y230{bottom:446.853333pt;}
.y139{bottom:448.613333pt;}
.yd9{bottom:448.933333pt;}
.y257{bottom:449.013333pt;}
.y4d{bottom:450.453333pt;}
.y18c{bottom:450.933333pt;}
.y1dc{bottom:451.893333pt;}
.y10d{bottom:455.653333pt;}
.y163{bottom:456.133333pt;}
.y1b6{bottom:456.933333pt;}
.y270{bottom:457.013333pt;}
.y74{bottom:461.413333pt;}
.y17{bottom:461.493333pt;}
.y22f{bottom:462.453333pt;}
.y138{bottom:464.293333pt;}
.y256{bottom:464.613333pt;}
.y4c{bottom:466.133333pt;}
.y18b{bottom:466.613333pt;}
.y1f3{bottom:467.173333pt;}
.y10c{bottom:471.253333pt;}
.y26f{bottom:472.613333pt;}
.y73{bottom:477.093333pt;}
.y16{bottom:477.173333pt;}
.y9a{bottom:477.533297pt;}
.y137{bottom:479.893333pt;}
.y287{bottom:480.293333pt;}
.y162{bottom:480.453333pt;}
.y1b5{bottom:481.253333pt;}
.y4b{bottom:481.733333pt;}
.y22e{bottom:486.133333pt;}
.y10b{bottom:486.933333pt;}
.y255{bottom:488.293333pt;}
.y1db{bottom:491.813333pt;}
.y72{bottom:492.693333pt;}
.y15{bottom:492.773333pt;}
.y286{bottom:495.893333pt;}
.y4a{bottom:497.333333pt;}
.y18a{bottom:498.213333pt;}
.y22d{bottom:501.733333pt;}
.y10a{bottom:502.533333pt;}
.y254{bottom:503.893333pt;}
.y161{bottom:504.773333pt;}
.y1b4{bottom:505.573333pt;}
.y1f2{bottom:507.093333pt;}
.y71{bottom:508.293333pt;}
.y14{bottom:508.373333pt;}
.y136{bottom:510.933333pt;}
.y285{bottom:511.493333pt;}
.y26e{bottom:511.893333pt;}
.y49{bottom:513.013333pt;}
.y189{bottom:513.813333pt;}
.y109{bottom:518.133333pt;}
.y253{bottom:519.493333pt;}
.y135{bottom:521.733333pt;}
.y70{bottom:523.973333pt;}
.y13{bottom:524.053333pt;}
.y22c{bottom:525.333333pt;}
.y26d{bottom:527.493333pt;}
.y48{bottom:528.613333pt;}
.y188{bottom:529.493333pt;}
.y1b3{bottom:529.813333pt;}
.y1da{bottom:531.733333pt;}
.y108{bottom:533.813333pt;}
.y284{bottom:535.173333pt;}
.y6f{bottom:539.573333pt;}
.y12{bottom:539.653333pt;}
.y22b{bottom:541.013333pt;}
.y252{bottom:543.173333pt;}
.y47{bottom:544.293333pt;}
.y160{bottom:544.693333pt;}
.y187{bottom:545.093333pt;}
.y134{bottom:546.053333pt;}
.y1f1{bottom:547.093333pt;}
.yd8{bottom:548.213333pt;}
.y107{bottom:549.413333pt;}
.y1b2{bottom:554.133333pt;}
.y6e{bottom:555.253333pt;}
.y11{bottom:555.333333pt;}
.y22a{bottom:556.613333pt;}
.y251{bottom:558.773333pt;}
.y46{bottom:559.893333pt;}
.y186{bottom:560.773333pt;}
.y133{bottom:570.293333pt;}
.y6d{bottom:570.853333pt;}
.y10{bottom:570.933333pt;}
.y1d9{bottom:571.653333pt;}
.y106{bottom:573.013333pt;}
.y283{bottom:574.453333pt;}
.y45{bottom:575.493333pt;}
.y185{bottom:576.373333pt;}
.y229{bottom:580.293333pt;}
.y1b1{bottom:581.893333pt;}
.y250{bottom:582.453333pt;}
.y15f{bottom:584.613333pt;}
.y6c{bottom:586.453333pt;}
.yf{bottom:586.533333pt;}
.y1f0{bottom:587.013333pt;}
.y282{bottom:590.053333pt;}
.y44{bottom:591.173333pt;}
.y184{bottom:591.973333pt;}
.y132{bottom:594.613333pt;}
.y20e{bottom:594.773333pt;}
.y228{bottom:595.893333pt;}
.y1a6{bottom:597.493333pt;}
.y24f{bottom:598.053333pt;}
.y6b{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y105{bottom:604.693333pt;}
.y43{bottom:606.773333pt;}
.y183{bottom:607.653333pt;}
.y15e{bottom:608.933333pt;}
.y227{bottom:611.493333pt;}
.y1d8{bottom:611.573333pt;}
.y24e{bottom:613.653333pt;}
.y6a{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y131{bottom:618.933333pt;}
.y104{bottom:620.293333pt;}
.y1b0{bottom:621.813333pt;}
.y42{bottom:622.453333pt;}
.y1ef{bottom:626.933333pt;}
.y26c{bottom:629.333333pt;}
.y182{bottom:631.253333pt;}
.y69{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y226{bottom:635.173333pt;}
.y24d{bottom:637.333333pt;}
.y20d{bottom:637.653333pt;}
.y41{bottom:638.053333pt;}
.y130{bottom:643.173333pt;}
.y281{bottom:644.933333pt;}
.y1af{bottom:646.133333pt;}
.y15d{bottom:648.853333pt;}
.y68{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.y225{bottom:650.773333pt;}
.y99{bottom:650.933333pt;}
.y1d7{bottom:651.493333pt;}
.y103{bottom:651.973333pt;}
.y24c{bottom:652.933333pt;}
.y20c{bottom:653.333333pt;}
.y40{bottom:653.653333pt;}
.y181{bottom:662.213333pt;}
.y67{bottom:664.613333pt;}
.y224{bottom:666.373333pt;}
.y98{bottom:666.613333pt;}
.y1ee{bottom:666.853333pt;}
.y12f{bottom:667.493333pt;}
.y24b{bottom:668.613333pt;}
.y20b{bottom:668.933333pt;}
.y3f{bottom:669.333333pt;}
.y1ae{bottom:670.373333pt;}
.ya{bottom:673.013333pt;}
.y180{bottom:673.093333pt;}
.y1d6{bottom:675.813333pt;}
.y66{bottom:680.293333pt;}
.yfe{bottom:680.599928pt;}
.y97{bottom:682.213333pt;}
.y26b{bottom:684.213333pt;}
.y20a{bottom:684.613333pt;}
.y3e{bottom:684.933333pt;}
.y102{bottom:688.613333pt;}
.y15c{bottom:688.773333pt;}
.y223{bottom:690.053333pt;}
.y12e{bottom:691.813333pt;}
.y24a{bottom:692.213333pt;}
.y1ad{bottom:694.693333pt;}
.y17f{bottom:697.333333pt;}
.y96{bottom:697.893333pt;}
.y280{bottom:699.813333pt;}
.y209{bottom:700.213333pt;}
.y3d{bottom:700.613333pt;}
.y222{bottom:705.653333pt;}
.y1ed{bottom:706.773333pt;}
.y249{bottom:707.813333pt;}
.y65{bottom:711.893333pt;}
.y95{bottom:713.493333pt;}
.y208{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y12c{bottom:716.133333pt;}
.y3c{bottom:716.213333pt;}
.y221{bottom:721.333333pt;}
.y17e{bottom:721.653333pt;}
.yfd{bottom:722.773333pt;}
.y248{bottom:723.493333pt;}
.y64{bottom:727.573333pt;}
.y15b{bottom:728.693333pt;}
.y94{bottom:729.093333pt;}
.y3b{bottom:731.813333pt;}
.y1a5{bottom:734.613333pt;}
.yfc{bottom:738.453333pt;}
.y26a{bottom:739.093333pt;}
.y12b{bottom:740.373333pt;}
.y63{bottom:743.173333pt;}
.y93{bottom:744.773333pt;}
.y220{bottom:744.933333pt;}
.y17d{bottom:745.973333pt;}
.y1ec{bottom:746.693333pt;}
.y247{bottom:747.093333pt;}
.y3a{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y1d5{bottom:754.373333pt;}
.y269{bottom:754.693333pt;}
.y62{bottom:758.773333pt;}
.y1a4{bottom:758.933333pt;}
.y92{bottom:760.373333pt;}
.y21f{bottom:760.533333pt;}
.y246{bottom:762.693333pt;}
.y39{bottom:763.093333pt;}
.y128{bottom:764.693333pt;}
.y159{bottom:768.613333pt;}
.yfb{bottom:770.053333pt;}
.y17c{bottom:770.293333pt;}
.y21e{bottom:776.213333pt;}
.y245{bottom:778.373333pt;}
.y38{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y61{bottom:782.693333pt;}
.y1a3{bottom:783.253333pt;}
.yfa{bottom:785.653333pt;}
.y1d4{bottom:785.973333pt;}
.y1eb{bottom:786.613333pt;}
.y91{bottom:792.053333pt;}
.y268{bottom:793.973333pt;}
.y37{bottom:794.373333pt;}
.y17b{bottom:794.533333pt;}
.y21d{bottom:799.813333pt;}
.yf9{bottom:801.333333pt;}
.y1d3{bottom:801.653333pt;}
.y244{bottom:801.973333pt;}
.y1a2{bottom:807.493333pt;}
.y127{bottom:807.973333pt;}
.y155{bottom:808.533333pt;}
.y267{bottom:809.653333pt;}
.y207{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y21c{bottom:815.493333pt;}
.yf8{bottom:816.933333pt;}
.y1d2{bottom:817.253333pt;}
.y243{bottom:817.653333pt;}
.y17a{bottom:818.853333pt;}
.y90{bottom:823.653333pt;}
.y8e{bottom:823.666594pt;}
.y60{bottom:825.653333pt;}
.y36{bottom:825.973333pt;}
.y1ea{bottom:826.533333pt;}
.y21b{bottom:831.093333pt;}
.y1a1{bottom:831.813333pt;}
.yf7{bottom:832.613333pt;}
.y1d1{bottom:832.853333pt;}
.y242{bottom:833.253333pt;}
.y126{bottom:839.653333pt;}
.y5f{bottom:841.253333pt;}
.y35{bottom:841.653333pt;}
.y179{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.yf6{bottom:848.213333pt;}
.y241{bottom:848.853333pt;}
.y154{bottom:852.533333pt;}
.y21a{bottom:855.013333pt;}
.y125{bottom:855.253333pt;}
.y1a0{bottom:856.133333pt;}
.y1d0{bottom:856.533333pt;}
.y5e{bottom:856.853333pt;}
.y34{bottom:857.253333pt;}
.yf5{bottom:863.813333pt;}
.y266{bottom:864.533333pt;}
.y1e9{bottom:866.533333pt;}
.y178{bottom:867.493333pt;}
.y8d{bottom:868.213333pt;}
.y124{bottom:870.853333pt;}
.y206{bottom:872.533333pt;}
.y33{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.y19f{bottom:880.453333pt;}
.y8c{bottom:883.813333pt;}
.y123{bottom:886.533333pt;}
.y1cf{bottom:888.133333pt;}
.y32{bottom:888.533333pt;}
.y176{bottom:891.733333pt;}
.yf4{bottom:895.493333pt;}
.y153{bottom:895.813333pt;}
.y219{bottom:897.920000pt;}
.y8b{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y122{bottom:902.160000pt;}
.y1ce{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.y19e{bottom:904.720000pt;}
.y1e8{bottom:906.480000pt;}
.y121{bottom:917.840000pt;}
.y1cd{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.y218{bottom:921.840000pt;}
.y8a{bottom:923.120000pt;}
.yf3{bottom:927.120000pt;}
.y152{bottom:927.440000pt;}
.y19d{bottom:929.040000pt;}
.y175{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.y120{bottom:941.440000pt;}
.yf2{bottom:942.800000pt;}
.y151{bottom:943.040000pt;}
.y1e7{bottom:946.400000pt;}
.y1cc{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y19c{bottom:953.360000pt;}
.y89{bottom:955.040000pt;}
.y150{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y11f{bottom:970.400000pt;}
.y14f{bottom:974.320000pt;}
.yf1{bottom:974.400000pt;}
.y19b{bottom:977.680000pt;}
.y2c{bottom:982.320000pt;}
.y1e6{bottom:986.320000pt;}
.y14e{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y19a{bottom:1001.920000pt;}
.y11e{bottom:1002.320000pt;}
.yef{bottom:1003.000000pt;}
.yf0{bottom:1011.040000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h20{height:23.199665pt;}
.h1b{height:23.200625pt;}
.h25{height:23.200697pt;}
.h29{height:23.600000pt;}
.h2e{height:23.626667pt;}
.h28{height:23.680000pt;}
.h2f{height:23.706667pt;}
.hc{height:25.600729pt;}
.h2{height:26.686562pt;}
.h1a{height:28.198340pt;}
.h3{height:34.804688pt;}
.h2a{height:37.032187pt;}
.hf{height:37.343747pt;}
.h13{height:37.362336pt;}
.h34{height:39.200000pt;}
.h35{height:39.226667pt;}
.h2d{height:39.280000pt;}
.h2c{height:43.280000pt;}
.h23{height:44.442844pt;}
.h1e{height:44.444683pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h1d{height:47.151220pt;}
.h24{height:47.152858pt;}
.h22{height:47.153445pt;}
.h1f{height:47.156343pt;}
.h26{height:47.177731pt;}
.h18{height:48.383397pt;}
.h8{height:49.581562pt;}
.h17{height:50.889072pt;}
.h5{height:50.954062pt;}
.h27{height:53.309531pt;}
.h36{height:54.927899pt;}
.hb{height:55.631875pt;}
.h33{height:58.880000pt;}
.ha{height:60.961875pt;}
.h32{height:62.781250pt;}
.h9{height:62.812500pt;}
.h12{height:64.075309pt;}
.h16{height:64.107204pt;}
.h4{height:64.875937pt;}
.hd{height:64.947971pt;}
.h2b{height:67.600000pt;}
.h19{height:72.626258pt;}
.h1c{height:74.115691pt;}
.h21{height:74.141921pt;}
.h30{height:78.560000pt;}
.h10{height:84.332004pt;}
.h14{height:84.350592pt;}
.h11{height:84.477882pt;}
.h15{height:84.496471pt;}
.he{height:154.401627pt;}
.h31{height:160.800000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:46.000000pt;}
.we{width:53.360000pt;}
.wb{width:53.440000pt;}
.w2c{width:55.200000pt;}
.wc{width:59.546667pt;}
.w2f{width:65.440000pt;}
.w2e{width:66.960000pt;}
.w21{width:70.560000pt;}
.w27{width:77.360000pt;}
.w23{width:78.000000pt;}
.w1f{width:79.040000pt;}
.w14{width:83.306667pt;}
.w16{width:83.360000pt;}
.w15{width:85.040000pt;}
.w28{width:89.386667pt;}
.w13{width:92.720000pt;}
.w22{width:97.200000pt;}
.w26{width:101.040000pt;}
.w29{width:101.360000pt;}
.w20{width:103.546667pt;}
.w2a{width:105.946667pt;}
.w12{width:109.760000pt;}
.w17{width:114.240000pt;}
.w19{width:114.640000pt;}
.w1e{width:115.920000pt;}
.w1a{width:123.466667pt;}
.w18{width:141.226667pt;}
.w2d{width:151.226667pt;}
.w11{width:169.040000pt;}
.w1c{width:174.746667pt;}
.w1d{width:175.840000pt;}
.w10{width:176.746667pt;}
.w1b{width:195.680000pt;}
.wf{width:214.186667pt;}
.w2b{width:223.600000pt;}
.wa{width:230.240000pt;}
.w7{width:235.337833pt;}
.w8{width:245.735177pt;}
.w6{width:247.991571pt;}
.w5{width:248.809319pt;}
.w24{width:299.866667pt;}
.w25{width:371.546667pt;}
.w9{width:376.668418pt;}
.w3{width:503.268409pt;}
.w4{width:543.203635pt;}
.w30{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:6.800000pt;}
.x10{left:17.411005pt;}
.xf{left:20.960214pt;}
.x25{left:26.550866pt;}
.x1{left:60.480000pt;}
.x73{left:74.799988pt;}
.x41{left:86.517268pt;}
.x37{left:89.330159pt;}
.x1e{left:91.004106pt;}
.x1d{left:95.088332pt;}
.x79{left:98.879988pt;}
.x2d{left:100.143967pt;}
.x7{left:105.306658pt;}
.x16{left:117.487414pt;}
.xe{left:120.300305pt;}
.x48{left:121.505436pt;}
.xd{left:123.883291pt;}
.x29{left:126.628626pt;}
.x67{left:127.839988pt;}
.x24{left:129.473943pt;}
.x4{left:132.906667pt;}
.x5d{left:147.386667pt;}
.x46{left:163.720380pt;}
.x47{left:165.733447pt;}
.x75{left:167.706667pt;}
.x55{left:169.799875pt;}
.x2{left:179.146655pt;}
.x54{left:180.928212pt;}
.x4d{left:182.989688pt;}
.x6b{left:185.226667pt;}
.x51{left:186.851675pt;}
.x40{left:189.403866pt;}
.x36{left:190.714389pt;}
.x4c{left:194.149371pt;}
.x1c{left:196.672519pt;}
.x50{left:198.022227pt;}
.x1b{left:200.793223pt;}
.x2c{left:205.846156pt;}
.x5a{left:208.706649pt;}
.x68{left:211.306667pt;}
.x15{left:220.383470pt;}
.xc{left:221.680482pt;}
.x3c{left:223.923224pt;}
.xb{left:225.233744pt;}
.x53{left:228.607836pt;}
.x28{left:229.516575pt;}
.x23{left:230.827098pt;}
.x58{left:239.140568pt;}
.x4b{left:243.063999pt;}
.x3f{left:248.336717pt;}
.x44{left:266.751541pt;}
.x45{left:268.764608pt;}
.x4a{left:272.573315pt;}
.x57{left:274.173315pt;}
.x63{left:275.946667pt;}
.x52{left:279.373315pt;}
.x62{left:286.426655pt;}
.x3d{left:288.543999pt;}
.x3e{left:290.516534pt;}
.x1a{left:299.730701pt;}
.x6e{left:301.866667pt;}
.x19{left:303.810873pt;}
.x2b{left:308.863806pt;}
.x71{left:312.906667pt;}
.x14{left:321.496138pt;}
.x6a{left:324.186655pt;}
.x13{left:325.616842pt;}
.x43{left:327.683948pt;}
.x27{left:330.629244pt;}
.x5b{left:333.042412pt;}
.x35{left:342.586049pt;}
.x3b{left:349.449385pt;}
.x74{left:357.306655pt;}
.x66{left:369.386667pt;}
.x32{left:370.877060pt;}
.xa{left:373.552142pt;}
.x9{left:377.105404pt;}
.x4f{left:378.906655pt;}
.x6c{left:381.546667pt;}
.x22{left:382.698758pt;}
.x39{left:389.521562pt;}
.x3a{left:391.507608pt;}
.x33{left:401.208152pt;}
.x18{left:403.896745pt;}
.x17{left:407.976917pt;}
.x2a{left:413.029850pt;}
.x31{left:420.528183pt;}
.x12{left:422.473701pt;}
.x11{left:426.026963pt;}
.x26{left:431.620317pt;}
.x20{left:439.010563pt;}
.x2e{left:446.576456pt;}
.x76{left:447.866667pt;}
.x64{left:453.413333pt;}
.x1f{left:456.493171pt;}
.x69{left:468.053333pt;}
.x42{left:474.975544pt;}
.x5{left:476.779180pt;}
.x72{left:480.933333pt;}
.x6f{left:485.733333pt;}
.x38{left:491.350288pt;}
.x5f{left:492.533333pt;}
.x34{left:495.457486pt;}
.x30{left:511.467442pt;}
.x56{left:514.693322pt;}
.x59{left:519.893322pt;}
.x4e{left:521.413322pt;}
.x2f{left:523.113503pt;}
.x21{left:532.057462pt;}
.x8{left:536.921246pt;}
.x60{left:539.173333pt;}
.x6d{left:557.013333pt;}
.x5c{left:585.413322pt;}
.x61{left:593.253333pt;}
.x77{left:599.733333pt;}
.x65{left:623.093333pt;}
.x6{left:636.213322pt;}
.x49{left:648.533322pt;}
.x70{left:654.853333pt;}
.x78{left:667.413333pt;}
.x3{left:704.053322pt;}
}




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