
    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_5bf34de14713d852cff08e53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_5d8ee27ce8dfb0fb63bc0bb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_1da96e65d8199b3a8932bee2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_38c8051d17f9a9a221961851.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.744000;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_4e40941225729481e46f0755.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_7afc9770cb92fb662c42dc03.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_ef7f64b4b1fcf4bf4249c976.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956000;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_1b63594259085428600b569c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.771000;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_0003b170294c2e7261629ad5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff7daaf27f9ae6dea5d5acf2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.066000;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_fc38dc40ea707924ac4fea59.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.648000;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_1dc08bd5c5ab02f3e8990cc7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.233000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281273,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.744200px;}
.ls10{letter-spacing:-1.652400px;}
.ls11{letter-spacing:-1.630800px;}
.ls7{letter-spacing:-1.495800px;}
.ls6{letter-spacing:-1.323000px;}
.ls1c{letter-spacing:-1.315184px;}
.ls18{letter-spacing:-1.300784px;}
.ls4{letter-spacing:-1.296000px;}
.ls1e{letter-spacing:-1.295984px;}
.ls20{letter-spacing:-1.286384px;}
.ls22{letter-spacing:-1.281584px;}
.ls1f{letter-spacing:-1.276784px;}
.ls1b{letter-spacing:-1.271984px;}
.ls21{letter-spacing:-1.267184px;}
.ls1a{letter-spacing:-1.262384px;}
.ls19{letter-spacing:-1.257584px;}
.ls5{letter-spacing:-1.252800px;}
.ls1d{letter-spacing:-1.247984px;}
.ls9{letter-spacing:-1.009800px;}
.ls8{letter-spacing:-0.880200px;}
.lse{letter-spacing:-0.853200px;}
.lsd{letter-spacing:-0.831600px;}
.lsa{letter-spacing:-0.820800px;}
.lsb{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.783000px;}
.ls38{letter-spacing:-0.004800px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.014400px;}
.ls4d{letter-spacing:0.044999px;}
.ls3b{letter-spacing:0.071999px;}
.ls2a{letter-spacing:0.095999px;}
.ls36{letter-spacing:0.112499px;}
.ls4e{letter-spacing:0.121498px;}
.ls3{letter-spacing:0.125998px;}
.ls51{letter-spacing:0.138288px;}
.ls35{letter-spacing:0.148498px;}
.ls25{letter-spacing:0.220797px;}
.ls47{letter-spacing:4.631942px;}
.ls3f{letter-spacing:4.646342px;}
.ls46{letter-spacing:4.727941px;}
.ls56{letter-spacing:4.737541px;}
.ls40{letter-spacing:4.751941px;}
.ls23{letter-spacing:6.048060px;}
.ls34{letter-spacing:6.054061px;}
.ls15{letter-spacing:6.180062px;}
.ls37{letter-spacing:6.950313px;}
.ls29{letter-spacing:6.988713px;}
.ls12{letter-spacing:8.580477px;}
.ls52{letter-spacing:10.601859px;}
.ls55{letter-spacing:10.939354px;}
.ls1{letter-spacing:11.340000px;}
.ls42{letter-spacing:11.618845px;}
.ls4c{letter-spacing:11.960841px;}
.ls2b{letter-spacing:12.455844px;}
.ls2e{letter-spacing:12.518244px;}
.ls45{letter-spacing:12.982327px;}
.ls2c{letter-spacing:13.137436px;}
.ls33{letter-spacing:13.478232px;}
.ls43{letter-spacing:13.873315px;}
.ls50{letter-spacing:15.362795px;}
.ls26{letter-spacing:15.527806px;}
.ls24{letter-spacing:15.868602px;}
.ls4a{letter-spacing:16.384282px;}
.ls53{letter-spacing:18.080759px;}
.ls41{letter-spacing:18.085259px;}
.ls32{letter-spacing:19.938951px;}
.ls2d{letter-spacing:20.082949px;}
.ls31{letter-spacing:20.279746px;}
.ls4b{letter-spacing:20.803223px;}
.ls54{letter-spacing:21.145218px;}
.ls49{letter-spacing:23.525686px;}
.ls27{letter-spacing:24.710091px;}
.ls3c{letter-spacing:27.086061px;}
.ls4f{letter-spacing:27.265136px;}
.ls2{letter-spacing:28.436400px;}
.ls44{letter-spacing:43.253423px;}
.ls48{letter-spacing:48.698351px;}
.ls14{letter-spacing:70.038700px;}
.ls13{letter-spacing:70.446704px;}
.ls16{letter-spacing:70.722707px;}
.ls2f{letter-spacing:72.078721px;}
.ls3a{letter-spacing:181.374582px;}
.ls39{letter-spacing:182.738063px;}
.ls3d{letter-spacing:214.368142px;}
.ls3e{letter-spacing:2041.540435px;}
.ls17{letter-spacing:2065.572491px;}
.ls28{letter-spacing:2065.690090px;}
.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;}
}
.wsd6{word-spacing:-182.783063px;}
.wsea{word-spacing:-181.419581px;}
.ws0{word-spacing:-18.984000px;}
.ws19b{word-spacing:-12.005840px;}
.ws16d{word-spacing:-11.663844px;}
.ws1aa{word-spacing:-10.984354px;}
.ws35{word-spacing:-8.622477px;}
.ws37{word-spacing:-6.240062px;}
.ws135{word-spacing:-4.679942px;}
.wse{word-spacing:-0.060001px;}
.ws79{word-spacing:-0.047999px;}
.wse0{word-spacing:-0.044999px;}
.wsa{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:2.592000px;}
.ws87{word-spacing:5.462332px;}
.wsd2{word-spacing:5.539131px;}
.ws132{word-spacing:7.449507px;}
.ws1c4{word-spacing:7.718304px;}
.ws130{word-spacing:7.775903px;}
.ws1a9{word-spacing:9.701871px;}
.ws1ab{word-spacing:9.832369px;}
.ws31{word-spacing:10.735047px;}
.ws2f{word-spacing:10.764446px;}
.wsc{word-spacing:10.789646px;}
.ws32{word-spacing:10.823245px;}
.ws9{word-spacing:10.869445px;}
.ws62{word-spacing:10.915552px;}
.ws8{word-spacing:10.932444px;}
.wsb{word-spacing:10.966043px;}
.ws30{word-spacing:11.016443px;}
.ws44{word-spacing:11.049462px;}
.ws61{word-spacing:11.068363px;}
.ws89{word-spacing:11.078111px;}
.wsd{word-spacing:11.218040px;}
.ws18e{word-spacing:11.236350px;}
.ws18f{word-spacing:11.267850px;}
.ws164{word-spacing:11.420848px;}
.ws1b8{word-spacing:11.443347px;}
.wsf2{word-spacing:11.461347px;}
.ws1a5{word-spacing:11.483847px;}
.ws15b{word-spacing:11.488347px;}
.ws14b{word-spacing:11.506347px;}
.ws152{word-spacing:11.510847px;}
.ws18b{word-spacing:11.528846px;}
.ws160{word-spacing:11.537846px;}
.ws165{word-spacing:11.542346px;}
.ws161{word-spacing:11.546846px;}
.ws14a{word-spacing:11.573846px;}
.ws14c{word-spacing:11.578346px;}
.ws3a{word-spacing:11.582255px;}
.wse7{word-spacing:11.591845px;}
.wse3{word-spacing:11.596345px;}
.wsf0{word-spacing:11.605345px;}
.wse8{word-spacing:11.609845px;}
.wsee{word-spacing:11.614345px;}
.wsef{word-spacing:11.623345px;}
.ws10f{word-spacing:11.627845px;}
.wsd5{word-spacing:11.632345px;}
.wse9{word-spacing:11.636845px;}
.wsf3{word-spacing:11.641345px;}
.ws153{word-spacing:11.645845px;}
.ws9f{word-spacing:11.654254px;}
.ws146{word-spacing:11.672844px;}
.ws1c1{word-spacing:11.690844px;}
.ws198{word-spacing:11.708844px;}
.ws1c3{word-spacing:11.717844px;}
.wse5{word-spacing:11.722344px;}
.ws10d{word-spacing:11.726844px;}
.wsd9{word-spacing:11.735844px;}
.ws9c{word-spacing:11.735853px;}
.wse6{word-spacing:11.744843px;}
.wse2{word-spacing:11.749343px;}
.ws196{word-spacing:11.753843px;}
.ws13d{word-spacing:11.758343px;}
.wse4{word-spacing:11.767343px;}
.wsb5{word-spacing:11.769453px;}
.ws131{word-spacing:11.774253px;}
.wsdb{word-spacing:11.798843px;}
.wsdd{word-spacing:11.807843px;}
.ws13b{word-spacing:11.825842px;}
.ws6b{word-spacing:11.827052px;}
.ws1c7{word-spacing:11.831852px;}
.ws136{word-spacing:11.834842px;}
.ws15f{word-spacing:11.843842px;}
.ws163{word-spacing:11.861842px;}
.ws190{word-spacing:11.866342px;}
.ws145{word-spacing:11.870842px;}
.wsff{word-spacing:11.889451px;}
.wsa1{word-spacing:11.894251px;}
.ws5d{word-spacing:11.908651px;}
.ws113{word-spacing:11.913451px;}
.ws13c{word-spacing:11.915841px;}
.ws171{word-spacing:11.920341px;}
.ws108{word-spacing:11.927851px;}
.ws36{word-spacing:11.937451px;}
.ws18c{word-spacing:11.947341px;}
.wsdf{word-spacing:11.965340px;}
.wsda{word-spacing:11.974340px;}
.ws15d{word-spacing:11.983340px;}
.ws192{word-spacing:11.987840px;}
.wsb6{word-spacing:11.990250px;}
.ws10b{word-spacing:11.992340px;}
.wsbc{word-spacing:11.995050px;}
.ws3d{word-spacing:12.009450px;}
.ws97{word-spacing:12.014250px;}
.ws9b{word-spacing:12.019050px;}
.ws193{word-spacing:12.032840px;}
.ws106{word-spacing:12.033450px;}
.wsc3{word-spacing:12.038250px;}
.wsd1{word-spacing:12.043049px;}
.ws162{word-spacing:12.046339px;}
.ws16c{word-spacing:12.073339px;}
.ws1c2{word-spacing:12.082339px;}
.ws6e{word-spacing:12.091049px;}
.ws15c{word-spacing:12.100339px;}
.ws8f{word-spacing:12.110249px;}
.wsb0{word-spacing:12.119849px;}
.wsd0{word-spacing:12.124648px;}
.wsd3{word-spacing:12.129448px;}
.wsd4{word-spacing:12.139048px;}
.ws1c6{word-spacing:12.143848px;}
.wsd8{word-spacing:12.145338px;}
.ws8c{word-spacing:12.148648px;}
.ws1c8{word-spacing:12.153448px;}
.ws93{word-spacing:12.163048px;}
.ws18a{word-spacing:12.163338px;}
.ws5a{word-spacing:12.177448px;}
.ws134{word-spacing:12.182248px;}
.ws1ae{word-spacing:12.185838px;}
.wsa4{word-spacing:12.211047px;}
.wsdc{word-spacing:12.217337px;}
.ws88{word-spacing:12.230247px;}
.wsa9{word-spacing:12.235047px;}
.ws67{word-spacing:12.268647px;}
.ws13a{word-spacing:12.280336px;}
.wseb{word-spacing:12.289336px;}
.ws98{word-spacing:12.292646px;}
.ws1ca{word-spacing:12.295754px;}
.wse1{word-spacing:12.311836px;}
.wsc4{word-spacing:12.316646px;}
.ws151{word-spacing:12.365835px;}
.ws5f{word-spacing:12.393445px;}
.ws75{word-spacing:12.422245px;}
.ws1c9{word-spacing:12.431845px;}
.ws19c{word-spacing:12.442334px;}
.ws133{word-spacing:12.451044px;}
.ws12e{word-spacing:12.460644px;}
.ws1b9{word-spacing:12.478334px;}
.ws1b2{word-spacing:12.500833px;}
.ws128{word-spacing:12.513444px;}
.ws191{word-spacing:12.514333px;}
.ws53{word-spacing:12.537443px;}
.ws1be{word-spacing:12.559333px;}
.ws1c0{word-spacing:12.572832px;}
.ws57{word-spacing:12.585443px;}
.ws19f{word-spacing:12.595332px;}
.ws8e{word-spacing:12.609442px;}
.ws1b1{word-spacing:12.626832px;}
.ws1bf{word-spacing:12.653831px;}
.wsfb{word-spacing:12.676642px;}
.ws19e{word-spacing:12.739330px;}
.ws147{word-spacing:12.743830px;}
.ws3e{word-spacing:12.748641px;}
.ws8a{word-spacing:12.791840px;}
.wsba{word-spacing:12.801440px;}
.wscb{word-spacing:12.907039px;}
.ws148{word-spacing:12.937327px;}
.ws54{word-spacing:12.950238px;}
.ws155{word-spacing:12.959827px;}
.ws68{word-spacing:13.031837px;}
.ws5b{word-spacing:13.046237px;}
.ws66{word-spacing:13.070237px;}
.ws6a{word-spacing:13.099036px;}
.ws4f{word-spacing:13.103836px;}
.ws50{word-spacing:13.113436px;}
.ws112{word-spacing:13.190235px;}
.ws175{word-spacing:13.202824px;}
.ws4c{word-spacing:13.204635px;}
.ws149{word-spacing:13.229824px;}
.ws83{word-spacing:13.267034px;}
.ws120{word-spacing:13.286234px;}
.ws92{word-spacing:13.291034px;}
.ws4d{word-spacing:13.300634px;}
.ws12f{word-spacing:13.305434px;}
.ws15e{word-spacing:13.306323px;}
.wsfe{word-spacing:13.315034px;}
.ws60{word-spacing:13.319833px;}
.ws4e{word-spacing:13.406232px;}
.ws85{word-spacing:13.411032px;}
.ws174{word-spacing:13.450321px;}
.ws51{word-spacing:13.483031px;}
.wsbf{word-spacing:13.531031px;}
.ws78{word-spacing:13.540631px;}
.wsa5{word-spacing:13.588630px;}
.ws16a{word-spacing:13.607819px;}
.ws1ad{word-spacing:13.625818px;}
.ws1ac{word-spacing:13.648318px;}
.ws154{word-spacing:13.657318px;}
.ws86{word-spacing:13.660629px;}
.ws33{word-spacing:13.662405px;}
.ws189{word-spacing:13.675318px;}
.ws7a{word-spacing:13.756628px;}
.ws13f{word-spacing:13.765316px;}
.wsb7{word-spacing:13.819027px;}
.ws6d{word-spacing:13.823827px;}
.ws16b{word-spacing:13.882315px;}
.ws129{word-spacing:13.895826px;}
.ws9d{word-spacing:13.915026px;}
.ws2d{word-spacing:13.948001px;}
.wsf7{word-spacing:13.948626px;}
.ws182{word-spacing:13.954314px;}
.ws16e{word-spacing:13.963314px;}
.ws95{word-spacing:13.972625px;}
.ws13e{word-spacing:13.981314px;}
.ws12b{word-spacing:14.030225px;}
.wsb1{word-spacing:14.150223px;}
.ws1c{word-spacing:14.158800px;}
.wsc9{word-spacing:14.164623px;}
.ws14e{word-spacing:14.170311px;}
.ws9a{word-spacing:14.174223px;}
.ws14d{word-spacing:14.314309px;}
.ws2e{word-spacing:14.346995px;}
.wsb9{word-spacing:14.356621px;}
.ws28{word-spacing:14.364000px;}
.ws74{word-spacing:14.395020px;}
.ws184{word-spacing:14.413308px;}
.ws71{word-spacing:14.433420px;}
.ws185{word-spacing:14.480807px;}
.ws41{word-spacing:14.486219px;}
.ws14f{word-spacing:14.489807px;}
.ws12a{word-spacing:14.491019px;}
.ws109{word-spacing:14.505419px;}
.ws55{word-spacing:14.572618px;}
.wsb2{word-spacing:14.606217px;}
.ws4b{word-spacing:14.611017px;}
.ws11f{word-spacing:14.654217px;}
.wsa0{word-spacing:14.731016px;}
.ws183{word-spacing:14.786803px;}
.ws65{word-spacing:14.803015px;}
.ws1a0{word-spacing:14.831802px;}
.ws63{word-spacing:14.841414px;}
.wsbe{word-spacing:14.851014px;}
.ws4a{word-spacing:14.865414px;}
.ws2b{word-spacing:14.887800px;}
.ws2c{word-spacing:14.925600px;}
.ws169{word-spacing:14.984800px;}
.ws14{word-spacing:14.995800px;}
.wsaf{word-spacing:15.014212px;}
.ws125{word-spacing:15.038212px;}
.ws26{word-spacing:15.039000px;}
.ws124{word-spacing:15.047812px;}
.ws64{word-spacing:15.115011px;}
.ws197{word-spacing:15.119798px;}
.ws7c{word-spacing:15.119811px;}
.ws8b{word-spacing:15.263809px;}
.ws7d{word-spacing:15.273409px;}
.ws1a6{word-spacing:15.277296px;}
.ws1a7{word-spacing:15.295296px;}
.ws123{word-spacing:15.307009px;}
.wsfa{word-spacing:15.331008px;}
.wsf4{word-spacing:15.336153px;}
.ws11e{word-spacing:15.340608px;}
.ws1a8{word-spacing:15.385295px;}
.wsc8{word-spacing:15.417407px;}
.ws7e{word-spacing:15.451007px;}
.wsc7{word-spacing:15.468155px;}
.wsc5{word-spacing:15.474155px;}
.ws102{word-spacing:15.523006px;}
.ws7b{word-spacing:15.527806px;}
.wsbb{word-spacing:15.532606px;}
.wsf5{word-spacing:15.558156px;}
.ws103{word-spacing:15.612156px;}
.ws18d{word-spacing:15.641791px;}
.ws76{word-spacing:15.700604px;}
.wsbd{word-spacing:15.708157px;}
.ws77{word-spacing:15.710204px;}
.ws91{word-spacing:15.772603px;}
.wsf9{word-spacing:15.774158px;}
.ws104{word-spacing:15.777403px;}
.ws5c{word-spacing:15.782203px;}
.ws42{word-spacing:15.811002px;}
.ws167{word-spacing:15.839789px;}
.ws168{word-spacing:15.844289px;}
.ws3f{word-spacing:15.849402px;}
.ws70{word-spacing:15.863802px;}
.ws6f{word-spacing:15.882159px;}
.ws16f{word-spacing:15.907288px;}
.ws101{word-spacing:15.960160px;}
.ws122{word-spacing:15.969400px;}
.ws56{word-spacing:15.983800px;}
.ws166{word-spacing:16.001787px;}
.wsb4{word-spacing:16.036600px;}
.ws172{word-spacing:16.046786px;}
.ws90{word-spacing:16.055799px;}
.ws96{word-spacing:16.070199px;}
.wsca{word-spacing:16.084599px;}
.wsae{word-spacing:16.098999px;}
.ws173{word-spacing:16.100785px;}
.ws140{word-spacing:16.159285px;}
.ws186{word-spacing:16.177284px;}
.ws94{word-spacing:16.247797px;}
.ws11d{word-spacing:16.353396px;}
.ws187{word-spacing:16.370782px;}
.ws141{word-spacing:16.393281px;}
.ws19d{word-spacing:16.420281px;}
.ws170{word-spacing:16.469780px;}
.ws157{word-spacing:16.514780px;}
.ws188{word-spacing:16.519280px;}
.ws115{word-spacing:16.545393px;}
.ws12{word-spacing:16.545600px;}
.ws15a{word-spacing:16.559779px;}
.ws24{word-spacing:16.605000px;}
.ws20{word-spacing:16.680600px;}
.ws19a{word-spacing:16.708277px;}
.wsa7{word-spacing:16.718191px;}
.ws156{word-spacing:16.739777px;}
.ws199{word-spacing:16.825276px;}
.ws107{word-spacing:16.886189px;}
.ws158{word-spacing:17.050273px;}
.ws1b3{word-spacing:17.059273px;}
.ws159{word-spacing:17.063772px;}
.ws40{word-spacing:17.212585px;}
.wsf6{word-spacing:17.217385px;}
.ws10a{word-spacing:17.222185px;}
.ws118{word-spacing:17.250984px;}
.ws59{word-spacing:17.366183px;}
.ws6c{word-spacing:17.390183px;}
.ws8d{word-spacing:17.438182px;}
.ws72{word-spacing:17.495781px;}
.ws99{word-spacing:17.558181px;}
.ws12d{word-spacing:17.562980px;}
.ws3c{word-spacing:17.606180px;}
.ws138{word-spacing:17.729764px;}
.ws11a{word-spacing:17.774178px;}
.ws1f{word-spacing:17.890200px;}
.wsaa{word-spacing:17.894176px;}
.ws105{word-spacing:17.903776px;}
.ws21{word-spacing:17.987400px;}
.ws1b4{word-spacing:17.990760px;}
.ws1b6{word-spacing:18.040259px;}
.ws137{word-spacing:18.071759px;}
.ws58{word-spacing:18.177373px;}
.ws139{word-spacing:18.220257px;}
.ws69{word-spacing:18.234972px;}
.ws1b5{word-spacing:18.319256px;}
.ws11c{word-spacing:18.388570px;}
.wsa2{word-spacing:18.417370px;}
.wsf8{word-spacing:18.422170px;}
.ws1b7{word-spacing:18.445254px;}
.ws12c{word-spacing:18.465369px;}
.ws29{word-spacing:18.484200px;}
.ws121{word-spacing:18.494169px;}
.ws5{word-spacing:18.575845px;}
.ws7{word-spacing:18.662244px;}
.ws114{word-spacing:18.710166px;}
.ws6{word-spacing:18.741444px;}
.ws179{word-spacing:18.755750px;}
.wsad{word-spacing:18.882964px;}
.ws84{word-spacing:19.074962px;}
.ws38{word-spacing:19.156561px;}
.wsb8{word-spacing:19.194960px;}
.ws43{word-spacing:19.214160px;}
.ws25{word-spacing:19.272600px;}
.ws52{word-spacing:19.314959px;}
.wsac{word-spacing:19.396558px;}
.ws2a{word-spacing:19.575000px;}
.ws111{word-spacing:19.593355px;}
.wscd{word-spacing:19.602955px;}
.wsc2{word-spacing:19.607755px;}
.ws1c5{word-spacing:19.646154px;}
.wsc0{word-spacing:19.694154px;}
.wsce{word-spacing:19.833352px;}
.wsc1{word-spacing:19.838152px;}
.wscf{word-spacing:19.934151px;}
.wscc{word-spacing:20.010950px;}
.wsab{word-spacing:20.068549px;}
.wsa6{word-spacing:20.082949px;}
.wsa3{word-spacing:20.116549px;}
.ws119{word-spacing:20.327746px;}
.ws23{word-spacing:20.412000px;}
.ws195{word-spacing:20.686224px;}
.ws194{word-spacing:20.717724px;}
.ws100{word-spacing:20.788540px;}
.ws73{word-spacing:20.793340px;}
.ws39{word-spacing:20.865339px;}
.ws46{word-spacing:20.918139px;}
.ws127{word-spacing:20.966138px;}
.ws1ba{word-spacing:21.073219px;}
.ws47{word-spacing:21.278134px;}
.ws1bc{word-spacing:21.622212px;}
.ws3b{word-spacing:21.633330px;}
.ws1bd{word-spacing:21.734710px;}
.ws1bb{word-spacing:21.995707px;}
.ws150{word-spacing:22.157705px;}
.ws48{word-spacing:22.415720px;}
.wsb3{word-spacing:22.655717px;}
.ws9e{word-spacing:22.838115px;}
.ws49{word-spacing:22.986913px;}
.ws17e{word-spacing:22.994693px;}
.ws180{word-spacing:23.138691px;}
.ws181{word-spacing:23.323189px;}
.ws17f{word-spacing:23.440187px;}
.ws11b{word-spacing:23.894101px;}
.ws117{word-spacing:24.062099px;}
.ws116{word-spacing:24.134098px;}
.ws80{word-spacing:24.143698px;}
.ws81{word-spacing:24.234897px;}
.ws7f{word-spacing:24.306896px;}
.ws82{word-spacing:24.369295px;}
.ws45{word-spacing:25.041287px;}
.wsfd{word-spacing:26.841264px;}
.wsfc{word-spacing:26.922863px;}
.ws1b0{word-spacing:26.927641px;}
.ws1a1{word-spacing:27.026640px;}
.ws1a2{word-spacing:27.130138px;}
.ws1a4{word-spacing:27.220137px;}
.ws1af{word-spacing:27.247137px;}
.ws1a3{word-spacing:27.287636px;}
.ws4{word-spacing:27.853200px;}
.ws13{word-spacing:27.891000px;}
.ws3{word-spacing:27.928800px;}
.ws1b{word-spacing:28.350000px;}
.ws1a{word-spacing:28.490400px;}
.ws16{word-spacing:28.949400px;}
.wsa8{word-spacing:29.303634px;}
.ws15{word-spacing:29.494800px;}
.ws22{word-spacing:29.592000px;}
.ws1d{word-spacing:32.437800px;}
.ws1e{word-spacing:32.594400px;}
.ws11{word-spacing:33.933600px;}
.ws19{word-spacing:33.998400px;}
.wsf{word-spacing:34.365600px;}
.ws10{word-spacing:35.267400px;}
.ws176{word-spacing:35.572026px;}
.ws178{word-spacing:35.662024px;}
.ws27{word-spacing:35.753400px;}
.ws177{word-spacing:35.761023px;}
.ws126{word-spacing:35.802752px;}
.ws17{word-spacing:36.855000px;}
.ws142{word-spacing:43.127425px;}
.ws144{word-spacing:43.392921px;}
.ws143{word-spacing:43.550419px;}
.ws18{word-spacing:45.154800px;}
.ws17b{word-spacing:48.329356px;}
.ws17c{word-spacing:48.495853px;}
.ws17a{word-spacing:48.702851px;}
.ws17d{word-spacing:48.833349px;}
.ws5e{word-spacing:70.968710px;}
.wsc6{word-spacing:72.234722px;}
.wsed{word-spacing:91.114785px;}
.wsf1{word-spacing:91.353282px;}
.ws34{word-spacing:162.214283px;}
.ws10c{word-spacing:175.925154px;}
.ws10e{word-spacing:175.938654px;}
.wsd7{word-spacing:392.597265px;}
.wsec{word-spacing:398.042193px;}
.wsde{word-spacing:425.730324px;}
.ws110{word-spacing:2041.506835px;}
._1c{margin-left:-26.693644px;}
._68{margin-left:-12.275836px;}
._65{margin-left:-11.168851px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._5{width:1.641600px;}
._0{width:5.587200px;}
._12{width:9.585705px;}
._15{width:11.089083px;}
._7{width:12.137827px;}
._13{width:13.329417px;}
._c{width:14.817600px;}
._11{width:15.826947px;}
._10{width:17.077006px;}
._a{width:18.414000px;}
._f{width:20.370945px;}
._b{width:21.645600px;}
._63{width:22.852489px;}
._16{width:23.889326px;}
._62{width:25.252484px;}
._17{width:28.295646px;}
._4{width:29.462400px;}
._66{width:36.944507px;}
._8{width:38.048400px;}
._14{width:42.493869px;}
._64{width:44.355909px;}
._9{width:46.353600px;}
._67{width:49.679338px;}
._18{width:54.296921px;}
._6{width:72.100199px;}
._d{width:88.085342px;}
._3d{width:91.389281px;}
._1f{width:92.748263px;}
._39{width:94.179244px;}
._2d{width:103.516620px;}
._3f{width:110.878522px;}
._36{width:117.236937px;}
._25{width:118.609419px;}
._49{width:121.543379px;}
._52{width:135.815958px;}
._35{width:153.447954px;}
._51{width:161.615345px;}
._37{width:164.949801px;}
._5d{width:176.195151px;}
._26{width:180.848089px;}
._53{width:182.660712px;}
._4d{width:189.928968px;}
._56{width:191.368948px;}
._43{width:198.874848px;}
._61{width:202.290303px;}
._42{width:204.783270px;}
._48{width:205.998253px;}
._55{width:207.433734px;}
._24{width:217.594599px;}
._2f{width:222.504033px;}
._32{width:229.573439px;}
._4b{width:230.608425px;}
._4f{width:237.970327px;}
._28{width:243.334255px;}
._33{width:247.438201px;}
._5c{width:252.595132px;}
._50{width:255.601092px;}
._2b{width:273.204857px;}
._34{width:277.182804px;}
._3a{width:284.517706px;}
._2e{width:294.011349px;}
._4a{width:301.932474px;}
._30{width:315.967787px;}
._4c{width:324.256677px;}
._59{width:336.519013px;}
._57{width:342.661431px;}
._31{width:347.629365px;}
._4e{width:356.467247px;}
._5e{width:362.843662px;}
._1a{width:365.980120px;}
._3c{width:371.425048px;}
._1b{width:382.521900px;}
._2c{width:388.128825px;}
._1e{width:396.044219px;}
._3e{width:409.287543px;}
._22{width:418.971414px;}
._23{width:422.368868px;}
._41{width:424.411841px;}
._20{width:428.380788px;}
._1d{width:430.063766px;}
._47{width:435.076699px;}
._19{width:436.206184px;}
._3b{width:442.330602px;}
._45{width:449.809502px;}
._21{width:456.158918px;}
._40{width:462.620832px;}
._2a{width:472.439701px;}
._5a{width:482.785063px;}
._38{width:489.314476px;}
._27{width:493.049426px;}
._54{width:496.929605px;}
._44{width:501.212317px;}
._29{width:502.409301px;}
._5f{width:509.109712px;}
._46{width:510.572192px;}
._58{width:638.626985px;}
._5b{width:652.185304px;}
._60{width:678.509953px;}
._e{width:908.657596px;}
.fc3{color:rgb(35,80,162);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.996600px;}
.fsb{font-size:29.398200px;}
.fse{font-size:29.995200px;}
.fsc{font-size:31.995000px;}
.fs8{font-size:41.999400px;}
.fsd{font-size:44.999400px;}
.fs6{font-size:47.994600px;}
.fsa{font-size:47.999400px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:60.000600px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:71.999400px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y45{bottom:21.770154px;}
.y44{bottom:48.047079px;}
.ycd{bottom:62.844150px;}
.y8b{bottom:62.844207px;}
.y6c{bottom:62.844544px;}
.y100{bottom:62.844619px;}
.ye4{bottom:62.845641px;}
.y11f{bottom:62.869463px;}
.y43{bottom:63.013565px;}
.ye5{bottom:67.011000px;}
.ycc{bottom:72.627263px;}
.ycf{bottom:73.389000px;}
.yd6{bottom:73.390125px;}
.yde{bottom:73.391250px;}
.y42{bottom:78.066150px;}
.y8a{bottom:79.426800px;}
.y6b{bottom:82.403100px;}
.yff{bottom:82.403175px;}
.yb3{bottom:82.423762px;}
.y11e{bottom:82.428019px;}
.y104{bottom:84.615225px;}
.ycb{bottom:92.100619px;}
.y186{bottom:94.316550px;}
.y14e{bottom:99.669119px;}
.y13{bottom:99.795000px;}
.yfe{bottom:101.877731px;}
.yb2{bottom:101.897118px;}
.y11d{bottom:101.901375px;}
.y185{bottom:110.048340px;}
.yca{bottom:111.659175px;}
.y17{bottom:113.670000px;}
.y14d{bottom:115.400910px;}
.y3f{bottom:118.712100px;}
.y6a{bottom:121.350810px;}
.yfd{bottom:121.352288px;}
.yb1{bottom:121.371675px;}
.y11c{bottom:121.375932px;}
.y184{bottom:125.780130px;}
.yc9{bottom:131.132531px;}
.y14c{bottom:131.132700px;}
.y16{bottom:135.750000px;}
.yfc{bottom:140.910843px;}
.yb0{bottom:140.930230px;}
.y11b{bottom:140.934487px;}
.y3e{bottom:141.247650px;}
.y183{bottom:141.597419px;}
.yd7{bottom:142.697076px;}
.y14b{bottom:146.864490px;}
.yc8{bottom:150.605888px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y182{bottom:157.329210px;}
.y15{bottom:157.830000px;}
.y69{bottom:160.384200px;}
.yaf{bottom:160.403587px;}
.y11a{bottom:160.407844px;}
.y14a{bottom:162.596280px;}
.y3d{bottom:163.783200px;}
.yc7{bottom:170.164443px;}
.y181{bottom:173.061000px;}
.y149{bottom:178.413570px;}
.yae{bottom:179.876944px;}
.y119{bottom:179.881201px;}
.y3c{bottom:186.233700px;}
.y180{bottom:188.792790px;}
.yc6{bottom:189.637800px;}
.y148{bottom:194.145360px;}
.yfb{bottom:199.417200px;}
.yad{bottom:199.435499px;}
.y118{bottom:199.439756px;}
.y17f{bottom:204.524580px;}
.y3b{bottom:208.769250px;}
.y147{bottom:209.877150px;}
.y68{bottom:218.908312px;}
.yac{bottom:218.908856px;}
.y117{bottom:218.913113px;}
.y17e{bottom:220.341869px;}
.yce{bottom:220.762200px;}
.y146{bottom:225.622380px;}
.yc5{bottom:228.670620px;}
.y3a{bottom:231.219750px;}
.y17d{bottom:236.073660px;}
.y67{bottom:238.381669px;}
.yab{bottom:238.382212px;}
.y116{bottom:238.386469px;}
.y145{bottom:241.354170px;}
.y17c{bottom:251.805450px;}
.y39{bottom:253.755300px;}
.y102{bottom:256.309311px;}
.y144{bottom:257.171459px;}
.yfa{bottom:257.926330px;}
.y66{bottom:257.940224px;}
.yaa{bottom:257.940768px;}
.y115{bottom:257.945025px;}
.y17b{bottom:267.537240px;}
.yc4{bottom:267.618510px;}
.y143{bottom:272.903250px;}
.y38{bottom:276.205800px;}
.yf9{bottom:277.399687px;}
.y65{bottom:277.413581px;}
.ya9{bottom:277.414124px;}
.y114{bottom:277.418381px;}
.y17a{bottom:283.269030px;}
.y142{bottom:288.635040px;}
.yd8{bottom:292.196333px;}
.yf8{bottom:296.873043px;}
.y64{bottom:296.886937px;}
.ya8{bottom:296.887481px;}
.y113{bottom:296.891738px;}
.y37{bottom:298.741350px;}
.y179{bottom:299.086319px;}
.y141{bottom:304.366830px;}
.yc3{bottom:306.651900px;}
.y178{bottom:314.818110px;}
.yf7{bottom:316.346400px;}
.y63{bottom:316.360294px;}
.ya7{bottom:316.360837px;}
.y112{bottom:316.365095px;}
.y140{bottom:320.184119px;}
.y36{bottom:321.276900px;}
.y177{bottom:330.549900px;}
.yd0{bottom:334.629642px;}
.yd5{bottom:334.630767px;}
.y13f{bottom:335.915909px;}
.y62{bottom:335.918850px;}
.ya6{bottom:335.919393px;}
.y111{bottom:335.923650px;}
.ye0{bottom:340.837309px;}
.yd9{bottom:340.838434px;}
.ydd{bottom:340.839559px;}
.y35{bottom:343.727400px;}
.ya{bottom:344.680500px;}
.y176{bottom:346.281690px;}
.y13e{bottom:351.647700px;}
.yf6{bottom:355.379400px;}
.y61{bottom:355.392206px;}
.ya5{bottom:355.392750px;}
.y110{bottom:355.397007px;}
.y175{bottom:362.013480px;}
.y34{bottom:366.262950px;}
.y13d{bottom:367.379490px;}
.yc2{bottom:374.857013px;}
.y89{bottom:374.858869px;}
.y60{bottom:374.865563px;}
.ya4{bottom:374.866106px;}
.y10f{bottom:374.870363px;}
.y174{bottom:377.830770px;}
.y13c{bottom:383.111280px;}
.yd{bottom:386.490000px;}
.y33{bottom:388.713450px;}
.y173{bottom:393.562560px;}
.yc1{bottom:394.415568px;}
.y88{bottom:394.417424px;}
.y5f{bottom:394.424118px;}
.ya3{bottom:394.424662px;}
.y10e{bottom:394.428919px;}
.y9{bottom:395.689500px;}
.y13b{bottom:398.928569px;}
.y172{bottom:409.308300px;}
.y32{bottom:411.249000px;}
.yf5{bottom:413.887688px;}
.yc0{bottom:413.888925px;}
.y87{bottom:413.890781px;}
.y5e{bottom:413.897475px;}
.ya2{bottom:413.898018px;}
.y10d{bottom:413.902275px;}
.y13a{bottom:414.660360px;}
.y171{bottom:425.040090px;}
.y139{bottom:430.392150px;}
.yf4{bottom:433.361044px;}
.ybf{bottom:433.362281px;}
.y86{bottom:433.364137px;}
.y5d{bottom:433.370831px;}
.ya1{bottom:433.371375px;}
.y10c{bottom:433.375632px;}
.y31{bottom:433.784550px;}
.yb{bottom:434.850000px;}
.y170{bottom:440.857379px;}
.y138{bottom:446.123940px;}
.y8{bottom:446.698500px;}
.yf3{bottom:452.919600px;}
.ybe{bottom:452.920837px;}
.y85{bottom:452.922693px;}
.y5c{bottom:452.929387px;}
.ya0{bottom:452.929930px;}
.y10b{bottom:452.934187px;}
.y30{bottom:456.235050px;}
.y16f{bottom:456.589169px;}
.y137{bottom:461.855730px;}
.yd2{bottom:470.607704px;}
.y16e{bottom:472.320959px;}
.ybd{bottom:472.394193px;}
.y84{bottom:472.396050px;}
.y5b{bottom:472.402743px;}
.y9f{bottom:472.403287px;}
.y10a{bottom:472.407544px;}
.y136{bottom:477.673019px;}
.y2f{bottom:478.770600px;}
.y16d{bottom:488.052750px;}
.y10{bottom:488.055000px;}
.ybc{bottom:491.867550px;}
.y83{bottom:491.869406px;}
.y5a{bottom:491.876100px;}
.y9e{bottom:491.876643px;}
.y109{bottom:491.880901px;}
.y135{bottom:493.404810px;}
.y7{bottom:497.707500px;}
.y2e{bottom:501.221100px;}
.y16c{bottom:503.784540px;}
.y134{bottom:509.136600px;}
.y82{bottom:511.427962px;}
.y59{bottom:511.434656px;}
.y9d{bottom:511.435199px;}
.y108{bottom:511.439456px;}
.y16b{bottom:519.601829px;}
.y2d{bottom:523.756650px;}
.y133{bottom:524.868390px;}
.ybb{bottom:530.900700px;}
.y81{bottom:530.901318px;}
.y58{bottom:530.908012px;}
.y9c{bottom:530.908556px;}
.y107{bottom:530.912813px;}
.y16a{bottom:535.333619px;}
.y11{bottom:538.230000px;}
.y132{bottom:540.600180px;}
.y2c{bottom:546.207150px;}
.y6{bottom:548.716500px;}
.y80{bottom:550.375875px;}
.y57{bottom:550.381369px;}
.y9b{bottom:550.381912px;}
.y106{bottom:550.386169px;}
.y169{bottom:551.065409px;}
.y131{bottom:556.417469px;}
.y168{bottom:566.797200px;}
.y2b{bottom:568.742700px;}
.y7f{bottom:569.850431px;}
.y56{bottom:569.855925px;}
.y9a{bottom:569.856469px;}
.y105{bottom:569.860726px;}
.y130{bottom:572.149260px;}
.y167{bottom:582.528990px;}
.y12f{bottom:587.881050px;}
.y7e{bottom:589.408987px;}
.y55{bottom:589.414481px;}
.y99{bottom:589.415024px;}
.yba{bottom:589.419281px;}
.y18{bottom:589.605000px;}
.y2a{bottom:591.278250px;}
.yd3{bottom:597.231515px;}
.y166{bottom:598.346279px;}
.y5{bottom:599.725500px;}
.y12e{bottom:603.612840px;}
.ye2{bottom:606.330394px;}
.ydb{bottom:606.331519px;}
.y7d{bottom:608.882343px;}
.y54{bottom:608.887837px;}
.y98{bottom:608.888381px;}
.yb9{bottom:608.892638px;}
.y29{bottom:613.728750px;}
.y165{bottom:614.078069px;}
.y12d{bottom:619.344630px;}
.y7c{bottom:628.355700px;}
.yf1{bottom:628.357631px;}
.y53{bottom:628.361194px;}
.y97{bottom:628.361737px;}
.yb8{bottom:628.365995px;}
.y164{bottom:629.809860px;}
.ye{bottom:631.920000px;}
.yf2{bottom:633.713250px;}
.y12c{bottom:635.161919px;}
.y28{bottom:636.264300px;}
.y25{bottom:642.218272px;}
.y163{bottom:645.541650px;}
.yf0{bottom:647.916187px;}
.y52{bottom:647.919749px;}
.y96{bottom:647.920293px;}
.yb7{bottom:647.924550px;}
.y12b{bottom:650.893710px;}
.y27{bottom:658.714800px;}
.y24{bottom:658.715636px;}
.y162{bottom:661.273440px;}
.y12a{bottom:666.625500px;}
.y7b{bottom:667.388850px;}
.yef{bottom:667.389543px;}
.y51{bottom:667.393106px;}
.y95{bottom:667.393649px;}
.yb6{bottom:667.397907px;}
.y23{bottom:675.213001px;}
.y161{bottom:677.090729px;}
.y26{bottom:681.250200px;}
.y129{bottom:682.357290px;}
.yee{bottom:686.862900px;}
.y50{bottom:686.866463px;}
.y94{bottom:686.867006px;}
.yb5{bottom:686.871263px;}
.y18c{bottom:689.499000px;}
.y22{bottom:691.710365px;}
.y160{bottom:692.822519px;}
.y128{bottom:698.174579px;}
.y4f{bottom:706.425018px;}
.y93{bottom:706.425562px;}
.yb4{bottom:706.429819px;}
.y15f{bottom:708.554310px;}
.y18b{bottom:708.975004px;}
.y127{bottom:713.906370px;}
.y15e{bottom:724.286100px;}
.yd4{bottom:724.705816px;}
.yed{bottom:725.895900px;}
.y4e{bottom:725.898375px;}
.y92{bottom:725.898918px;}
.y7a{bottom:725.903175px;}
.y21{bottom:727.766850px;}
.y18a{bottom:728.533560px;}
.y126{bottom:729.638160px;}
.y20{bottom:732.444000px;}
.ye3{bottom:737.121150px;}
.ydc{bottom:737.122275px;}
.y15d{bottom:740.103389px;}
.y125{bottom:745.369950px;}
.y4d{bottom:745.371731px;}
.y91{bottom:745.372275px;}
.y79{bottom:745.376532px;}
.y1f{bottom:748.771500px;}
.y1e{bottom:753.448650px;}
.y15c{bottom:755.835179px;}
.y124{bottom:764.843850px;}
.y4c{bottom:764.845088px;}
.y90{bottom:764.845631px;}
.y78{bottom:764.849888px;}
.y15b{bottom:771.566969px;}
.y4{bottom:778.225500px;}
.y189{bottom:778.281338px;}
.y1c{bottom:778.790400px;}
.y4b{bottom:784.403643px;}
.y8f{bottom:784.404187px;}
.yec{bottom:784.406118px;}
.y77{bottom:784.408444px;}
.y1d{bottom:786.784050px;}
.y15a{bottom:787.298760px;}
.y188{bottom:797.839893px;}
.yd1{bottom:800.985424px;}
.y159{bottom:803.030550px;}
.y4a{bottom:803.877000px;}
.y8e{bottom:803.877543px;}
.yeb{bottom:803.879475px;}
.y76{bottom:803.881801px;}
.ye1{bottom:810.339674px;}
.yda{bottom:810.340799px;}
.y12{bottom:815.670000px;}
.y187{bottom:817.313250px;}
.y158{bottom:818.847839px;}
.y8d{bottom:823.350900px;}
.y123{bottom:823.352757px;}
.yea{bottom:823.352831px;}
.y75{bottom:823.355157px;}
.y157{bottom:834.579629px;}
.y1b{bottom:837.213450px;}
.y49{bottom:842.910150px;}
.y122{bottom:842.911313px;}
.ye9{bottom:842.911387px;}
.y74{bottom:842.913713px;}
.y156{bottom:850.311419px;}
.y8c{bottom:862.384050px;}
.ye8{bottom:862.384743px;}
.y73{bottom:862.387069px;}
.y155{bottom:866.043210px;}
.y1a{bottom:871.738350px;}
.y101{bottom:877.266000px;}
.y154{bottom:881.775000px;}
.ye7{bottom:881.858100px;}
.y121{bottom:881.859226px;}
.y72{bottom:881.860426px;}
.y153{bottom:897.592289px;}
.y120{bottom:901.417781px;}
.y71{bottom:901.418981px;}
.y3{bottom:905.716500px;}
.y103{bottom:907.370755px;}
.y48{bottom:910.686993px;}
.ydf{bottom:911.536800px;}
.y152{bottom:913.324079px;}
.ye6{bottom:920.890860px;}
.y70{bottom:920.892338px;}
.y151{bottom:929.055870px;}
.y47{bottom:930.160350px;}
.y6f{bottom:940.365694px;}
.y19{bottom:942.235950px;}
.y150{bottom:944.787660px;}
.y46{bottom:951.165150px;}
.y6e{bottom:959.924250px;}
.y14f{bottom:960.519450px;}
.y2{bottom:964.228500px;}
.y41{bottom:982.969511px;}
.y1{bottom:989.716500px;}
.y40{bottom:1004.739900px;}
.y6d{bottom:1007.716350px;}
.hf{height:21.697365px;}
.h19{height:23.246280px;}
.h16{height:24.796125px;}
.h11{height:32.465536px;}
.h10{height:32.549535px;}
.h4{height:33.000000px;}
.h17{height:34.784536px;}
.h18{height:34.874535px;}
.he{height:37.099826px;}
.h1a{height:37.103536px;}
.h1b{height:37.192106px;}
.h14{height:37.199535px;}
.hb{height:39.744000px;}
.h13{height:41.850000px;}
.h12{height:46.380464px;}
.h15{height:46.500465px;}
.hd{height:55.655536px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hc{height:83.484000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1045.984500px;}
.ha{height:1046.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wa{width:726.750000px;}
.w9{width:727.086000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xa{left:60.803100px;}
.x10{left:65.310150px;}
.x2c{left:69.817350px;}
.x6a{left:80.276590px;}
.x12{left:83.338818px;}
.x13{left:84.784200px;}
.x15{left:96.009450px;}
.x14{left:101.281594px;}
.x2e{left:123.051850px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x2f{left:138.783640px;}
.x59{left:144.822000px;}
.x17{left:154.517126px;}
.x2d{left:164.296050px;}
.x18{left:170.334415px;}
.xb{left:172.119600px;}
.x5{left:174.105000px;}
.x30{left:186.405380px;}
.x2{left:191.040000px;}
.x16{left:195.845700px;}
.x5b{left:198.057115px;}
.x7{left:200.715000px;}
.x31{left:202.137170px;}
.x46{left:207.411100px;}
.xc{left:214.129050px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x5a{left:223.568400px;}
.x47{left:228.415695px;}
.x19{left:238.960750px;}
.x32{left:244.147485px;}
.x5c{left:245.678855px;}
.x48{left:249.420290px;}
.x1a{left:259.965345px;}
.x33{left:265.152080px;}
.x5d{left:266.683450px;}
.x49{left:270.424885px;}
.x1b{left:280.969940px;}
.x34{left:286.156675px;}
.x5e{left:287.688045px;}
.x4a{left:291.429480px;}
.x1c{left:301.890161px;}
.x11{left:304.525950px;}
.x35{left:307.161270px;}
.x5f{left:308.692640px;}
.x4b{left:312.434075px;}
.x1d{left:322.894756px;}
.x36{left:328.165865px;}
.x60{left:329.697235px;}
.x4c{left:333.438670px;}
.x1e{left:343.899351px;}
.x38{left:350.276320px;}
.x4d{left:354.443265px;}
.xd{left:356.399850px;}
.x1f{left:364.903946px;}
.x61{left:371.706425px;}
.x4e{left:375.447860px;}
.x3a{left:377.319835px;}
.xe{left:382.081800px;}
.x20{left:385.908541px;}
.x39{left:393.051625px;}
.x4f{left:396.452455px;}
.x21{left:406.913136px;}
.x62{left:413.715615px;}
.x50{left:417.457049px;}
.x37{left:418.562910px;}
.x22{left:427.917731px;}
.x63{left:434.720210px;}
.x51{left:438.461644px;}
.x3b{left:440.673365px;}
.x23{left:448.922326px;}
.x64{left:455.640431px;}
.x52{left:459.466239px;}
.x3c{left:461.677960px;}
.x24{left:469.926921px;}
.x65{left:476.645026px;}
.x53{left:480.470834px;}
.x3d{left:482.682555px;}
.x25{left:490.931515px;}
.x66{left:497.649621px;}
.x3e{left:503.687150px;}
.x54{left:506.322990px;}
.x26{left:511.936110px;}
.x55{left:517.039200px;}
.xf{left:519.590400px;}
.x56{left:522.056550px;}
.x3f{left:524.691745px;}
.x27{left:532.940705px;}
.x57{left:538.979400px;}
.x58{left:544.081800px;}
.x40{left:545.696340px;}
.x28{left:553.945300px;}
.x67{left:560.663405px;}
.x41{left:566.700935px;}
.x29{left:574.949895px;}
.x68{left:581.584050px;}
.x69{left:586.516350px;}
.x42{left:587.705529px;}
.x2a{left:595.954490px;}
.x43{left:608.710124px;}
.x2b{left:616.959085px;}
.x44{left:629.714719px;}
.x45{left:654.037650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.550400pt;}
.ls10{letter-spacing:-1.468800pt;}
.ls11{letter-spacing:-1.449600pt;}
.ls7{letter-spacing:-1.329600pt;}
.ls6{letter-spacing:-1.176000pt;}
.ls1c{letter-spacing:-1.169052pt;}
.ls18{letter-spacing:-1.156252pt;}
.ls4{letter-spacing:-1.152000pt;}
.ls1e{letter-spacing:-1.151986pt;}
.ls20{letter-spacing:-1.143452pt;}
.ls22{letter-spacing:-1.139186pt;}
.ls1f{letter-spacing:-1.134919pt;}
.ls1b{letter-spacing:-1.130653pt;}
.ls21{letter-spacing:-1.126386pt;}
.ls1a{letter-spacing:-1.122119pt;}
.ls19{letter-spacing:-1.117853pt;}
.ls5{letter-spacing:-1.113600pt;}
.ls1d{letter-spacing:-1.109319pt;}
.ls9{letter-spacing:-0.897600pt;}
.ls8{letter-spacing:-0.782400pt;}
.lse{letter-spacing:-0.758400pt;}
.lsd{letter-spacing:-0.739200pt;}
.lsa{letter-spacing:-0.729600pt;}
.lsb{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.696000pt;}
.ls38{letter-spacing:-0.004267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.012800pt;}
.ls4d{letter-spacing:0.039999pt;}
.ls3b{letter-spacing:0.063999pt;}
.ls2a{letter-spacing:0.085332pt;}
.ls36{letter-spacing:0.099999pt;}
.ls4e{letter-spacing:0.107999pt;}
.ls3{letter-spacing:0.111998pt;}
.ls51{letter-spacing:0.122922pt;}
.ls35{letter-spacing:0.131998pt;}
.ls25{letter-spacing:0.196264pt;}
.ls47{letter-spacing:4.117282pt;}
.ls3f{letter-spacing:4.130082pt;}
.ls46{letter-spacing:4.202614pt;}
.ls56{letter-spacing:4.211147pt;}
.ls40{letter-spacing:4.223947pt;}
.ls23{letter-spacing:5.376054pt;}
.ls34{letter-spacing:5.381387pt;}
.ls15{letter-spacing:5.493388pt;}
.ls37{letter-spacing:6.178056pt;}
.ls29{letter-spacing:6.212189pt;}
.ls12{letter-spacing:7.627091pt;}
.ls52{letter-spacing:9.423874pt;}
.ls55{letter-spacing:9.723870pt;}
.ls1{letter-spacing:10.080000pt;}
.ls42{letter-spacing:10.327862pt;}
.ls4c{letter-spacing:10.631858pt;}
.ls2b{letter-spacing:11.071862pt;}
.ls2e{letter-spacing:11.127328pt;}
.ls45{letter-spacing:11.539846pt;}
.ls2c{letter-spacing:11.677721pt;}
.ls33{letter-spacing:11.980650pt;}
.ls43{letter-spacing:12.331836pt;}
.ls50{letter-spacing:13.655818pt;}
.ls26{letter-spacing:13.802494pt;}
.ls24{letter-spacing:14.105424pt;}
.ls4a{letter-spacing:14.563806pt;}
.ls53{letter-spacing:16.071786pt;}
.ls41{letter-spacing:16.075786pt;}
.ls32{letter-spacing:17.723512pt;}
.ls2d{letter-spacing:17.851510pt;}
.ls31{letter-spacing:18.026441pt;}
.ls4b{letter-spacing:18.491753pt;}
.ls54{letter-spacing:18.795749pt;}
.ls49{letter-spacing:20.911721pt;}
.ls27{letter-spacing:21.964525pt;}
.ls3c{letter-spacing:24.076499pt;}
.ls4f{letter-spacing:24.235677pt;}
.ls2{letter-spacing:25.276800pt;}
.ls44{letter-spacing:38.447487pt;}
.ls48{letter-spacing:43.287423pt;}
.ls14{letter-spacing:62.256623pt;}
.ls13{letter-spacing:62.619293pt;}
.ls16{letter-spacing:62.864629pt;}
.ls2f{letter-spacing:64.069974pt;}
.ls3a{letter-spacing:161.221850pt;}
.ls39{letter-spacing:162.433834pt;}
.ls3d{letter-spacing:190.549459pt;}
.ls3e{letter-spacing:1814.702609pt;}
.ls17{letter-spacing:1836.064437pt;}
.ls28{letter-spacing:1836.168969pt;}
.wsd6{word-spacing:-162.473834pt;}
.wsea{word-spacing:-161.261850pt;}
.ws0{word-spacing:-16.874667pt;}
.ws19b{word-spacing:-10.671858pt;}
.ws16d{word-spacing:-10.367862pt;}
.ws1aa{word-spacing:-9.763870pt;}
.ws35{word-spacing:-7.664424pt;}
.ws37{word-spacing:-5.546722pt;}
.ws135{word-spacing:-4.159948pt;}
.wse{word-spacing:-0.053334pt;}
.ws79{word-spacing:-0.042666pt;}
.wse0{word-spacing:-0.039999pt;}
.wsa{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:2.304000pt;}
.ws87{word-spacing:4.855406pt;}
.wsd2{word-spacing:4.923672pt;}
.ws132{word-spacing:6.621784pt;}
.ws1c4{word-spacing:6.860714pt;}
.ws130{word-spacing:6.911914pt;}
.ws1a9{word-spacing:8.623885pt;}
.ws1ab{word-spacing:8.739883pt;}
.ws31{word-spacing:9.542264pt;}
.ws2f{word-spacing:9.568397pt;}
.wsc{word-spacing:9.590796pt;}
.ws32{word-spacing:9.620663pt;}
.ws9{word-spacing:9.661729pt;}
.ws62{word-spacing:9.702713pt;}
.ws8{word-spacing:9.717728pt;}
.wsb{word-spacing:9.747594pt;}
.ws30{word-spacing:9.792393pt;}
.ws44{word-spacing:9.821744pt;}
.ws61{word-spacing:9.838545pt;}
.ws89{word-spacing:9.847210pt;}
.wsd{word-spacing:9.971591pt;}
.ws18e{word-spacing:9.987867pt;}
.ws18f{word-spacing:10.015866pt;}
.ws164{word-spacing:10.151865pt;}
.ws1b8{word-spacing:10.171864pt;}
.wsf2{word-spacing:10.187864pt;}
.ws1a5{word-spacing:10.207864pt;}
.ws15b{word-spacing:10.211864pt;}
.ws14b{word-spacing:10.227864pt;}
.ws152{word-spacing:10.231864pt;}
.ws18b{word-spacing:10.247863pt;}
.ws160{word-spacing:10.255863pt;}
.ws165{word-spacing:10.259863pt;}
.ws161{word-spacing:10.263863pt;}
.ws14a{word-spacing:10.287863pt;}
.ws14c{word-spacing:10.291863pt;}
.ws3a{word-spacing:10.295338pt;}
.wse7{word-spacing:10.303863pt;}
.wse3{word-spacing:10.307863pt;}
.wsf0{word-spacing:10.315862pt;}
.wse8{word-spacing:10.319862pt;}
.wsee{word-spacing:10.323862pt;}
.wsef{word-spacing:10.331862pt;}
.ws10f{word-spacing:10.335862pt;}
.wsd5{word-spacing:10.339862pt;}
.wse9{word-spacing:10.343862pt;}
.wsf3{word-spacing:10.347862pt;}
.ws153{word-spacing:10.351862pt;}
.ws9f{word-spacing:10.359337pt;}
.ws146{word-spacing:10.375862pt;}
.ws1c1{word-spacing:10.391861pt;}
.ws198{word-spacing:10.407861pt;}
.ws1c3{word-spacing:10.415861pt;}
.wse5{word-spacing:10.419861pt;}
.ws10d{word-spacing:10.423861pt;}
.wsd9{word-spacing:10.431861pt;}
.ws9c{word-spacing:10.431870pt;}
.wse6{word-spacing:10.439861pt;}
.wse2{word-spacing:10.443861pt;}
.ws196{word-spacing:10.447861pt;}
.ws13d{word-spacing:10.451861pt;}
.wse4{word-spacing:10.459861pt;}
.wsb5{word-spacing:10.461736pt;}
.ws131{word-spacing:10.466003pt;}
.wsdb{word-spacing:10.487860pt;}
.wsdd{word-spacing:10.495860pt;}
.ws13b{word-spacing:10.511860pt;}
.ws6b{word-spacing:10.512935pt;}
.ws1c7{word-spacing:10.517202pt;}
.ws136{word-spacing:10.519860pt;}
.ws15f{word-spacing:10.527860pt;}
.ws163{word-spacing:10.543859pt;}
.ws190{word-spacing:10.547859pt;}
.ws145{word-spacing:10.551859pt;}
.wsff{word-spacing:10.568401pt;}
.wsa1{word-spacing:10.572668pt;}
.ws5d{word-spacing:10.585468pt;}
.ws113{word-spacing:10.589734pt;}
.ws13c{word-spacing:10.591859pt;}
.ws171{word-spacing:10.595859pt;}
.ws108{word-spacing:10.602534pt;}
.ws36{word-spacing:10.611067pt;}
.ws18c{word-spacing:10.619858pt;}
.wsdf{word-spacing:10.635858pt;}
.wsda{word-spacing:10.643858pt;}
.ws15d{word-spacing:10.651858pt;}
.ws192{word-spacing:10.655858pt;}
.wsb6{word-spacing:10.658000pt;}
.ws10b{word-spacing:10.659858pt;}
.wsbc{word-spacing:10.662267pt;}
.ws3d{word-spacing:10.675067pt;}
.ws97{word-spacing:10.679333pt;}
.ws9b{word-spacing:10.683600pt;}
.ws193{word-spacing:10.695857pt;}
.ws106{word-spacing:10.696400pt;}
.wsc3{word-spacing:10.700666pt;}
.wsd1{word-spacing:10.704933pt;}
.ws162{word-spacing:10.707857pt;}
.ws16c{word-spacing:10.731857pt;}
.ws1c2{word-spacing:10.739857pt;}
.ws6e{word-spacing:10.747599pt;}
.ws15c{word-spacing:10.755857pt;}
.ws8f{word-spacing:10.764665pt;}
.wsb0{word-spacing:10.773199pt;}
.wsd0{word-spacing:10.777465pt;}
.wsd3{word-spacing:10.781732pt;}
.wsd4{word-spacing:10.790265pt;}
.ws1c6{word-spacing:10.794532pt;}
.wsd8{word-spacing:10.795856pt;}
.ws8c{word-spacing:10.798798pt;}
.ws1c8{word-spacing:10.803065pt;}
.ws93{word-spacing:10.811598pt;}
.ws18a{word-spacing:10.811856pt;}
.ws5a{word-spacing:10.824398pt;}
.ws134{word-spacing:10.828665pt;}
.ws1ae{word-spacing:10.831856pt;}
.wsa4{word-spacing:10.854264pt;}
.wsdc{word-spacing:10.859855pt;}
.ws88{word-spacing:10.871331pt;}
.wsa9{word-spacing:10.875597pt;}
.ws67{word-spacing:10.905464pt;}
.ws13a{word-spacing:10.915854pt;}
.wseb{word-spacing:10.923854pt;}
.ws98{word-spacing:10.926797pt;}
.ws1ca{word-spacing:10.929559pt;}
.wse1{word-spacing:10.943854pt;}
.wsc4{word-spacing:10.948130pt;}
.ws151{word-spacing:10.991853pt;}
.ws5f{word-spacing:11.016396pt;}
.ws75{word-spacing:11.041995pt;}
.ws1c9{word-spacing:11.050529pt;}
.ws19c{word-spacing:11.059853pt;}
.ws133{word-spacing:11.067595pt;}
.ws12e{word-spacing:11.076128pt;}
.ws1b9{word-spacing:11.091852pt;}
.ws1b2{word-spacing:11.111852pt;}
.ws128{word-spacing:11.123061pt;}
.ws191{word-spacing:11.123852pt;}
.ws53{word-spacing:11.144394pt;}
.ws1be{word-spacing:11.163851pt;}
.ws1c0{word-spacing:11.175851pt;}
.ws57{word-spacing:11.187060pt;}
.ws19f{word-spacing:11.195851pt;}
.ws8e{word-spacing:11.208393pt;}
.ws1b1{word-spacing:11.223850pt;}
.ws1bf{word-spacing:11.247850pt;}
.wsfb{word-spacing:11.268126pt;}
.ws19e{word-spacing:11.323849pt;}
.ws147{word-spacing:11.327849pt;}
.ws3e{word-spacing:11.332125pt;}
.ws8a{word-spacing:11.370525pt;}
.wsba{word-spacing:11.379058pt;}
.wscb{word-spacing:11.472923pt;}
.ws148{word-spacing:11.499847pt;}
.ws54{word-spacing:11.511323pt;}
.ws155{word-spacing:11.519846pt;}
.ws68{word-spacing:11.583855pt;}
.ws5b{word-spacing:11.596655pt;}
.ws66{word-spacing:11.617988pt;}
.ws6a{word-spacing:11.643588pt;}
.ws4f{word-spacing:11.647854pt;}
.ws50{word-spacing:11.656388pt;}
.ws112{word-spacing:11.724653pt;}
.ws175{word-spacing:11.735844pt;}
.ws4c{word-spacing:11.737453pt;}
.ws149{word-spacing:11.759843pt;}
.ws83{word-spacing:11.792919pt;}
.ws120{word-spacing:11.809986pt;}
.ws92{word-spacing:11.814252pt;}
.ws4d{word-spacing:11.822786pt;}
.ws12f{word-spacing:11.827052pt;}
.ws15e{word-spacing:11.827842pt;}
.wsfe{word-spacing:11.835585pt;}
.ws60{word-spacing:11.839852pt;}
.ws4e{word-spacing:11.916651pt;}
.ws85{word-spacing:11.920918pt;}
.ws174{word-spacing:11.955841pt;}
.ws51{word-spacing:11.984917pt;}
.wsbf{word-spacing:12.027583pt;}
.ws78{word-spacing:12.036116pt;}
.wsa5{word-spacing:12.078782pt;}
.ws16a{word-spacing:12.095839pt;}
.ws1ad{word-spacing:12.111839pt;}
.ws1ac{word-spacing:12.131838pt;}
.ws154{word-spacing:12.139838pt;}
.ws86{word-spacing:12.142782pt;}
.ws33{word-spacing:12.144360pt;}
.ws189{word-spacing:12.155838pt;}
.ws7a{word-spacing:12.228114pt;}
.ws13f{word-spacing:12.235837pt;}
.wsb7{word-spacing:12.283580pt;}
.ws6d{word-spacing:12.287846pt;}
.ws16b{word-spacing:12.339835pt;}
.ws129{word-spacing:12.351846pt;}
.ws9d{word-spacing:12.368912pt;}
.ws2d{word-spacing:12.398223pt;}
.wsf7{word-spacing:12.398778pt;}
.ws182{word-spacing:12.403835pt;}
.ws16e{word-spacing:12.411835pt;}
.ws95{word-spacing:12.420111pt;}
.ws13e{word-spacing:12.427834pt;}
.ws12b{word-spacing:12.471311pt;}
.wsb1{word-spacing:12.577976pt;}
.ws1c{word-spacing:12.585600pt;}
.wsc9{word-spacing:12.590776pt;}
.ws14e{word-spacing:12.595832pt;}
.ws9a{word-spacing:12.599309pt;}
.ws14d{word-spacing:12.723830pt;}
.ws2e{word-spacing:12.752884pt;}
.wsb9{word-spacing:12.761440pt;}
.ws28{word-spacing:12.768000pt;}
.ws74{word-spacing:12.795573pt;}
.ws184{word-spacing:12.811829pt;}
.ws71{word-spacing:12.829706pt;}
.ws185{word-spacing:12.871828pt;}
.ws41{word-spacing:12.876639pt;}
.ws14f{word-spacing:12.879828pt;}
.ws12a{word-spacing:12.880906pt;}
.ws109{word-spacing:12.893705pt;}
.ws55{word-spacing:12.953438pt;}
.wsb2{word-spacing:12.983304pt;}
.ws4b{word-spacing:12.987571pt;}
.ws11f{word-spacing:13.025971pt;}
.wsa0{word-spacing:13.094236pt;}
.ws183{word-spacing:13.143825pt;}
.ws65{word-spacing:13.158236pt;}
.ws1a0{word-spacing:13.183824pt;}
.ws63{word-spacing:13.192368pt;}
.wsbe{word-spacing:13.200902pt;}
.ws4a{word-spacing:13.213701pt;}
.ws2b{word-spacing:13.233600pt;}
.ws2c{word-spacing:13.267200pt;}
.ws169{word-spacing:13.319822pt;}
.ws14{word-spacing:13.329600pt;}
.wsaf{word-spacing:13.345967pt;}
.ws125{word-spacing:13.367300pt;}
.ws26{word-spacing:13.368000pt;}
.ws124{word-spacing:13.375833pt;}
.ws64{word-spacing:13.435565pt;}
.ws197{word-spacing:13.439821pt;}
.ws7c{word-spacing:13.439832pt;}
.ws8b{word-spacing:13.567830pt;}
.ws7d{word-spacing:13.576364pt;}
.ws1a6{word-spacing:13.579819pt;}
.ws1a7{word-spacing:13.595819pt;}
.ws123{word-spacing:13.606230pt;}
.wsfa{word-spacing:13.627563pt;}
.wsf4{word-spacing:13.632136pt;}
.ws11e{word-spacing:13.636096pt;}
.ws1a8{word-spacing:13.675818pt;}
.wsc8{word-spacing:13.704362pt;}
.ws7e{word-spacing:13.734228pt;}
.wsc7{word-spacing:13.749471pt;}
.wsc5{word-spacing:13.754804pt;}
.ws102{word-spacing:13.798228pt;}
.ws7b{word-spacing:13.802494pt;}
.wsbb{word-spacing:13.806761pt;}
.wsf5{word-spacing:13.829472pt;}
.ws103{word-spacing:13.877472pt;}
.ws18d{word-spacing:13.903815pt;}
.ws76{word-spacing:13.956092pt;}
.wsbd{word-spacing:13.962806pt;}
.ws77{word-spacing:13.964625pt;}
.ws91{word-spacing:14.020091pt;}
.wsf9{word-spacing:14.021474pt;}
.ws104{word-spacing:14.024358pt;}
.ws5c{word-spacing:14.028625pt;}
.ws42{word-spacing:14.054224pt;}
.ws167{word-spacing:14.079812pt;}
.ws168{word-spacing:14.083812pt;}
.ws3f{word-spacing:14.088357pt;}
.ws70{word-spacing:14.101157pt;}
.ws6f{word-spacing:14.117475pt;}
.ws16f{word-spacing:14.139811pt;}
.ws101{word-spacing:14.186809pt;}
.ws122{word-spacing:14.195023pt;}
.ws56{word-spacing:14.207822pt;}
.ws166{word-spacing:14.223810pt;}
.wsb4{word-spacing:14.254755pt;}
.ws172{word-spacing:14.263810pt;}
.ws90{word-spacing:14.271822pt;}
.ws96{word-spacing:14.284621pt;}
.wsca{word-spacing:14.297421pt;}
.wsae{word-spacing:14.310221pt;}
.ws173{word-spacing:14.311809pt;}
.ws140{word-spacing:14.363808pt;}
.ws186{word-spacing:14.379808pt;}
.ws94{word-spacing:14.442486pt;}
.ws11d{word-spacing:14.536352pt;}
.ws187{word-spacing:14.551806pt;}
.ws141{word-spacing:14.571806pt;}
.ws19d{word-spacing:14.595805pt;}
.ws170{word-spacing:14.639805pt;}
.ws157{word-spacing:14.679804pt;}
.ws188{word-spacing:14.683804pt;}
.ws115{word-spacing:14.707016pt;}
.ws12{word-spacing:14.707200pt;}
.ws15a{word-spacing:14.719804pt;}
.ws24{word-spacing:14.760000pt;}
.ws20{word-spacing:14.827200pt;}
.ws19a{word-spacing:14.851802pt;}
.wsa7{word-spacing:14.860614pt;}
.ws156{word-spacing:14.879802pt;}
.ws199{word-spacing:14.955801pt;}
.ws107{word-spacing:15.009946pt;}
.ws158{word-spacing:15.155798pt;}
.ws1b3{word-spacing:15.163798pt;}
.ws159{word-spacing:15.167798pt;}
.ws40{word-spacing:15.300075pt;}
.wsf6{word-spacing:15.304342pt;}
.ws10a{word-spacing:15.308609pt;}
.ws118{word-spacing:15.334208pt;}
.ws59{word-spacing:15.436607pt;}
.ws6c{word-spacing:15.457940pt;}
.ws8d{word-spacing:15.500606pt;}
.ws72{word-spacing:15.551806pt;}
.ws99{word-spacing:15.607272pt;}
.ws12d{word-spacing:15.611538pt;}
.ws3c{word-spacing:15.649938pt;}
.ws138{word-spacing:15.759790pt;}
.ws11a{word-spacing:15.799269pt;}
.ws1f{word-spacing:15.902400pt;}
.wsaa{word-spacing:15.905935pt;}
.ws105{word-spacing:15.914468pt;}
.ws21{word-spacing:15.988800pt;}
.ws1b4{word-spacing:15.991787pt;}
.ws1b6{word-spacing:16.035786pt;}
.ws137{word-spacing:16.063786pt;}
.ws58{word-spacing:16.157665pt;}
.ws139{word-spacing:16.195784pt;}
.ws69{word-spacing:16.208864pt;}
.ws1b5{word-spacing:16.283783pt;}
.ws11c{word-spacing:16.345396pt;}
.wsa2{word-spacing:16.370995pt;}
.wsf8{word-spacing:16.375262pt;}
.ws1b7{word-spacing:16.395781pt;}
.ws12c{word-spacing:16.413661pt;}
.ws29{word-spacing:16.430400pt;}
.ws121{word-spacing:16.439261pt;}
.ws5{word-spacing:16.511862pt;}
.ws7{word-spacing:16.588662pt;}
.ws114{word-spacing:16.631259pt;}
.ws6{word-spacing:16.659061pt;}
.ws179{word-spacing:16.671778pt;}
.wsad{word-spacing:16.784857pt;}
.ws84{word-spacing:16.955521pt;}
.ws38{word-spacing:17.028054pt;}
.wsb8{word-spacing:17.062187pt;}
.ws43{word-spacing:17.079253pt;}
.ws25{word-spacing:17.131200pt;}
.ws52{word-spacing:17.168852pt;}
.wsac{word-spacing:17.241384pt;}
.ws2a{word-spacing:17.400000pt;}
.ws111{word-spacing:17.416316pt;}
.wscd{word-spacing:17.424849pt;}
.wsc2{word-spacing:17.429115pt;}
.ws1c5{word-spacing:17.463248pt;}
.wsc0{word-spacing:17.505915pt;}
.wsce{word-spacing:17.629646pt;}
.wsc1{word-spacing:17.633913pt;}
.wscf{word-spacing:17.719245pt;}
.wscc{word-spacing:17.787511pt;}
.wsab{word-spacing:17.838710pt;}
.wsa6{word-spacing:17.851510pt;}
.wsa3{word-spacing:17.881376pt;}
.ws119{word-spacing:18.069107pt;}
.ws23{word-spacing:18.144000pt;}
.ws195{word-spacing:18.387755pt;}
.ws194{word-spacing:18.415754pt;}
.ws100{word-spacing:18.478702pt;}
.ws73{word-spacing:18.482969pt;}
.ws39{word-spacing:18.546968pt;}
.ws46{word-spacing:18.593901pt;}
.ws127{word-spacing:18.636567pt;}
.ws1ba{word-spacing:18.731750pt;}
.ws47{word-spacing:18.913897pt;}
.ws1bc{word-spacing:19.219744pt;}
.ws3b{word-spacing:19.229626pt;}
.ws1bd{word-spacing:19.319742pt;}
.ws1bb{word-spacing:19.551739pt;}
.ws150{word-spacing:19.695737pt;}
.ws48{word-spacing:19.925084pt;}
.wsb3{word-spacing:20.138415pt;}
.ws9e{word-spacing:20.300546pt;}
.ws49{word-spacing:20.432811pt;}
.ws17e{word-spacing:20.439727pt;}
.ws180{word-spacing:20.567726pt;}
.ws181{word-spacing:20.731724pt;}
.ws17f{word-spacing:20.835722pt;}
.ws11b{word-spacing:21.239201pt;}
.ws117{word-spacing:21.388533pt;}
.ws116{word-spacing:21.452532pt;}
.ws80{word-spacing:21.461065pt;}
.ws81{word-spacing:21.542131pt;}
.ws7f{word-spacing:21.606130pt;}
.ws82{word-spacing:21.661596pt;}
.ws45{word-spacing:22.258922pt;}
.wsfd{word-spacing:23.858902pt;}
.wsfc{word-spacing:23.931434pt;}
.ws1b0{word-spacing:23.935681pt;}
.ws1a1{word-spacing:24.023680pt;}
.ws1a2{word-spacing:24.115678pt;}
.ws1a4{word-spacing:24.195677pt;}
.ws1af{word-spacing:24.219677pt;}
.ws1a3{word-spacing:24.255677pt;}
.ws4{word-spacing:24.758400pt;}
.ws13{word-spacing:24.792000pt;}
.ws3{word-spacing:24.825600pt;}
.ws1b{word-spacing:25.200000pt;}
.ws1a{word-spacing:25.324800pt;}
.ws16{word-spacing:25.732800pt;}
.wsa8{word-spacing:26.047674pt;}
.ws15{word-spacing:26.217600pt;}
.ws22{word-spacing:26.304000pt;}
.ws1d{word-spacing:28.833600pt;}
.ws1e{word-spacing:28.972800pt;}
.ws11{word-spacing:30.163200pt;}
.ws19{word-spacing:30.220800pt;}
.wsf{word-spacing:30.547200pt;}
.ws10{word-spacing:31.348800pt;}
.ws176{word-spacing:31.619578pt;}
.ws178{word-spacing:31.699577pt;}
.ws27{word-spacing:31.780800pt;}
.ws177{word-spacing:31.787576pt;}
.ws126{word-spacing:31.824669pt;}
.ws17{word-spacing:32.760000pt;}
.ws142{word-spacing:38.335489pt;}
.ws144{word-spacing:38.571486pt;}
.ws143{word-spacing:38.711484pt;}
.ws18{word-spacing:40.137600pt;}
.ws17b{word-spacing:42.959427pt;}
.ws17c{word-spacing:43.107425pt;}
.ws17a{word-spacing:43.291423pt;}
.ws17d{word-spacing:43.407421pt;}
.ws5e{word-spacing:63.083297pt;}
.wsc6{word-spacing:64.208642pt;}
.wsed{word-spacing:80.990920pt;}
.wsf1{word-spacing:81.202917pt;}
.ws34{word-spacing:144.190473pt;}
.ws10c{word-spacing:156.377915pt;}
.ws10e{word-spacing:156.389915pt;}
.wsd7{word-spacing:348.975347pt;}
.wsec{word-spacing:353.815282pt;}
.wsde{word-spacing:378.426954pt;}
.ws110{word-spacing:1814.672742pt;}
._1c{margin-left:-23.727684pt;}
._68{margin-left:-10.911855pt;}
._65{margin-left:-9.927868pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._5{width:1.459200pt;}
._0{width:4.966400pt;}
._12{width:8.520627pt;}
._15{width:9.856963pt;}
._7{width:10.789179pt;}
._13{width:11.848371pt;}
._c{width:13.171200pt;}
._11{width:14.068397pt;}
._10{width:15.179561pt;}
._a{width:16.368000pt;}
._f{width:18.107507pt;}
._b{width:19.240533pt;}
._63{width:20.313324pt;}
._16{width:21.234957pt;}
._62{width:22.446653pt;}
._17{width:25.151686pt;}
._4{width:26.188800pt;}
._66{width:32.839562pt;}
._8{width:33.820800pt;}
._14{width:37.772328pt;}
._64{width:39.427474pt;}
._9{width:41.203200pt;}
._67{width:44.159411pt;}
._18{width:48.263930pt;}
._6{width:64.089066pt;}
._d{width:78.298081pt;}
._3d{width:81.234917pt;}
._1f{width:82.442901pt;}
._39{width:83.714884pt;}
._2d{width:92.014773pt;}
._3f{width:98.558686pt;}
._36{width:104.210611pt;}
._25{width:105.430594pt;}
._49{width:108.038559pt;}
._52{width:120.725296pt;}
._35{width:136.398181pt;}
._51{width:143.658085pt;}
._37{width:146.622045pt;}
._5d{width:156.617912pt;}
._26{width:160.753857pt;}
._53{width:162.365077pt;}
._4d{width:168.825749pt;}
._56{width:170.105732pt;}
._43{width:176.777643pt;}
._61{width:179.813602pt;}
._42{width:182.029573pt;}
._48{width:183.109559pt;}
._55{width:184.385541pt;}
._24{width:193.417421pt;}
._2f{width:197.781363pt;}
._32{width:204.065279pt;}
._4b{width:204.985267pt;}
._4f{width:211.529180pt;}
._28{width:216.297116pt;}
._33{width:219.945067pt;}
._5c{width:224.529006pt;}
._50{width:227.200971pt;}
._2b{width:242.848762pt;}
._34{width:246.384715pt;}
._3a{width:252.904628pt;}
._2e{width:261.343421pt;}
._4a{width:268.384421pt;}
._30{width:280.860255pt;}
._4c{width:288.228157pt;}
._59{width:299.128012pt;}
._57{width:304.587939pt;}
._31{width:309.003880pt;}
._4e{width:316.859775pt;}
._5e{width:322.527700pt;}
._1a{width:325.315662pt;}
._3c{width:330.155598pt;}
._1b{width:340.019466pt;}
._2c{width:345.003400pt;}
._1e{width:352.039306pt;}
._3e{width:363.811149pt;}
._22{width:372.419034pt;}
._23{width:375.438994pt;}
._41{width:377.254970pt;}
._20{width:380.782923pt;}
._1d{width:382.278903pt;}
._47{width:386.734843pt;}
._19{width:387.738830pt;}
._3b{width:393.182757pt;}
._45{width:399.830669pt;}
._21{width:405.474594pt;}
._40{width:411.218517pt;}
._2a{width:419.946401pt;}
._5a{width:429.142278pt;}
._38{width:434.946201pt;}
._27{width:438.266156pt;}
._54{width:441.715205pt;}
._44{width:445.522060pt;}
._29{width:446.586045pt;}
._5f{width:452.541966pt;}
._46{width:453.841949pt;}
._58{width:567.668431pt;}
._5b{width:579.720270pt;}
._60{width:603.119958pt;}
._e{width:807.695640pt;}
.fs7{font-size:24.885867pt;}
.fsb{font-size:26.131733pt;}
.fse{font-size:26.662400pt;}
.fsc{font-size:28.440000pt;}
.fs8{font-size:37.332800pt;}
.fsd{font-size:39.999467pt;}
.fs6{font-size:42.661867pt;}
.fsa{font-size:42.666133pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.333867pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:63.999467pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y45{bottom:19.351248pt;}
.y44{bottom:42.708515pt;}
.ycd{bottom:55.861467pt;}
.y8b{bottom:55.861518pt;}
.y6c{bottom:55.861817pt;}
.y100{bottom:55.861884pt;}
.ye4{bottom:55.862792pt;}
.y11f{bottom:55.883967pt;}
.y43{bottom:56.012058pt;}
.ye5{bottom:59.565333pt;}
.ycc{bottom:64.557567pt;}
.ycf{bottom:65.234667pt;}
.yd6{bottom:65.235667pt;}
.yde{bottom:65.236667pt;}
.y42{bottom:69.392133pt;}
.y8a{bottom:70.601600pt;}
.y6b{bottom:73.247200pt;}
.yff{bottom:73.247266pt;}
.yb3{bottom:73.265566pt;}
.y11e{bottom:73.269350pt;}
.y104{bottom:75.213534pt;}
.ycb{bottom:81.867217pt;}
.y186{bottom:83.836933pt;}
.y14e{bottom:88.594773pt;}
.y13{bottom:88.706667pt;}
.yfe{bottom:90.557983pt;}
.yb2{bottom:90.575216pt;}
.y11d{bottom:90.579000pt;}
.y185{bottom:97.820747pt;}
.yca{bottom:99.252600pt;}
.y17{bottom:101.040000pt;}
.y14d{bottom:102.578586pt;}
.y3f{bottom:105.521867pt;}
.y6a{bottom:107.867386pt;}
.yfd{bottom:107.868700pt;}
.yb1{bottom:107.885933pt;}
.y11c{bottom:107.889717pt;}
.y184{bottom:111.804560pt;}
.yc9{bottom:116.562250pt;}
.y14c{bottom:116.562400pt;}
.y16{bottom:120.666667pt;}
.yfc{bottom:125.254083pt;}
.yb0{bottom:125.271316pt;}
.y11b{bottom:125.275100pt;}
.y3e{bottom:125.553467pt;}
.y183{bottom:125.864373pt;}
.yd7{bottom:126.841845pt;}
.y14b{bottom:130.546213pt;}
.yc8{bottom:133.871900pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y182{bottom:139.848186pt;}
.y15{bottom:140.293333pt;}
.y69{bottom:142.563733pt;}
.yaf{bottom:142.580966pt;}
.y11a{bottom:142.584750pt;}
.y14a{bottom:144.530027pt;}
.y3d{bottom:145.585067pt;}
.yc7{bottom:151.257283pt;}
.y181{bottom:153.832000pt;}
.y149{bottom:158.589840pt;}
.yae{bottom:159.890616pt;}
.y119{bottom:159.894401pt;}
.y3c{bottom:165.541067pt;}
.y180{bottom:167.815813pt;}
.yc6{bottom:168.566933pt;}
.y148{bottom:172.573653pt;}
.yfb{bottom:177.259733pt;}
.yad{bottom:177.275999pt;}
.y118{bottom:177.279783pt;}
.y17f{bottom:181.799627pt;}
.y3b{bottom:185.572667pt;}
.y147{bottom:186.557467pt;}
.y68{bottom:194.585166pt;}
.yac{bottom:194.585649pt;}
.y117{bottom:194.589434pt;}
.y17e{bottom:195.859439pt;}
.yce{bottom:196.233067pt;}
.y146{bottom:200.553227pt;}
.yc5{bottom:203.262774pt;}
.y3a{bottom:205.528667pt;}
.y17d{bottom:209.843253pt;}
.y67{bottom:211.894817pt;}
.yab{bottom:211.895300pt;}
.y116{bottom:211.899084pt;}
.y145{bottom:214.537040pt;}
.y17c{bottom:223.827067pt;}
.y39{bottom:225.560267pt;}
.y102{bottom:227.830499pt;}
.y144{bottom:228.596853pt;}
.yfa{bottom:229.267849pt;}
.y66{bottom:229.280199pt;}
.yaa{bottom:229.280682pt;}
.y115{bottom:229.284467pt;}
.y17b{bottom:237.810880pt;}
.yc4{bottom:237.883120pt;}
.y143{bottom:242.580666pt;}
.y38{bottom:245.516267pt;}
.yf9{bottom:246.577499pt;}
.y65{bottom:246.589850pt;}
.ya9{bottom:246.590333pt;}
.y114{bottom:246.594117pt;}
.y17a{bottom:251.794694pt;}
.y142{bottom:256.564480pt;}
.yd8{bottom:259.730073pt;}
.yf8{bottom:263.887150pt;}
.y64{bottom:263.899500pt;}
.ya8{bottom:263.899983pt;}
.y113{bottom:263.903767pt;}
.y37{bottom:265.547867pt;}
.y179{bottom:265.854506pt;}
.y141{bottom:270.548293pt;}
.yc3{bottom:272.579467pt;}
.y178{bottom:279.838320pt;}
.yf7{bottom:281.196800pt;}
.y63{bottom:281.209150pt;}
.ya7{bottom:281.209633pt;}
.y112{bottom:281.213417pt;}
.y140{bottom:284.608106pt;}
.y36{bottom:285.579467pt;}
.y177{bottom:293.822133pt;}
.yd0{bottom:297.448570pt;}
.yd5{bottom:297.449570pt;}
.y13f{bottom:298.591920pt;}
.y62{bottom:298.594533pt;}
.ya6{bottom:298.595016pt;}
.y111{bottom:298.598800pt;}
.ye0{bottom:302.966497pt;}
.yd9{bottom:302.967497pt;}
.ydd{bottom:302.968497pt;}
.y35{bottom:305.535467pt;}
.ya{bottom:306.382667pt;}
.y176{bottom:307.805947pt;}
.y13e{bottom:312.575733pt;}
.yf6{bottom:315.892800pt;}
.y61{bottom:315.904183pt;}
.ya5{bottom:315.904666pt;}
.y110{bottom:315.908450pt;}
.y175{bottom:321.789760pt;}
.y34{bottom:325.567067pt;}
.y13d{bottom:326.559547pt;}
.yc2{bottom:333.206233pt;}
.y89{bottom:333.207883pt;}
.y60{bottom:333.213834pt;}
.ya4{bottom:333.214317pt;}
.y10f{bottom:333.218101pt;}
.y174{bottom:335.849573pt;}
.y13c{bottom:340.543360pt;}
.yd{bottom:343.546667pt;}
.y33{bottom:345.523067pt;}
.y173{bottom:349.833386pt;}
.yc1{bottom:350.591616pt;}
.y88{bottom:350.593266pt;}
.y5f{bottom:350.599216pt;}
.ya3{bottom:350.599699pt;}
.y10e{bottom:350.603483pt;}
.y9{bottom:351.724000pt;}
.y13b{bottom:354.603173pt;}
.y172{bottom:363.829600pt;}
.y32{bottom:365.554667pt;}
.yf5{bottom:367.900167pt;}
.yc0{bottom:367.901266pt;}
.y87{bottom:367.902916pt;}
.y5e{bottom:367.908866pt;}
.ya2{bottom:367.909350pt;}
.y10d{bottom:367.913134pt;}
.y13a{bottom:368.586986pt;}
.y171{bottom:377.813413pt;}
.y139{bottom:382.570800pt;}
.yf4{bottom:385.209817pt;}
.ybf{bottom:385.210917pt;}
.y86{bottom:385.212567pt;}
.y5d{bottom:385.218517pt;}
.ya1{bottom:385.219000pt;}
.y10c{bottom:385.222784pt;}
.y31{bottom:385.586267pt;}
.yb{bottom:386.533333pt;}
.y170{bottom:391.873226pt;}
.y138{bottom:396.554613pt;}
.y8{bottom:397.065333pt;}
.yf3{bottom:402.595200pt;}
.ybe{bottom:402.596299pt;}
.y85{bottom:402.597949pt;}
.y5c{bottom:402.603899pt;}
.ya0{bottom:402.604383pt;}
.y10b{bottom:402.608167pt;}
.y30{bottom:405.542267pt;}
.y16f{bottom:405.857039pt;}
.y137{bottom:410.538427pt;}
.yd2{bottom:418.317959pt;}
.y16e{bottom:419.840853pt;}
.ybd{bottom:419.905950pt;}
.y84{bottom:419.907600pt;}
.y5b{bottom:419.913550pt;}
.y9f{bottom:419.914033pt;}
.y10a{bottom:419.917817pt;}
.y136{bottom:424.598239pt;}
.y2f{bottom:425.573867pt;}
.y16d{bottom:433.824666pt;}
.y10{bottom:433.826667pt;}
.ybc{bottom:437.215600pt;}
.y83{bottom:437.217250pt;}
.y5a{bottom:437.223200pt;}
.y9e{bottom:437.223683pt;}
.y109{bottom:437.227467pt;}
.y135{bottom:438.582053pt;}
.y7{bottom:442.406667pt;}
.y2e{bottom:445.529867pt;}
.y16c{bottom:447.808480pt;}
.y134{bottom:452.565867pt;}
.y82{bottom:454.602633pt;}
.y59{bottom:454.608583pt;}
.y9d{bottom:454.609066pt;}
.y108{bottom:454.612850pt;}
.y16b{bottom:461.868292pt;}
.y2d{bottom:465.561467pt;}
.y133{bottom:466.549680pt;}
.ybb{bottom:471.911733pt;}
.y81{bottom:471.912283pt;}
.y58{bottom:471.918233pt;}
.y9c{bottom:471.918716pt;}
.y107{bottom:471.922500pt;}
.y16a{bottom:475.852106pt;}
.y11{bottom:478.426667pt;}
.y132{bottom:480.533494pt;}
.y2c{bottom:485.517467pt;}
.y6{bottom:487.748000pt;}
.y80{bottom:489.223000pt;}
.y57{bottom:489.227883pt;}
.y9b{bottom:489.228366pt;}
.y106{bottom:489.232150pt;}
.y169{bottom:489.835920pt;}
.y131{bottom:494.593306pt;}
.y168{bottom:503.819733pt;}
.y2b{bottom:505.549067pt;}
.y7f{bottom:506.533717pt;}
.y56{bottom:506.538600pt;}
.y9a{bottom:506.539083pt;}
.y105{bottom:506.542867pt;}
.y130{bottom:508.577120pt;}
.y167{bottom:517.803547pt;}
.y12f{bottom:522.560933pt;}
.y7e{bottom:523.919099pt;}
.y55{bottom:523.923983pt;}
.y99{bottom:523.924466pt;}
.yba{bottom:523.928250pt;}
.y18{bottom:524.093333pt;}
.y2a{bottom:525.580667pt;}
.yd3{bottom:530.872458pt;}
.y166{bottom:531.863359pt;}
.y5{bottom:533.089333pt;}
.y12e{bottom:536.544747pt;}
.ye2{bottom:538.960350pt;}
.ydb{bottom:538.961350pt;}
.y7d{bottom:541.228750pt;}
.y54{bottom:541.233633pt;}
.y98{bottom:541.234116pt;}
.yb9{bottom:541.237900pt;}
.y29{bottom:545.536667pt;}
.y165{bottom:545.847173pt;}
.y12d{bottom:550.528560pt;}
.y7c{bottom:558.538400pt;}
.yf1{bottom:558.540117pt;}
.y53{bottom:558.543284pt;}
.y97{bottom:558.543767pt;}
.yb8{bottom:558.547551pt;}
.y164{bottom:559.830986pt;}
.ye{bottom:561.706667pt;}
.yf2{bottom:563.300667pt;}
.y12c{bottom:564.588373pt;}
.y28{bottom:565.568267pt;}
.y25{bottom:570.860686pt;}
.y163{bottom:573.814800pt;}
.yf0{bottom:575.925499pt;}
.y52{bottom:575.928666pt;}
.y96{bottom:575.929149pt;}
.yb7{bottom:575.932933pt;}
.y12b{bottom:578.572186pt;}
.y27{bottom:585.524267pt;}
.y24{bottom:585.525010pt;}
.y162{bottom:587.798613pt;}
.y12a{bottom:592.556000pt;}
.y7b{bottom:593.234533pt;}
.yef{bottom:593.235150pt;}
.y51{bottom:593.238317pt;}
.y95{bottom:593.238800pt;}
.yb6{bottom:593.242584pt;}
.y23{bottom:600.189334pt;}
.y161{bottom:601.858426pt;}
.y26{bottom:605.555733pt;}
.y129{bottom:606.539813pt;}
.yee{bottom:610.544800pt;}
.y50{bottom:610.547967pt;}
.y94{bottom:610.548450pt;}
.yb5{bottom:610.552234pt;}
.y18c{bottom:612.888000pt;}
.y22{bottom:614.853658pt;}
.y160{bottom:615.842239pt;}
.y128{bottom:620.599626pt;}
.y4f{bottom:627.933349pt;}
.y93{bottom:627.933833pt;}
.yb4{bottom:627.937617pt;}
.y15f{bottom:629.826053pt;}
.y18b{bottom:630.200004pt;}
.y127{bottom:634.583440pt;}
.y15e{bottom:643.809867pt;}
.yd4{bottom:644.182947pt;}
.yed{bottom:645.240800pt;}
.y4e{bottom:645.243000pt;}
.y92{bottom:645.243483pt;}
.y7a{bottom:645.247267pt;}
.y21{bottom:646.903867pt;}
.y18a{bottom:647.585386pt;}
.y126{bottom:648.567253pt;}
.y20{bottom:651.061333pt;}
.ye3{bottom:655.218800pt;}
.ydc{bottom:655.219800pt;}
.y15d{bottom:657.869679pt;}
.y125{bottom:662.551067pt;}
.y4d{bottom:662.552650pt;}
.y91{bottom:662.553133pt;}
.y79{bottom:662.556917pt;}
.y1f{bottom:665.574667pt;}
.y1e{bottom:669.732133pt;}
.y15c{bottom:671.853493pt;}
.y124{bottom:679.861200pt;}
.y4c{bottom:679.862300pt;}
.y90{bottom:679.862783pt;}
.y78{bottom:679.866568pt;}
.y15b{bottom:685.837306pt;}
.y4{bottom:691.756000pt;}
.y189{bottom:691.805634pt;}
.y1c{bottom:692.258133pt;}
.y4b{bottom:697.247683pt;}
.y8f{bottom:697.248166pt;}
.yec{bottom:697.249883pt;}
.y77{bottom:697.251950pt;}
.y1d{bottom:699.363600pt;}
.y15a{bottom:699.821120pt;}
.y188{bottom:709.191016pt;}
.yd1{bottom:711.987043pt;}
.y159{bottom:713.804933pt;}
.y4a{bottom:714.557333pt;}
.y8e{bottom:714.557816pt;}
.yeb{bottom:714.559533pt;}
.y76{bottom:714.561600pt;}
.ye1{bottom:720.301932pt;}
.yda{bottom:720.302932pt;}
.y12{bottom:725.040000pt;}
.y187{bottom:726.500667pt;}
.y158{bottom:727.864746pt;}
.y8d{bottom:731.867467pt;}
.y123{bottom:731.869117pt;}
.yea{bottom:731.869183pt;}
.y75{bottom:731.871251pt;}
.y157{bottom:741.848559pt;}
.y1b{bottom:744.189733pt;}
.y49{bottom:749.253467pt;}
.y122{bottom:749.254500pt;}
.ye9{bottom:749.254566pt;}
.y74{bottom:749.256633pt;}
.y156{bottom:755.832373pt;}
.y8c{bottom:766.563600pt;}
.ye8{bottom:766.564216pt;}
.y73{bottom:766.566284pt;}
.y155{bottom:769.816186pt;}
.y1a{bottom:774.878533pt;}
.y101{bottom:779.792000pt;}
.y154{bottom:783.800000pt;}
.ye7{bottom:783.873867pt;}
.y121{bottom:783.874867pt;}
.y72{bottom:783.875934pt;}
.y153{bottom:797.859812pt;}
.y120{bottom:801.260250pt;}
.y71{bottom:801.261317pt;}
.y3{bottom:805.081333pt;}
.y103{bottom:806.551782pt;}
.y48{bottom:809.499550pt;}
.ydf{bottom:810.254933pt;}
.y152{bottom:811.843626pt;}
.ye6{bottom:818.569653pt;}
.y70{bottom:818.570967pt;}
.y151{bottom:825.827440pt;}
.y47{bottom:826.809200pt;}
.y6f{bottom:835.880617pt;}
.y19{bottom:837.543067pt;}
.y150{bottom:839.811253pt;}
.y46{bottom:845.480133pt;}
.y6e{bottom:853.266000pt;}
.y14f{bottom:853.795067pt;}
.y2{bottom:857.092000pt;}
.y41{bottom:873.750676pt;}
.y1{bottom:879.748000pt;}
.y40{bottom:893.102133pt;}
.y6d{bottom:895.747867pt;}
.hf{height:19.286547pt;}
.h19{height:20.663360pt;}
.h16{height:22.041000pt;}
.h11{height:28.858254pt;}
.h10{height:28.932920pt;}
.h4{height:29.333333pt;}
.h17{height:30.919588pt;}
.h18{height:30.999587pt;}
.he{height:32.977623pt;}
.h1a{height:32.980921pt;}
.h1b{height:33.059650pt;}
.h14{height:33.066253pt;}
.hb{height:35.328000pt;}
.h13{height:37.200000pt;}
.h12{height:41.227079pt;}
.h15{height:41.333747pt;}
.hd{height:49.471588pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hc{height:74.208000pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:929.764000pt;}
.ha{height:930.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wa{width:646.000000pt;}
.w9{width:646.298667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xa{left:54.047200pt;}
.x10{left:58.053467pt;}
.x2c{left:62.059867pt;}
.x6a{left:71.356969pt;}
.x12{left:74.078950pt;}
.x13{left:75.363733pt;}
.x15{left:85.341733pt;}
.x14{left:90.028083pt;}
.x2e{left:109.379422pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x2f{left:123.363236pt;}
.x59{left:128.730667pt;}
.x17{left:137.348556pt;}
.x2d{left:146.040933pt;}
.x18{left:151.408369pt;}
.xb{left:152.995200pt;}
.x5{left:154.760000pt;}
.x30{left:165.693671pt;}
.x2{left:169.813333pt;}
.x16{left:174.085067pt;}
.x5b{left:176.050769pt;}
.x7{left:178.413333pt;}
.x31{left:179.677485pt;}
.x46{left:184.365422pt;}
.xc{left:190.336933pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x5a{left:198.727467pt;}
.x47{left:203.036173pt;}
.x19{left:212.409556pt;}
.x32{left:217.019987pt;}
.x5c{left:218.381205pt;}
.x48{left:221.706924pt;}
.x1a{left:231.080307pt;}
.x33{left:235.690738pt;}
.x5d{left:237.051956pt;}
.x49{left:240.377675pt;}
.x1b{left:249.751058pt;}
.x34{left:254.361489pt;}
.x5e{left:255.722707pt;}
.x4a{left:259.048427pt;}
.x1c{left:268.346810pt;}
.x11{left:270.689733pt;}
.x35{left:273.032240pt;}
.x5f{left:274.393458pt;}
.x4b{left:277.719178pt;}
.x1d{left:287.017561pt;}
.x36{left:291.702991pt;}
.x60{left:293.064209pt;}
.x4c{left:296.389929pt;}
.x1e{left:305.688312pt;}
.x38{left:311.356729pt;}
.x4d{left:315.060680pt;}
.xd{left:316.799867pt;}
.x1f{left:324.359063pt;}
.x61{left:330.405711pt;}
.x4e{left:333.731431pt;}
.x3a{left:335.395409pt;}
.xe{left:339.628267pt;}
.x20{left:343.029814pt;}
.x39{left:349.379222pt;}
.x4f{left:352.402182pt;}
.x21{left:361.700565pt;}
.x62{left:367.747213pt;}
.x50{left:371.072933pt;}
.x37{left:372.055920pt;}
.x22{left:380.371316pt;}
.x63{left:386.417964pt;}
.x51{left:389.743684pt;}
.x3b{left:391.709658pt;}
.x23{left:399.042067pt;}
.x64{left:405.013716pt;}
.x52{left:408.414435pt;}
.x3c{left:410.380409pt;}
.x24{left:417.712818pt;}
.x65{left:423.684467pt;}
.x53{left:427.085186pt;}
.x3d{left:429.051160pt;}
.x25{left:436.383569pt;}
.x66{left:442.355218pt;}
.x3e{left:447.721911pt;}
.x54{left:450.064880pt;}
.x26{left:455.054320pt;}
.x55{left:459.590400pt;}
.xf{left:461.858133pt;}
.x56{left:464.050267pt;}
.x3f{left:466.392662pt;}
.x27{left:473.725071pt;}
.x57{left:479.092800pt;}
.x58{left:483.628267pt;}
.x40{left:485.063413pt;}
.x28{left:492.395822pt;}
.x67{left:498.367471pt;}
.x41{left:503.734164pt;}
.x29{left:511.066574pt;}
.x68{left:516.963600pt;}
.x69{left:521.347867pt;}
.x42{left:522.404915pt;}
.x2a{left:529.737325pt;}
.x43{left:541.075666pt;}
.x2b{left:548.408076pt;}
.x44{left:559.746417pt;}
.x45{left:581.366800pt;}
}




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