
    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_43017193078bde5ef1c4e927.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_e917909c6bbd16eaee533fbe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_9d464f8a2db8ad205a3b6947.woff')format("woff");}.ff3{font-family:ff3;line-height:0.720804;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_f868aca631b668a284ba6555.woff')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_4615520310821c9ec62cd2b9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_d62c5e749dc60044f0558ad3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_a7412e8505a8237cc2b9b356.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_4fe5c3fb55423a1895e6756c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976111;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_e52b2a11c5ad4f07e975f0ab.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_8b1c08e2d0399302c856b11d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_2c0b6532d372adfa68ba894e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.721235;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_273c97c1945399a848e5d829.woff')format("woff");}.ffc{font-family:ffc;line-height:0.783000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_175a78ee6e06eed923916967.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_867aed7c7ee4a42ca452bd3a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_28ac71803dc6f935b2495386.woff')format("woff");}.fff{font-family:fff;line-height:0.729000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_273c97c1945399a848e5d829.woff')format("woff");}.ff10{font-family:ff10;line-height:0.783000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_175a78ee6e06eed923916967.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_867aed7c7ee4a42ca452bd3a.woff')format("woff");}.ff12{font-family:ff12;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_28ac71803dc6f935b2495386.woff')format("woff");}.ff13{font-family:ff13;line-height:0.729000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_60f51e0e0cb7f5219264f1af.woff')format("woff");}.ff14{font-family:ff14;line-height:0.964844;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:ff15;src:url('chunks/assets/font_2c17942106062763682956da.woff')format("woff");}.ff15{font-family:ff15;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls1d{letter-spacing:-7.236000px;}
.ls11{letter-spacing:-3.892369px;}
.ls15{letter-spacing:-3.843220px;}
.ls1c{letter-spacing:-3.240000px;}
.ls17{letter-spacing:-2.204638px;}
.lse{letter-spacing:-1.860000px;}
.ls13{letter-spacing:-1.659537px;}
.ls12{letter-spacing:-1.116416px;}
.ls16{letter-spacing:-1.102319px;}
.ls14{letter-spacing:-1.026000px;}
.ls1a{letter-spacing:-1.020000px;}
.lsa{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.810000px;}
.ls1b{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.691200px;}
.lsd{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.419760px;}
.ls7{letter-spacing:-0.408000px;}
.ls21{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.lsf{letter-spacing:0.019200px;}
.ls24{letter-spacing:0.022200px;}
.ls5{letter-spacing:0.025800px;}
.ls28{letter-spacing:0.081000px;}
.ls27{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.133800px;}
.ls2b{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.840000px;}
.ls29{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.200000px;}
.ls10{letter-spacing:3.319074px;}
.ls19{letter-spacing:4.556400px;}
.ls3{letter-spacing:5.431800px;}
.ls4{letter-spacing:5.511600px;}
.ls20{letter-spacing:8.640000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws5{word-spacing:-17.928000px;}
.wsec{word-spacing:-16.434000px;}
.wsbf{word-spacing:-16.302000px;}
.wsd5{word-spacing:-16.080000px;}
.ws131{word-spacing:-15.480000px;}
.ws3{word-spacing:-14.940000px;}
.ws30{word-spacing:-14.880000px;}
.ws84{word-spacing:-14.820000px;}
.ws6{word-spacing:-14.700000px;}
.wsbe{word-spacing:-14.520000px;}
.ws118{word-spacing:-14.472000px;}
.ws32{word-spacing:-14.340000px;}
.ws117{word-spacing:-14.310000px;}
.ws115{word-spacing:-14.040000px;}
.ws85{word-spacing:-13.800000px;}
.wse0{word-spacing:-13.500000px;}
.ws116{word-spacing:-13.473000px;}
.ws9c{word-spacing:-13.446000px;}
.ws6d{word-spacing:-13.392000px;}
.wsd8{word-spacing:-13.260000px;}
.wsed{word-spacing:-13.230000px;}
.wse2{word-spacing:-13.200000px;}
.ws31{word-spacing:-13.080000px;}
.wse1{word-spacing:-12.660000px;}
.wsd6{word-spacing:-12.540000px;}
.ws7a{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.366000px;}
.ws6c{word-spacing:-12.204000px;}
.wsb{word-spacing:-12.150000px;}
.ws7{word-spacing:-11.772000px;}
.ws9{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.896000px;}
.ws8{word-spacing:-10.854000px;}
.ws2d{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.464000px;}
.ws9d{word-spacing:-10.206000px;}
.ws2{word-spacing:-9.417600px;}
.wsd9{word-spacing:-9.180000px;}
.wsdf{word-spacing:-8.820000px;}
.ws6b{word-spacing:-8.388205px;}
.ws76{word-spacing:-8.282287px;}
.ws2f{word-spacing:-8.255280px;}
.wsd2{word-spacing:-8.040000px;}
.ws68{word-spacing:-7.271789px;}
.ws78{word-spacing:-7.179968px;}
.wsd4{word-spacing:-6.960000px;}
.ws6a{word-spacing:-6.728668px;}
.wsdd{word-spacing:-6.240000px;}
.ws9e{word-spacing:-6.210000px;}
.ws79{word-spacing:-6.077650px;}
.wsda{word-spacing:-5.220000px;}
.ws29{word-spacing:-4.980000px;}
.ws2a{word-spacing:-4.920000px;}
.ws67{word-spacing:-4.495837px;}
.ws75{word-spacing:-4.439068px;}
.ws10{word-spacing:-4.158000px;}
.ws60{word-spacing:-3.840000px;}
.ws66{word-spacing:-3.720000px;}
.ws2b{word-spacing:-3.540000px;}
.ws3e{word-spacing:-3.360000px;}
.wsb9{word-spacing:-3.120000px;}
.wsc6{word-spacing:-2.880000px;}
.ws24{word-spacing:-2.820000px;}
.wsc3{word-spacing:-2.760000px;}
.ws9a{word-spacing:-2.700000px;}
.ws10c{word-spacing:-2.646000px;}
.ws40{word-spacing:-2.640000px;}
.wsc8{word-spacing:-2.580000px;}
.ws62{word-spacing:-2.460000px;}
.ws73{word-spacing:-2.430000px;}
.ws80{word-spacing:-2.376000px;}
.ws1d{word-spacing:-2.280000px;}
.wsa2{word-spacing:-2.220000px;}
.wsf9{word-spacing:-2.214000px;}
.wsb8{word-spacing:-2.160000px;}
.ws126{word-spacing:-2.106000px;}
.wsa4{word-spacing:-2.100000px;}
.ws6e{word-spacing:-2.040000px;}
.wsf3{word-spacing:-1.998000px;}
.ws128{word-spacing:-1.944000px;}
.ws129{word-spacing:-1.890000px;}
.wse5{word-spacing:-1.860000px;}
.ws33{word-spacing:-1.800000px;}
.wsfe{word-spacing:-1.782000px;}
.wsc1{word-spacing:-1.740000px;}
.wsa8{word-spacing:-1.680000px;}
.ws1a{word-spacing:-1.674000px;}
.wsb2{word-spacing:-1.566000px;}
.wsd3{word-spacing:-1.560000px;}
.wsaa{word-spacing:-1.512000px;}
.ws111{word-spacing:-1.458000px;}
.wsdb{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.380000px;}
.wse6{word-spacing:-1.320000px;}
.ws121{word-spacing:-1.296000px;}
.ws92{word-spacing:-1.260000px;}
.wsa6{word-spacing:-1.200000px;}
.ws4c{word-spacing:-1.140000px;}
.wsfc{word-spacing:-1.134000px;}
.ws61{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.020000px;}
.ws15{word-spacing:-0.972000px;}
.ws5c{word-spacing:-0.960000px;}
.ws120{word-spacing:-0.918000px;}
.wse4{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.840000px;}
.wsff{word-spacing:-0.810000px;}
.ws5d{word-spacing:-0.780000px;}
.ws19{word-spacing:-0.702000px;}
.ws8b{word-spacing:-0.660000px;}
.ws69{word-spacing:-0.603468px;}
.ws86{word-spacing:-0.600000px;}
.ws77{word-spacing:-0.595848px;}
.ws108{word-spacing:-0.540000px;}
.ws43{word-spacing:-0.480000px;}
.ws18{word-spacing:-0.432000px;}
.wsde{word-spacing:-0.420000px;}
.ws83{word-spacing:-0.378000px;}
.ws10e{word-spacing:-0.324000px;}
.ws9b{word-spacing:-0.300000px;}
.ws11b{word-spacing:-0.270000px;}
.ws3d{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws137{word-spacing:-0.162000px;}
.wsc9{word-spacing:-0.120000px;}
.ws11d{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.054000px;}
.ws2e{word-spacing:-0.048000px;}
.wsd{word-spacing:0.000000px;}
.wsfb{word-spacing:0.054000px;}
.wsb0{word-spacing:0.060000px;}
.wsab{word-spacing:0.108000px;}
.ws49{word-spacing:0.120000px;}
.wsb1{word-spacing:0.162000px;}
.ws87{word-spacing:0.180000px;}
.ws8c{word-spacing:0.240000px;}
.wsf0{word-spacing:0.270000px;}
.ws34{word-spacing:0.300000px;}
.ws0{word-spacing:0.306000px;}
.ws39{word-spacing:0.360000px;}
.wsf2{word-spacing:0.378000px;}
.ws122{word-spacing:0.432000px;}
.wsa9{word-spacing:0.480000px;}
.wsf8{word-spacing:0.486000px;}
.ws41{word-spacing:0.540000px;}
.ws37{word-spacing:0.600000px;}
.ws5e{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws17{word-spacing:0.702000px;}
.ws63{word-spacing:0.720000px;}
.wsa5{word-spacing:0.780000px;}
.wsfd{word-spacing:0.810000px;}
.ws16{word-spacing:0.864000px;}
.ws93{word-spacing:0.900000px;}
.ws2c{word-spacing:0.918000px;}
.ws89{word-spacing:0.960000px;}
.ws94{word-spacing:1.020000px;}
.ws82{word-spacing:1.026000px;}
.wsb5{word-spacing:1.080000px;}
.ws7f{word-spacing:1.102319px;}
.ws58{word-spacing:1.140000px;}
.ws81{word-spacing:1.188000px;}
.ws65{word-spacing:1.200000px;}
.ws112{word-spacing:1.242000px;}
.ws3b{word-spacing:1.320000px;}
.ws138{word-spacing:1.404000px;}
.ws5b{word-spacing:1.440000px;}
.wsb4{word-spacing:1.500000px;}
.wsfa{word-spacing:1.512000px;}
.ws3c{word-spacing:1.620000px;}
.ws11a{word-spacing:1.674000px;}
.wsae{word-spacing:1.680000px;}
.wsc0{word-spacing:1.740000px;}
.ws72{word-spacing:1.836000px;}
.ws4d{word-spacing:1.860000px;}
.ws48{word-spacing:1.920000px;}
.wsf4{word-spacing:2.052000px;}
.ws8f{word-spacing:2.100000px;}
.wsf7{word-spacing:2.160000px;}
.ws7e{word-spacing:2.204638px;}
.ws42{word-spacing:2.280000px;}
.ws74{word-spacing:2.322000px;}
.wsac{word-spacing:2.520000px;}
.ws10b{word-spacing:2.538000px;}
.ws97{word-spacing:2.580000px;}
.wsee{word-spacing:2.592000px;}
.wsc5{word-spacing:2.640000px;}
.ws107{word-spacing:2.700000px;}
.ws88{word-spacing:2.760000px;}
.ws38{word-spacing:2.820000px;}
.ws95{word-spacing:2.880000px;}
.wsca{word-spacing:2.940000px;}
.wscb{word-spacing:3.000000px;}
.ws25{word-spacing:3.180000px;}
.ws10f{word-spacing:3.240000px;}
.wsef{word-spacing:3.294000px;}
.ws130{word-spacing:3.348000px;}
.ws91{word-spacing:3.360000px;}
.ws90{word-spacing:3.420000px;}
.ws100{word-spacing:3.456000px;}
.ws4e{word-spacing:3.480000px;}
.ws71{word-spacing:3.600000px;}
.wsad{word-spacing:3.660000px;}
.ws136{word-spacing:3.672000px;}
.wsaf{word-spacing:3.780000px;}
.ws12e{word-spacing:3.834000px;}
.ws23{word-spacing:3.840000px;}
.ws103{word-spacing:3.888000px;}
.wsa3{word-spacing:3.900000px;}
.ws64{word-spacing:3.960000px;}
.ws1e{word-spacing:4.020000px;}
.ws8a{word-spacing:4.080000px;}
.ws26{word-spacing:4.140000px;}
.ws3f{word-spacing:4.200000px;}
.ws3a{word-spacing:4.260000px;}
.ws47{word-spacing:4.320000px;}
.ws8e{word-spacing:4.380000px;}
.ws109{word-spacing:4.428000px;}
.ws8d{word-spacing:4.440000px;}
.ws104{word-spacing:4.590000px;}
.ws99{word-spacing:4.620000px;}
.ws12c{word-spacing:4.644000px;}
.wsea{word-spacing:4.680000px;}
.ws46{word-spacing:4.740000px;}
.wscf{word-spacing:4.800000px;}
.ws13c{word-spacing:4.860000px;}
.ws139{word-spacing:4.968000px;}
.ws5a{word-spacing:4.980000px;}
.wsbd{word-spacing:5.022000px;}
.ws7b{word-spacing:5.040000px;}
.wsf5{word-spacing:5.076000px;}
.wsd1{word-spacing:5.160000px;}
.ws133{word-spacing:5.238000px;}
.ws134{word-spacing:5.292000px;}
.ws5f{word-spacing:5.340000px;}
.ws12f{word-spacing:5.400000px;}
.wsf6{word-spacing:5.454000px;}
.ws123{word-spacing:5.562000px;}
.wsb7{word-spacing:5.700000px;}
.ws21{word-spacing:5.880000px;}
.ws110{word-spacing:5.994000px;}
.ws20{word-spacing:6.000000px;}
.wsc2{word-spacing:6.060000px;}
.ws10a{word-spacing:6.102000px;}
.wsb3{word-spacing:6.120000px;}
.ws6f{word-spacing:6.240000px;}
.ws12{word-spacing:6.264000px;}
.ws11{word-spacing:6.318000px;}
.ws13{word-spacing:6.372000px;}
.ws14{word-spacing:6.426000px;}
.wse8{word-spacing:6.480000px;}
.ws12b{word-spacing:6.534000px;}
.ws12a{word-spacing:6.696000px;}
.ws101{word-spacing:6.750000px;}
.ws98{word-spacing:6.780000px;}
.ws12d{word-spacing:6.804000px;}
.wsa1{word-spacing:6.960000px;}
.ws59{word-spacing:7.080000px;}
.ws9f{word-spacing:7.140000px;}
.ws132{word-spacing:7.182000px;}
.ws4a{word-spacing:7.200000px;}
.ws10d{word-spacing:7.236000px;}
.wse3{word-spacing:7.260000px;}
.ws127{word-spacing:7.290000px;}
.ws105{word-spacing:7.398000px;}
.ws45{word-spacing:7.440000px;}
.wse9{word-spacing:7.620000px;}
.wscc{word-spacing:7.800000px;}
.wsb6{word-spacing:7.860000px;}
.ws7d{word-spacing:7.920000px;}
.wsce{word-spacing:7.980000px;}
.ws7c{word-spacing:8.040000px;}
.wsa0{word-spacing:8.100000px;}
.wscd{word-spacing:8.400000px;}
.wsbc{word-spacing:8.586000px;}
.wsc4{word-spacing:8.640000px;}
.wsbb{word-spacing:8.694000px;}
.wsc7{word-spacing:8.700000px;}
.wse7{word-spacing:8.820000px;}
.ws124{word-spacing:8.856000px;}
.ws114{word-spacing:9.018000px;}
.ws4b{word-spacing:9.480000px;}
.ws96{word-spacing:9.600000px;}
.ws70{word-spacing:9.780000px;}
.wsf1{word-spacing:9.828000px;}
.ws35{word-spacing:9.840000px;}
.ws36{word-spacing:9.960000px;}
.ws13a{word-spacing:10.260000px;}
.wsdc{word-spacing:10.980000px;}
.wsba{word-spacing:11.100000px;}
.ws102{word-spacing:11.988000px;}
.wsd0{word-spacing:12.060000px;}
.ws27{word-spacing:12.180000px;}
.ws28{word-spacing:12.300000px;}
.ws11c{word-spacing:12.906000px;}
.ws106{word-spacing:12.960000px;}
.ws135{word-spacing:14.958000px;}
.ws11f{word-spacing:15.282000px;}
.ws1f{word-spacing:16.020000px;}
.ws113{word-spacing:16.416000px;}
.ws11e{word-spacing:17.982000px;}
.ws125{word-spacing:19.386000px;}
.wsd7{word-spacing:21.660000px;}
.ws119{word-spacing:21.978000px;}
.wseb{word-spacing:22.380000px;}
.ws1c{word-spacing:22.518000px;}
.ws1b{word-spacing:22.626000px;}
.ws13b{word-spacing:24.786000px;}
.ws50{word-spacing:360.699600px;}
.ws55{word-spacing:360.711600px;}
.ws54{word-spacing:360.735600px;}
.ws4f{word-spacing:502.569600px;}
.ws57{word-spacing:718.225800px;}
.ws51{word-spacing:760.960200px;}
.ws53{word-spacing:760.972200px;}
.ws52{word-spacing:761.008200px;}
.ws56{word-spacing:761.056200px;}
._19{margin-left:-15.049200px;}
._15{margin-left:-11.814000px;}
._5{margin-left:-9.406800px;}
._b{margin-left:-7.597200px;}
._7{margin-left:-5.971200px;}
._2{margin-left:-4.157400px;}
._3{margin-left:-2.560200px;}
._0{margin-left:-1.377000px;}
._1{width:1.147800px;}
._8{width:2.662200px;}
._9{width:4.230000px;}
._a{width:5.278200px;}
._6{width:6.288000px;}
._e{width:8.232000px;}
._10{width:9.622200px;}
._18{width:11.220000px;}
._f{width:13.236000px;}
._14{width:14.409000px;}
._1d{width:17.755200px;}
._4{width:36.624000px;}
._1c{width:43.103400px;}
._1b{width:53.760000px;}
._16{width:65.820000px;}
._17{width:70.860000px;}
._1a{width:75.060000px;}
._12{width:81.840000px;}
._11{width:87.480000px;}
._13{width:89.040000px;}
._c{width:594.146400px;}
._d{width:759.961800px;}
.fc6{color:rgb(124,22,26);}
.fc5{color:rgb(16,15,13);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.792400px;}
.fsb{font-size:30.173400px;}
.fs9{font-size:34.980000px;}
.fsc{font-size:37.240200px;}
.fsa{font-size:37.716600px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y134{bottom:2.417700px;}
.yed{bottom:2.448900px;}
.y1{bottom:68.124750px;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.036150px;}
.y6d{bottom:113.078550px;}
.ya4{bottom:113.078700px;}
.y18b{bottom:113.078850px;}
.y9e{bottom:116.678850px;}
.y2b{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.ya{bottom:132.275550px;}
.y6c{bottom:134.078550px;}
.ya3{bottom:134.078700px;}
.y18a{bottom:134.078850px;}
.y9d{bottom:135.883500px;}
.y2a{bottom:138.212550px;}
.y1a9{bottom:139.937100px;}
.y9{bottom:146.675550px;}
.y6b{bottom:155.078550px;}
.ya2{bottom:155.078700px;}
.y189{bottom:155.078850px;}
.y9c{bottom:155.088300px;}
.y29{bottom:159.212550px;}
.y8{bottom:161.075550px;}
.y1a8{bottom:169.441050px;}
.y9b{bottom:174.292950px;}
.y6a{bottom:176.078550px;}
.ya1{bottom:176.078700px;}
.y188{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y11a{bottom:189.123750px;}
.y9a{bottom:193.497600px;}
.y69{bottom:197.078550px;}
.ya0{bottom:197.078700px;}
.y187{bottom:197.078850px;}
.y39{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.y99{bottom:212.702400px;}
.y38{bottom:217.392600px;}
.y68{bottom:218.078550px;}
.y9f{bottom:218.078700px;}
.y186{bottom:218.078850px;}
.y119{bottom:221.421300px;}
.y26{bottom:222.212550px;}
.y98{bottom:231.907050px;}
.y1a6{bottom:232.441050px;}
.y37{bottom:235.392600px;}
.y67{bottom:239.078550px;}
.y196{bottom:239.078700px;}
.y185{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.y97{bottom:251.111850px;}
.y36{bottom:253.392600px;}
.y66{bottom:260.078550px;}
.y195{bottom:260.078700px;}
.y184{bottom:260.078850px;}
.y118{bottom:260.952150px;}
.y24{bottom:264.212550px;}
.y96{bottom:270.316500px;}
.y171{bottom:270.818100px;}
.y35{bottom:271.392600px;}
.y1a1{bottom:274.440900px;}
.y117{bottom:280.752150px;}
.y65{bottom:281.078550px;}
.y194{bottom:281.078700px;}
.y183{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y34{bottom:289.392600px;}
.y95{bottom:289.521300px;}
.y170{bottom:290.618100px;}
.y116{bottom:300.552150px;}
.y64{bottom:302.078550px;}
.y193{bottom:302.078700px;}
.y182{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y33{bottom:307.392600px;}
.y94{bottom:308.725950px;}
.y16f{bottom:310.418100px;}
.y115{bottom:320.352150px;}
.y63{bottom:323.078550px;}
.y192{bottom:323.078700px;}
.y181{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y93{bottom:327.930750px;}
.y16e{bottom:330.218100px;}
.y114{bottom:340.152150px;}
.y32{bottom:342.400500px;}
.y62{bottom:344.078550px;}
.y191{bottom:344.078700px;}
.y180{bottom:344.078850px;}
.y92{bottom:347.135400px;}
.y20{bottom:348.212550px;}
.y16d{bottom:350.018100px;}
.y1bc{bottom:357.513600px;}
.y31{bottom:360.400500px;}
.yb7{bottom:360.907500px;}
.y61{bottom:365.078550px;}
.y190{bottom:365.078700px;}
.y17f{bottom:365.078850px;}
.y91{bottom:366.340200px;}
.y1f{bottom:369.212550px;}
.y11c{bottom:370.773000px;}
.yc4{bottom:373.402001px;}
.ya5{bottom:377.500800px;}
.y30{bottom:378.400500px;}
.yeb{bottom:383.405912px;}
.y90{bottom:385.544850px;}
.y60{bottom:386.078550px;}
.y18f{bottom:386.078700px;}
.y17e{bottom:386.078850px;}
.y14a{bottom:386.811887px;}
.y11b{bottom:387.154650px;}
.y1bb{bottom:389.811150px;}
.y1e{bottom:390.212550px;}
.yab{bottom:393.438035px;}
.y152{bottom:400.427014px;}
.yc7{bottom:403.484881px;}
.y8f{bottom:404.749650px;}
.y5f{bottom:407.078550px;}
.y18e{bottom:407.078700px;}
.y17d{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y2f{bottom:413.408400px;}
.yb9{bottom:413.502450px;}
.y12e{bottom:414.025709px;}
.yb3{bottom:423.520915px;}
.y8e{bottom:423.954300px;}
.y15b{bottom:425.787795px;}
.y133{bottom:427.640836px;}
.y5e{bottom:428.078550px;}
.y18d{bottom:428.078700px;}
.y17c{bottom:428.078850px;}
.y2e{bottom:431.408400px;}
.y1c{bottom:432.212550px;}
.ydd{bottom:433.561646px;}
.y11f{bottom:441.270859px;}
.y161{bottom:441.957620px;}
.y8d{bottom:443.159100px;}
.yee{bottom:443.589900px;}
.y10e{bottom:447.263511px;}
.y5d{bottom:449.078550px;}
.y18c{bottom:449.078700px;}
.y17b{bottom:449.078850px;}
.y2d{bottom:449.408400px;}
.y156{bottom:452.593507px;}
.y1b{bottom:453.212550px;}
.yf3{bottom:453.622555px;}
.y120{bottom:454.885986px;}
.y10a{bottom:461.754287px;}
.y8c{bottom:462.363900px;}
.ye9{bottom:463.636982px;}
.y2c{bottom:467.408400px;}
.y122{bottom:468.501112px;}
.y5c{bottom:470.078550px;}
.y19c{bottom:470.078700px;}
.y17a{bottom:470.078850px;}
.yd8{bottom:473.683296px;}
.y101{bottom:476.252605px;}
.y166{bottom:479.399219px;}
.y8b{bottom:481.568550px;}
.y136{bottom:482.117775px;}
.y113{bottom:483.290551px;}
.yd3{bottom:483.708408px;}
.y1a{bottom:487.004250px;}
.y5b{bottom:491.078550px;}
.y19b{bottom:491.078700px;}
.y179{bottom:491.078850px;}
.y10c{bottom:491.535433px;}
.y169{bottom:492.373809px;}
.yf2{bottom:493.738091px;}
.y151{bottom:495.740350px;}
.y165{bottom:498.146086px;}
.y8a{bottom:500.773200px;}
.ycb{bottom:503.773719px;}
.y199{bottom:503.952900px;}
.y154{bottom:509.355477px;}
.y5a{bottom:512.078550px;}
.y19a{bottom:512.078700px;}
.y178{bottom:512.078850px;}
.yfe{bottom:512.611553px;}
.yb0{bottom:513.784641px;}
.y89{bottom:519.978000px;}
.y144{bottom:522.970604px;}
.y198{bottom:523.752900px;}
.yf1{bottom:523.820971px;}
.y16c{bottom:532.154111px;}
.y59{bottom:533.078550px;}
.y1a0{bottom:533.078700px;}
.y177{bottom:533.078850px;}
.ye2{bottom:533.850484px;}
.y112{bottom:536.433452px;}
.y137{bottom:536.585730px;}
.y88{bottom:539.182650px;}
.y197{bottom:543.552900px;}
.yc8{bottom:543.889255px;}
.yf6{bottom:543.954172px;}
.y12d{bottom:550.184425px;}
.yf0{bottom:553.911394px;}
.y58{bottom:554.078550px;}
.y1b8{bottom:554.078700px;}
.y176{bottom:554.078850px;}
.y87{bottom:558.387450px;}
.y19f{bottom:558.478350px;}
.y19{bottom:559.027950px;}
.y150{bottom:563.815984px;}
.ydf{bottom:563.940907px;}
.y160{bottom:564.501209px;}
.yb5{bottom:573.965487px;}
.yfa{bottom:574.044595px;}
.y159{bottom:574.712554px;}
.y57{bottom:575.078550px;}
.y1b7{bottom:575.078700px;}
.y175{bottom:575.078850px;}
.y128{bottom:577.422127px;}
.y86{bottom:577.592100px;}
.y19e{bottom:578.278350px;}
.y1a4{bottom:578.321850px;}
.y18{bottom:578.827950px;}
.yff{bottom:582.817511px;}
.yc9{bottom:584.004790px;}
.y1a7{bottom:589.441050px;}
.y129{bottom:591.037254px;}
.yef{bottom:594.026929px;}
.y56{bottom:596.078550px;}
.y174{bottom:596.078850px;}
.y19d{bottom:598.078350px;}
.y1a3{bottom:598.121850px;}
.y10b{bottom:601.932360px;}
.yd4{bottom:604.062558px;}
.y147{bottom:604.661364px;}
.y85{bottom:608.074050px;}
.y1b6{bottom:610.440900px;}
.yc2{bottom:614.102757px;}
.yb8{bottom:614.231250px;}
.y164{bottom:615.557935px;}
.y55{bottom:617.078550px;}
.y1a5{bottom:617.078850px;}
.y1a2{bottom:617.921850px;}
.y100{bottom:618.075129px;}
.y130{bottom:618.267507px;}
.y17{bottom:619.887750px;}
.yb2{bottom:624.106135px;}
.y125{bottom:631.890082px;}
.yaa{bottom:634.138790px;}
.y110{bottom:634.217898px;}
.y54{bottom:638.078550px;}
.y173{bottom:638.078850px;}
.y16{bottom:639.687750px;}
.ya9{bottom:644.171446px;}
.y12c{bottom:645.497761px;}
.y157{bottom:646.199418px;}
.y1ba{bottom:651.513600px;}
.ye6{bottom:654.189547px;}
.y53{bottom:659.078550px;}
.y1b5{bottom:659.078700px;}
.y84{bottom:659.078850px;}
.y146{bottom:659.129320px;}
.y15{bottom:659.487750px;}
.ycf{bottom:664.243404px;}
.y149{bottom:672.744446px;}
.ye4{bottom:674.254858px;}
.y14{bottom:679.287750px;}
.y52{bottom:680.078550px;}
.y1b4{bottom:680.078700px;}
.y83{bottom:680.078850px;}
.y1b9{bottom:683.811150px;}
.ybb{bottom:684.293628px;}
.y13c{bottom:686.367021px;}
.yf8{bottom:688.756318px;}
.ye0{bottom:694.320169px;}
.y13{bottom:699.087750px;}
.y135{bottom:699.974700px;}
.y51{bottom:701.078550px;}
.y82{bottom:701.078850px;}
.yf7{bottom:701.542297px;}
.yf4{bottom:704.355966px;}
.y1b3{bottom:706.529250px;}
.y15a{bottom:709.173104px;}
.yfc{bottom:711.160068px;}
.y148{bottom:713.589827px;}
.yea{bottom:714.370393px;}
.y12{bottom:718.887750px;}
.y50{bottom:722.078550px;}
.y81{bottom:722.078850px;}
.yb1{bottom:724.402516px;}
.y143{bottom:727.212402px;}
.yde{bottom:734.435704px;}
.y11{bottom:738.687750px;}
.y12b{bottom:740.811097px;}
.y4f{bottom:743.078550px;}
.y1b2{bottom:743.078700px;}
.y80{bottom:743.078850px;}
.y108{bottom:744.403611px;}
.yd5{bottom:744.474475px;}
.y13f{bottom:754.442655px;}
.ya7{bottom:754.492939px;}
.y10{bottom:758.487750px;}
.y4e{bottom:764.078550px;}
.y1b1{bottom:764.078700px;}
.y7f{bottom:764.078850px;}
.ye8{bottom:764.511041px;}
.y106{bottom:764.589616px;}
.y11d{bottom:764.913900px;}
.y155{bottom:768.057782px;}
.yf9{bottom:773.377619px;}
.yd1{bottom:774.557354px;}
.yd9{bottom:774.697950px;}
.y15e{bottom:776.399654px;}
.yf{bottom:778.287750px;}
.y172{bottom:778.441050px;}
.y127{bottom:781.663925px;}
.ycd{bottom:784.597553px;}
.y1b0{bottom:785.078700px;}
.y7e{bottom:785.078850px;}
.ye3{bottom:794.609007px;}
.y11e{bottom:795.286500px;}
.y10f{bottom:797.191975px;}
.ye{bottom:798.087750px;}
.y1c0{bottom:798.513600px;}
.y4d{bottom:799.440900px;}
.yca{bottom:804.647778px;}
.y1af{bottom:806.078700px;}
.y7d{bottom:806.078850px;}
.y140{bottom:808.910611px;}
.yac{bottom:814.666242px;}
.y13e{bottom:822.525737px;}
.ybd{bottom:824.705545px;}
.y7c{bottom:827.078850px;}
.y103{bottom:827.274854px;}
.y168{bottom:828.126709px;}
.yd{bottom:829.185300px;}
.y1bf{bottom:830.811000px;}
.y1ae{bottom:832.529250px;}
.ya8{bottom:834.724010px;}
.y13b{bottom:836.140864px;}
.y16b{bottom:836.811193px;}
.y10d{bottom:837.307510px;}
.ye5{bottom:844.749654px;}
.y4c{bottom:848.078700px;}
.y7b{bottom:848.078850px;}
.y14d{bottom:849.755991px;}
.y15f{bottom:850.441216px;}
.ye7{bottom:854.774767px;}
.y14f{bottom:863.371118px;}
.y15d{bottom:864.056343px;}
.yc1{bottom:864.828624px;}
.y4b{bottom:869.078700px;}
.y7a{bottom:869.078850px;}
.ybf{bottom:874.853736px;}
.y139{bottom:876.986245px;}
.yaf{bottom:884.864657px;}
.y4a{bottom:890.078700px;}
.y79{bottom:890.078850px;}
.y132{bottom:890.584940px;}
.yec{bottom:894.897845px;}
.yfd{bottom:899.366650px;}
.y141{bottom:904.223946px;}
.yc5{bottom:904.951702px;}
.y7{bottom:908.466750px;}
.y49{bottom:911.078700px;}
.y78{bottom:911.078850px;}
.yce{bottom:914.976815px;}
.y13d{bottom:917.839073px;}
.yf5{bottom:924.998954px;}
.y6{bottom:926.466750px;}
.y14e{bottom:931.454200px;}
.y48{bottom:932.078700px;}
.y77{bottom:932.078850px;}
.ydb{bottom:935.020924px;}
.y1ad{bottom:937.529250px;}
.y5{bottom:944.466750px;}
.yb4{bottom:945.045504px;}
.y131{bottom:945.052895px;}
.y47{bottom:953.078700px;}
.y76{bottom:953.078850px;}
.ycc{bottom:955.092350px;}
.y13a{bottom:958.684454px;}
.ybe{bottom:965.117462px;}
.y138{bottom:972.299580px;}
.y167{bottom:972.977357px;}
.y46{bottom:974.078700px;}
.y75{bottom:974.078850px;}
.yb6{bottom:975.135927px;}
.y4{bottom:979.474800px;}
.yc6{bottom:985.182773px;}
.y153{bottom:985.914707px;}
.y109{bottom:986.484800px;}
.y45{bottom:995.078700px;}
.y74{bottom:995.078850px;}
.yd2{bottom:995.200342px;}
.y121{bottom:999.528298px;}
.y1ac{bottom:1000.529250px;}
.ya6{bottom:1005.226350px;}
.y14c{bottom:1013.144961px;}
.y163{bottom:1013.830186px;}
.yd7{bottom:1015.265653px;}
.y44{bottom:1016.078700px;}
.y73{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y15c{bottom:1019.788666px;}
.yda{bottom:1025.284650px;}
.y142{bottom:1026.767536px;}
.y104{bottom:1027.860074px;}
.yc0{bottom:1035.323421px;}
.y43{bottom:1037.078700px;}
.y72{bottom:1037.078850px;}
.y12f{bottom:1040.366231px;}
.y162{bottom:1041.060440px;}
.yae{bottom:1045.334342px;}
.y16a{bottom:1045.819775px;}
.y2{bottom:1049.282550px;}
.y124{bottom:1053.988805px;}
.yd6{bottom:1055.381188px;}
.yfb{bottom:1055.446105px;}
.y42{bottom:1058.078700px;}
.y71{bottom:1058.078850px;}
.y1ab{bottom:1063.529250px;}
.ye1{bottom:1065.400185px;}
.y12a{bottom:1067.596484px;}
.y158{bottom:1068.298141px;}
.y102{bottom:1070.155638px;}
.yba{bottom:1075.431412px;}
.y41{bottom:1079.078700px;}
.y70{bottom:1079.078850px;}
.y145{bottom:1081.228043px;}
.yc3{bottom:1085.479155px;}
.y111{bottom:1088.040921px;}
.y1be{bottom:1092.029250px;}
.y126{bottom:1094.834186px;}
.yd0{bottom:1095.496723px;}
.y105{bottom:1099.152275px;}
.y40{bottom:1100.078700px;}
.y6f{bottom:1100.078850px;}
.ydc{bottom:1105.515721px;}
.y14b{bottom:1108.458296px;}
.yc{bottom:1109.815500px;}
.yad{bottom:1115.540300px;}
.y3f{bottom:1121.078700px;}
.y6e{bottom:1121.078850px;}
.y123{bottom:1122.071887px;}
.y1bd{bottom:1124.326800px;}
.y1aa{bottom:1125.451650px;}
.ybc{bottom:1125.579603px;}
.y107{bottom:1128.148913px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y3e{bottom:1178.691750px;}
.h1c{height:21.688867px;}
.h1d{height:21.718660px;}
.h16{height:21.966235px;}
.h17{height:21.996409px;}
.h1a{height:27.110866px;}
.h15{height:27.457685px;}
.h6{height:34.446094px;}
.h13{height:36.540019px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.h11{height:38.273438px;}
.h14{height:38.507812px;}
.h5{height:38.531250px;}
.hb{height:41.107522px;}
.h10{height:42.793945px;}
.h7{height:43.004883px;}
.hf{height:43.057617px;}
.h9{height:43.321289px;}
.ha{height:47.118164px;}
.h8{height:47.343750px;}
.hd{height:48.134766px;}
.h1e{height:50.176758px;}
.h19{height:52.078125px;}
.he{height:52.353516px;}
.h4{height:52.948242px;}
.hc{height:56.812500px;}
.h3{height:81.231445px;}
.h1b{height:771.304500px;}
.h18{height:781.170000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:705.099000px;}
.w2{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xc{left:108.286950px;}
.x2a{left:110.914500px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x36{left:275.472611px;}
.x1d{left:289.276452px;}
.x4{left:300.189000px;}
.xe{left:304.440900px;}
.x5{left:317.196900px;}
.x37{left:334.204800px;}
.x35{left:343.198184px;}
.xd{left:384.071250px;}
.xf{left:388.787550px;}
.x29{left:390.006450px;}
.x30{left:391.804485px;}
.x3{left:396.050700px;}
.x14{left:502.413806px;}
.x23{left:525.239983px;}
.x15{left:537.709141px;}
.x26{left:550.374425px;}
.x31{left:562.626658px;}
.x24{left:576.248116px;}
.x17{left:578.141497px;}
.x1c{left:582.629790px;}
.x2b{left:585.614100px;}
.x2c{left:586.959601px;}
.x12{left:589.356600px;}
.x20{left:608.209290px;}
.x1a{left:610.132844px;}
.x25{left:615.730010px;}
.x2d{left:619.068360px;}
.x2f{left:622.643448px;}
.x21{left:625.785295px;}
.x2e{left:630.367128px;}
.x18{left:638.163933px;}
.x13{left:639.665059px;}
.x22{left:643.715838px;}
.x19{left:645.609219px;}
.x32{left:648.026573px;}
.x33{left:649.575778px;}
.x34{left:651.251600px;}
.xa{left:652.471650px;}
.x1b{left:653.982337px;}
.x28{left:655.513638px;}
.x1e{left:658.908145px;}
.x16{left:660.929763px;}
.x27{left:664.196033px;}
.x9{left:672.118200px;}
.x1f{left:673.957128px;}
.x10{left:697.356600px;}
.x11{left:708.833700px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls1d{letter-spacing:-6.432000pt;}
.ls11{letter-spacing:-3.459883pt;}
.ls15{letter-spacing:-3.416195pt;}
.ls1c{letter-spacing:-2.880000pt;}
.ls17{letter-spacing:-1.959678pt;}
.lse{letter-spacing:-1.653333pt;}
.ls13{letter-spacing:-1.475144pt;}
.ls12{letter-spacing:-0.992370pt;}
.ls16{letter-spacing:-0.979839pt;}
.ls14{letter-spacing:-0.912000pt;}
.ls1a{letter-spacing:-0.906667pt;}
.lsa{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls1b{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsd{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.373120pt;}
.ls7{letter-spacing:-0.362667pt;}
.ls21{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.lsf{letter-spacing:0.017067pt;}
.ls24{letter-spacing:0.019733pt;}
.ls5{letter-spacing:0.022933pt;}
.ls28{letter-spacing:0.072000pt;}
.ls27{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.118933pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls29{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.066667pt;}
.ls10{letter-spacing:2.950288pt;}
.ls19{letter-spacing:4.050133pt;}
.ls3{letter-spacing:4.828267pt;}
.ls4{letter-spacing:4.899200pt;}
.ls20{letter-spacing:7.680000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws5{word-spacing:-15.936000pt;}
.wsec{word-spacing:-14.608000pt;}
.wsbf{word-spacing:-14.490667pt;}
.wsd5{word-spacing:-14.293333pt;}
.ws131{word-spacing:-13.760000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws30{word-spacing:-13.226667pt;}
.ws84{word-spacing:-13.173333pt;}
.ws6{word-spacing:-13.066667pt;}
.wsbe{word-spacing:-12.906667pt;}
.ws118{word-spacing:-12.864000pt;}
.ws32{word-spacing:-12.746667pt;}
.ws117{word-spacing:-12.720000pt;}
.ws115{word-spacing:-12.480000pt;}
.ws85{word-spacing:-12.266667pt;}
.wse0{word-spacing:-12.000000pt;}
.ws116{word-spacing:-11.976000pt;}
.ws9c{word-spacing:-11.952000pt;}
.ws6d{word-spacing:-11.904000pt;}
.wsd8{word-spacing:-11.786667pt;}
.wsed{word-spacing:-11.760000pt;}
.wse2{word-spacing:-11.733333pt;}
.ws31{word-spacing:-11.626667pt;}
.wse1{word-spacing:-11.253333pt;}
.wsd6{word-spacing:-11.146667pt;}
.ws7a{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.992000pt;}
.ws6c{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.464000pt;}
.ws9{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws8{word-spacing:-9.648000pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.301333pt;}
.ws9d{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.371200pt;}
.wsd9{word-spacing:-8.160000pt;}
.wsdf{word-spacing:-7.840000pt;}
.ws6b{word-spacing:-7.456182pt;}
.ws76{word-spacing:-7.362033pt;}
.ws2f{word-spacing:-7.338027pt;}
.wsd2{word-spacing:-7.146667pt;}
.ws68{word-spacing:-6.463813pt;}
.ws78{word-spacing:-6.382194pt;}
.wsd4{word-spacing:-6.186667pt;}
.ws6a{word-spacing:-5.981038pt;}
.wsdd{word-spacing:-5.546667pt;}
.ws9e{word-spacing:-5.520000pt;}
.ws79{word-spacing:-5.402355pt;}
.wsda{word-spacing:-4.640000pt;}
.ws29{word-spacing:-4.426667pt;}
.ws2a{word-spacing:-4.373333pt;}
.ws67{word-spacing:-3.996299pt;}
.ws75{word-spacing:-3.945838pt;}
.ws10{word-spacing:-3.696000pt;}
.ws60{word-spacing:-3.413333pt;}
.ws66{word-spacing:-3.306667pt;}
.ws2b{word-spacing:-3.146667pt;}
.ws3e{word-spacing:-2.986667pt;}
.wsb9{word-spacing:-2.773333pt;}
.wsc6{word-spacing:-2.560000pt;}
.ws24{word-spacing:-2.506667pt;}
.wsc3{word-spacing:-2.453333pt;}
.ws9a{word-spacing:-2.400000pt;}
.ws10c{word-spacing:-2.352000pt;}
.ws40{word-spacing:-2.346667pt;}
.wsc8{word-spacing:-2.293333pt;}
.ws62{word-spacing:-2.186667pt;}
.ws73{word-spacing:-2.160000pt;}
.ws80{word-spacing:-2.112000pt;}
.ws1d{word-spacing:-2.026667pt;}
.wsa2{word-spacing:-1.973333pt;}
.wsf9{word-spacing:-1.968000pt;}
.wsb8{word-spacing:-1.920000pt;}
.ws126{word-spacing:-1.872000pt;}
.wsa4{word-spacing:-1.866667pt;}
.ws6e{word-spacing:-1.813333pt;}
.wsf3{word-spacing:-1.776000pt;}
.ws128{word-spacing:-1.728000pt;}
.ws129{word-spacing:-1.680000pt;}
.wse5{word-spacing:-1.653333pt;}
.ws33{word-spacing:-1.600000pt;}
.wsfe{word-spacing:-1.584000pt;}
.wsc1{word-spacing:-1.546667pt;}
.wsa8{word-spacing:-1.493333pt;}
.ws1a{word-spacing:-1.488000pt;}
.wsb2{word-spacing:-1.392000pt;}
.wsd3{word-spacing:-1.386667pt;}
.wsaa{word-spacing:-1.344000pt;}
.ws111{word-spacing:-1.296000pt;}
.wsdb{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.226667pt;}
.wse6{word-spacing:-1.173333pt;}
.ws121{word-spacing:-1.152000pt;}
.ws92{word-spacing:-1.120000pt;}
.wsa6{word-spacing:-1.066667pt;}
.ws4c{word-spacing:-1.013333pt;}
.wsfc{word-spacing:-1.008000pt;}
.ws61{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.906667pt;}
.ws15{word-spacing:-0.864000pt;}
.ws5c{word-spacing:-0.853333pt;}
.ws120{word-spacing:-0.816000pt;}
.wse4{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.746667pt;}
.wsff{word-spacing:-0.720000pt;}
.ws5d{word-spacing:-0.693333pt;}
.ws19{word-spacing:-0.624000pt;}
.ws8b{word-spacing:-0.586667pt;}
.ws69{word-spacing:-0.536416pt;}
.ws86{word-spacing:-0.533333pt;}
.ws77{word-spacing:-0.529643pt;}
.ws108{word-spacing:-0.480000pt;}
.ws43{word-spacing:-0.426667pt;}
.ws18{word-spacing:-0.384000pt;}
.wsde{word-spacing:-0.373333pt;}
.ws83{word-spacing:-0.336000pt;}
.ws10e{word-spacing:-0.288000pt;}
.ws9b{word-spacing:-0.266667pt;}
.ws11b{word-spacing:-0.240000pt;}
.ws3d{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws137{word-spacing:-0.144000pt;}
.wsc9{word-spacing:-0.106667pt;}
.ws11d{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.048000pt;}
.ws2e{word-spacing:-0.042667pt;}
.wsd{word-spacing:0.000000pt;}
.wsfb{word-spacing:0.048000pt;}
.wsb0{word-spacing:0.053333pt;}
.wsab{word-spacing:0.096000pt;}
.ws49{word-spacing:0.106667pt;}
.wsb1{word-spacing:0.144000pt;}
.ws87{word-spacing:0.160000pt;}
.ws8c{word-spacing:0.213333pt;}
.wsf0{word-spacing:0.240000pt;}
.ws34{word-spacing:0.266667pt;}
.ws0{word-spacing:0.272000pt;}
.ws39{word-spacing:0.320000pt;}
.wsf2{word-spacing:0.336000pt;}
.ws122{word-spacing:0.384000pt;}
.wsa9{word-spacing:0.426667pt;}
.wsf8{word-spacing:0.432000pt;}
.ws41{word-spacing:0.480000pt;}
.ws37{word-spacing:0.533333pt;}
.ws5e{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws17{word-spacing:0.624000pt;}
.ws63{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.693333pt;}
.wsfd{word-spacing:0.720000pt;}
.ws16{word-spacing:0.768000pt;}
.ws93{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws89{word-spacing:0.853333pt;}
.ws94{word-spacing:0.906667pt;}
.ws82{word-spacing:0.912000pt;}
.wsb5{word-spacing:0.960000pt;}
.ws7f{word-spacing:0.979839pt;}
.ws58{word-spacing:1.013333pt;}
.ws81{word-spacing:1.056000pt;}
.ws65{word-spacing:1.066667pt;}
.ws112{word-spacing:1.104000pt;}
.ws3b{word-spacing:1.173333pt;}
.ws138{word-spacing:1.248000pt;}
.ws5b{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.333333pt;}
.wsfa{word-spacing:1.344000pt;}
.ws3c{word-spacing:1.440000pt;}
.ws11a{word-spacing:1.488000pt;}
.wsae{word-spacing:1.493333pt;}
.wsc0{word-spacing:1.546667pt;}
.ws72{word-spacing:1.632000pt;}
.ws4d{word-spacing:1.653333pt;}
.ws48{word-spacing:1.706667pt;}
.wsf4{word-spacing:1.824000pt;}
.ws8f{word-spacing:1.866667pt;}
.wsf7{word-spacing:1.920000pt;}
.ws7e{word-spacing:1.959678pt;}
.ws42{word-spacing:2.026667pt;}
.ws74{word-spacing:2.064000pt;}
.wsac{word-spacing:2.240000pt;}
.ws10b{word-spacing:2.256000pt;}
.ws97{word-spacing:2.293333pt;}
.wsee{word-spacing:2.304000pt;}
.wsc5{word-spacing:2.346667pt;}
.ws107{word-spacing:2.400000pt;}
.ws88{word-spacing:2.453333pt;}
.ws38{word-spacing:2.506667pt;}
.ws95{word-spacing:2.560000pt;}
.wsca{word-spacing:2.613333pt;}
.wscb{word-spacing:2.666667pt;}
.ws25{word-spacing:2.826667pt;}
.ws10f{word-spacing:2.880000pt;}
.wsef{word-spacing:2.928000pt;}
.ws130{word-spacing:2.976000pt;}
.ws91{word-spacing:2.986667pt;}
.ws90{word-spacing:3.040000pt;}
.ws100{word-spacing:3.072000pt;}
.ws4e{word-spacing:3.093333pt;}
.ws71{word-spacing:3.200000pt;}
.wsad{word-spacing:3.253333pt;}
.ws136{word-spacing:3.264000pt;}
.wsaf{word-spacing:3.360000pt;}
.ws12e{word-spacing:3.408000pt;}
.ws23{word-spacing:3.413333pt;}
.ws103{word-spacing:3.456000pt;}
.wsa3{word-spacing:3.466667pt;}
.ws64{word-spacing:3.520000pt;}
.ws1e{word-spacing:3.573333pt;}
.ws8a{word-spacing:3.626667pt;}
.ws26{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.733333pt;}
.ws3a{word-spacing:3.786667pt;}
.ws47{word-spacing:3.840000pt;}
.ws8e{word-spacing:3.893333pt;}
.ws109{word-spacing:3.936000pt;}
.ws8d{word-spacing:3.946667pt;}
.ws104{word-spacing:4.080000pt;}
.ws99{word-spacing:4.106667pt;}
.ws12c{word-spacing:4.128000pt;}
.wsea{word-spacing:4.160000pt;}
.ws46{word-spacing:4.213333pt;}
.wscf{word-spacing:4.266667pt;}
.ws13c{word-spacing:4.320000pt;}
.ws139{word-spacing:4.416000pt;}
.ws5a{word-spacing:4.426667pt;}
.wsbd{word-spacing:4.464000pt;}
.ws7b{word-spacing:4.480000pt;}
.wsf5{word-spacing:4.512000pt;}
.wsd1{word-spacing:4.586667pt;}
.ws133{word-spacing:4.656000pt;}
.ws134{word-spacing:4.704000pt;}
.ws5f{word-spacing:4.746667pt;}
.ws12f{word-spacing:4.800000pt;}
.wsf6{word-spacing:4.848000pt;}
.ws123{word-spacing:4.944000pt;}
.wsb7{word-spacing:5.066667pt;}
.ws21{word-spacing:5.226667pt;}
.ws110{word-spacing:5.328000pt;}
.ws20{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.386667pt;}
.ws10a{word-spacing:5.424000pt;}
.wsb3{word-spacing:5.440000pt;}
.ws6f{word-spacing:5.546667pt;}
.ws12{word-spacing:5.568000pt;}
.ws11{word-spacing:5.616000pt;}
.ws13{word-spacing:5.664000pt;}
.ws14{word-spacing:5.712000pt;}
.wse8{word-spacing:5.760000pt;}
.ws12b{word-spacing:5.808000pt;}
.ws12a{word-spacing:5.952000pt;}
.ws101{word-spacing:6.000000pt;}
.ws98{word-spacing:6.026667pt;}
.ws12d{word-spacing:6.048000pt;}
.wsa1{word-spacing:6.186667pt;}
.ws59{word-spacing:6.293333pt;}
.ws9f{word-spacing:6.346667pt;}
.ws132{word-spacing:6.384000pt;}
.ws4a{word-spacing:6.400000pt;}
.ws10d{word-spacing:6.432000pt;}
.wse3{word-spacing:6.453333pt;}
.ws127{word-spacing:6.480000pt;}
.ws105{word-spacing:6.576000pt;}
.ws45{word-spacing:6.613333pt;}
.wse9{word-spacing:6.773333pt;}
.wscc{word-spacing:6.933333pt;}
.wsb6{word-spacing:6.986667pt;}
.ws7d{word-spacing:7.040000pt;}
.wsce{word-spacing:7.093333pt;}
.ws7c{word-spacing:7.146667pt;}
.wsa0{word-spacing:7.200000pt;}
.wscd{word-spacing:7.466667pt;}
.wsbc{word-spacing:7.632000pt;}
.wsc4{word-spacing:7.680000pt;}
.wsbb{word-spacing:7.728000pt;}
.wsc7{word-spacing:7.733333pt;}
.wse7{word-spacing:7.840000pt;}
.ws124{word-spacing:7.872000pt;}
.ws114{word-spacing:8.016000pt;}
.ws4b{word-spacing:8.426667pt;}
.ws96{word-spacing:8.533333pt;}
.ws70{word-spacing:8.693333pt;}
.wsf1{word-spacing:8.736000pt;}
.ws35{word-spacing:8.746667pt;}
.ws36{word-spacing:8.853333pt;}
.ws13a{word-spacing:9.120000pt;}
.wsdc{word-spacing:9.760000pt;}
.wsba{word-spacing:9.866667pt;}
.ws102{word-spacing:10.656000pt;}
.wsd0{word-spacing:10.720000pt;}
.ws27{word-spacing:10.826667pt;}
.ws28{word-spacing:10.933333pt;}
.ws11c{word-spacing:11.472000pt;}
.ws106{word-spacing:11.520000pt;}
.ws135{word-spacing:13.296000pt;}
.ws11f{word-spacing:13.584000pt;}
.ws1f{word-spacing:14.240000pt;}
.ws113{word-spacing:14.592000pt;}
.ws11e{word-spacing:15.984000pt;}
.ws125{word-spacing:17.232000pt;}
.wsd7{word-spacing:19.253333pt;}
.ws119{word-spacing:19.536000pt;}
.wseb{word-spacing:19.893333pt;}
.ws1c{word-spacing:20.016000pt;}
.ws1b{word-spacing:20.112000pt;}
.ws13b{word-spacing:22.032000pt;}
.ws50{word-spacing:320.621867pt;}
.ws55{word-spacing:320.632533pt;}
.ws54{word-spacing:320.653867pt;}
.ws4f{word-spacing:446.728533pt;}
.ws57{word-spacing:638.422933pt;}
.ws51{word-spacing:676.409067pt;}
.ws53{word-spacing:676.419733pt;}
.ws52{word-spacing:676.451733pt;}
.ws56{word-spacing:676.494400pt;}
._19{margin-left:-13.377067pt;}
._15{margin-left:-10.501333pt;}
._5{margin-left:-8.361600pt;}
._b{margin-left:-6.753067pt;}
._7{margin-left:-5.307733pt;}
._2{margin-left:-3.695467pt;}
._3{margin-left:-2.275733pt;}
._0{margin-left:-1.224000pt;}
._1{width:1.020267pt;}
._8{width:2.366400pt;}
._9{width:3.760000pt;}
._a{width:4.691733pt;}
._6{width:5.589333pt;}
._e{width:7.317333pt;}
._10{width:8.553067pt;}
._18{width:9.973333pt;}
._f{width:11.765333pt;}
._14{width:12.808000pt;}
._1d{width:15.782400pt;}
._4{width:32.554667pt;}
._1c{width:38.314133pt;}
._1b{width:47.786667pt;}
._16{width:58.506667pt;}
._17{width:62.986667pt;}
._1a{width:66.720000pt;}
._12{width:72.746667pt;}
._11{width:77.760000pt;}
._13{width:79.146667pt;}
._c{width:528.130133pt;}
._d{width:675.521600pt;}
.fsd{font-size:26.482133pt;}
.fsb{font-size:26.820800pt;}
.fs9{font-size:31.093333pt;}
.fsc{font-size:33.102400pt;}
.fsa{font-size:33.525867pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:2.149067pt;}
.yed{bottom:2.176800pt;}
.y1{bottom:60.555333pt;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.698800pt;}
.y6d{bottom:100.514267pt;}
.ya4{bottom:100.514400pt;}
.y18b{bottom:100.514533pt;}
.y9e{bottom:103.714533pt;}
.y2b{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.ya{bottom:117.578267pt;}
.y6c{bottom:119.180933pt;}
.ya3{bottom:119.181067pt;}
.y18a{bottom:119.181200pt;}
.y9d{bottom:120.785333pt;}
.y2a{bottom:122.855600pt;}
.y1a9{bottom:124.388533pt;}
.y9{bottom:130.378267pt;}
.y6b{bottom:137.847600pt;}
.ya2{bottom:137.847733pt;}
.y189{bottom:137.847867pt;}
.y9c{bottom:137.856267pt;}
.y29{bottom:141.522267pt;}
.y8{bottom:143.178267pt;}
.y1a8{bottom:150.614267pt;}
.y9b{bottom:154.927067pt;}
.y6a{bottom:156.514267pt;}
.ya1{bottom:156.514400pt;}
.y188{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y11a{bottom:168.110000pt;}
.y9a{bottom:171.997867pt;}
.y69{bottom:175.180933pt;}
.ya0{bottom:175.181067pt;}
.y187{bottom:175.181200pt;}
.y39{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.y99{bottom:189.068800pt;}
.y38{bottom:193.237867pt;}
.y68{bottom:193.847600pt;}
.y9f{bottom:193.847733pt;}
.y186{bottom:193.847867pt;}
.y119{bottom:196.818933pt;}
.y26{bottom:197.522267pt;}
.y98{bottom:206.139600pt;}
.y1a6{bottom:206.614267pt;}
.y37{bottom:209.237867pt;}
.y67{bottom:212.514267pt;}
.y196{bottom:212.514400pt;}
.y185{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.y97{bottom:223.210533pt;}
.y36{bottom:225.237867pt;}
.y66{bottom:231.180933pt;}
.y195{bottom:231.181067pt;}
.y184{bottom:231.181200pt;}
.y118{bottom:231.957467pt;}
.y24{bottom:234.855600pt;}
.y96{bottom:240.281333pt;}
.y171{bottom:240.727200pt;}
.y35{bottom:241.237867pt;}
.y1a1{bottom:243.947467pt;}
.y117{bottom:249.557467pt;}
.y65{bottom:249.847600pt;}
.y194{bottom:249.847733pt;}
.y183{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y34{bottom:257.237867pt;}
.y95{bottom:257.352267pt;}
.y170{bottom:258.327200pt;}
.y116{bottom:267.157467pt;}
.y64{bottom:268.514267pt;}
.y193{bottom:268.514400pt;}
.y182{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y33{bottom:273.237867pt;}
.y94{bottom:274.423067pt;}
.y16f{bottom:275.927200pt;}
.y115{bottom:284.757467pt;}
.y63{bottom:287.180933pt;}
.y192{bottom:287.181067pt;}
.y181{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y93{bottom:291.494000pt;}
.y16e{bottom:293.527200pt;}
.y114{bottom:302.357467pt;}
.y32{bottom:304.356000pt;}
.y62{bottom:305.847600pt;}
.y191{bottom:305.847733pt;}
.y180{bottom:305.847867pt;}
.y92{bottom:308.564800pt;}
.y20{bottom:309.522267pt;}
.y16d{bottom:311.127200pt;}
.y1bc{bottom:317.789867pt;}
.y31{bottom:320.356000pt;}
.yb7{bottom:320.806667pt;}
.y61{bottom:324.514267pt;}
.y190{bottom:324.514400pt;}
.y17f{bottom:324.514533pt;}
.y91{bottom:325.635733pt;}
.y1f{bottom:328.188933pt;}
.y11c{bottom:329.576000pt;}
.yc4{bottom:331.912890pt;}
.ya5{bottom:335.556267pt;}
.y30{bottom:336.356000pt;}
.yeb{bottom:340.805255pt;}
.y90{bottom:342.706533pt;}
.y60{bottom:343.180933pt;}
.y18f{bottom:343.181067pt;}
.y17e{bottom:343.181200pt;}
.y14a{bottom:343.832789pt;}
.y11b{bottom:344.137467pt;}
.y1bb{bottom:346.498800pt;}
.y1e{bottom:346.855600pt;}
.yab{bottom:349.722698pt;}
.y152{bottom:355.935124pt;}
.yc7{bottom:358.653228pt;}
.y8f{bottom:359.777467pt;}
.y5f{bottom:361.847600pt;}
.y18e{bottom:361.847733pt;}
.y17d{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y2f{bottom:367.474133pt;}
.yb9{bottom:367.557733pt;}
.y12e{bottom:368.022853pt;}
.yb3{bottom:376.463035pt;}
.y8e{bottom:376.848267pt;}
.y15b{bottom:378.478040pt;}
.y133{bottom:380.125187pt;}
.y5e{bottom:380.514267pt;}
.y18d{bottom:380.514400pt;}
.y17c{bottom:380.514533pt;}
.y2e{bottom:383.474133pt;}
.y1c{bottom:384.188933pt;}
.ydd{bottom:385.388130pt;}
.y11f{bottom:392.240763pt;}
.y161{bottom:392.851218pt;}
.y8d{bottom:393.919200pt;}
.yee{bottom:394.302133pt;}
.y10e{bottom:397.567566pt;}
.y5d{bottom:399.180933pt;}
.y18c{bottom:399.181067pt;}
.y17b{bottom:399.181200pt;}
.y2d{bottom:399.474133pt;}
.y156{bottom:402.305339pt;}
.y1b{bottom:402.855600pt;}
.yf3{bottom:403.220049pt;}
.y120{bottom:404.343098pt;}
.y10a{bottom:410.448255pt;}
.y8c{bottom:410.990133pt;}
.ye9{bottom:412.121762pt;}
.y2c{bottom:415.474133pt;}
.y122{bottom:416.445433pt;}
.y5c{bottom:417.847600pt;}
.y19c{bottom:417.847733pt;}
.y17a{bottom:417.847867pt;}
.yd8{bottom:421.051819pt;}
.y101{bottom:423.335649pt;}
.y166{bottom:426.132639pt;}
.y8b{bottom:428.060933pt;}
.y136{bottom:428.549133pt;}
.y113{bottom:429.591601pt;}
.yd3{bottom:429.963030pt;}
.y1a{bottom:432.892667pt;}
.y5b{bottom:436.514267pt;}
.y19b{bottom:436.514400pt;}
.y179{bottom:436.514533pt;}
.y10c{bottom:436.920385pt;}
.y169{bottom:437.665608pt;}
.yf2{bottom:438.878303pt;}
.y151{bottom:440.658089pt;}
.y165{bottom:442.796521pt;}
.y8a{bottom:445.131733pt;}
.ycb{bottom:447.798862pt;}
.y199{bottom:447.958133pt;}
.y154{bottom:452.760424pt;}
.y5a{bottom:455.180933pt;}
.y19a{bottom:455.181067pt;}
.y178{bottom:455.181200pt;}
.yfe{bottom:455.654713pt;}
.yb0{bottom:456.697459pt;}
.y89{bottom:462.202667pt;}
.y144{bottom:464.862759pt;}
.y198{bottom:465.558133pt;}
.yf1{bottom:465.618641pt;}
.y16c{bottom:473.025876pt;}
.y59{bottom:473.847600pt;}
.y1a0{bottom:473.847733pt;}
.y177{bottom:473.847867pt;}
.ye2{bottom:474.533764pt;}
.y112{bottom:476.829735pt;}
.y137{bottom:476.965094pt;}
.y88{bottom:479.273467pt;}
.y197{bottom:483.158133pt;}
.yc8{bottom:483.457115pt;}
.yf6{bottom:483.514819pt;}
.y12d{bottom:489.052822pt;}
.yf0{bottom:492.365683pt;}
.y58{bottom:492.514267pt;}
.y1b8{bottom:492.514400pt;}
.y176{bottom:492.514533pt;}
.y87{bottom:496.344400pt;}
.y19f{bottom:496.425200pt;}
.y19{bottom:496.913733pt;}
.y150{bottom:501.169763pt;}
.ydf{bottom:501.280807pt;}
.y160{bottom:501.778853pt;}
.yb5{bottom:510.191544pt;}
.yfa{bottom:510.261862pt;}
.y159{bottom:510.855604pt;}
.y57{bottom:511.180933pt;}
.y1b7{bottom:511.181067pt;}
.y175{bottom:511.181200pt;}
.y128{bottom:513.264113pt;}
.y86{bottom:513.415200pt;}
.y19e{bottom:514.025200pt;}
.y1a4{bottom:514.063867pt;}
.y18{bottom:514.513733pt;}
.yff{bottom:518.060010pt;}
.yc9{bottom:519.115369pt;}
.y1a7{bottom:523.947600pt;}
.y129{bottom:525.366448pt;}
.yef{bottom:528.023937pt;}
.y56{bottom:529.847600pt;}
.y174{bottom:529.847867pt;}
.y19d{bottom:531.625200pt;}
.y1a3{bottom:531.663867pt;}
.y10b{bottom:535.050987pt;}
.yd4{bottom:536.944496pt;}
.y147{bottom:537.476768pt;}
.y85{bottom:540.510267pt;}
.y1b6{bottom:542.614133pt;}
.yc2{bottom:545.869117pt;}
.yb8{bottom:545.983333pt;}
.y164{bottom:547.162609pt;}
.y55{bottom:548.514267pt;}
.y1a5{bottom:548.514533pt;}
.y1a2{bottom:549.263867pt;}
.y100{bottom:549.400115pt;}
.y130{bottom:549.571118pt;}
.y17{bottom:551.011333pt;}
.yb2{bottom:554.761009pt;}
.y125{bottom:561.680073pt;}
.yaa{bottom:563.678925pt;}
.y110{bottom:563.749243pt;}
.y54{bottom:567.180933pt;}
.y173{bottom:567.181200pt;}
.y16{bottom:568.611333pt;}
.ya9{bottom:572.596841pt;}
.y12c{bottom:573.775787pt;}
.y157{bottom:574.399483pt;}
.y1ba{bottom:579.123200pt;}
.ye6{bottom:581.501819pt;}
.y53{bottom:585.847600pt;}
.y1b5{bottom:585.847733pt;}
.y84{bottom:585.847867pt;}
.y146{bottom:585.892729pt;}
.y15{bottom:586.211333pt;}
.ycf{bottom:590.438581pt;}
.y149{bottom:597.995063pt;}
.ye4{bottom:599.337651pt;}
.y14{bottom:603.811333pt;}
.y52{bottom:604.514267pt;}
.y1b4{bottom:604.514400pt;}
.y83{bottom:604.514533pt;}
.y1b9{bottom:607.832133pt;}
.ybb{bottom:608.261003pt;}
.y13c{bottom:610.104019pt;}
.yf8{bottom:612.227839pt;}
.ye0{bottom:617.173483pt;}
.y13{bottom:621.411333pt;}
.y135{bottom:622.199733pt;}
.y51{bottom:623.180933pt;}
.y82{bottom:623.181200pt;}
.yf7{bottom:623.593153pt;}
.yf4{bottom:626.094192pt;}
.y1b3{bottom:628.026000pt;}
.y15a{bottom:630.376092pt;}
.yfc{bottom:632.142283pt;}
.y148{bottom:634.302068pt;}
.yea{bottom:634.995905pt;}
.y12{bottom:639.011333pt;}
.y50{bottom:641.847600pt;}
.y81{bottom:641.847867pt;}
.yb1{bottom:643.913348pt;}
.y143{bottom:646.411024pt;}
.yde{bottom:652.831737pt;}
.y11{bottom:656.611333pt;}
.y12b{bottom:658.498753pt;}
.y4f{bottom:660.514267pt;}
.y1b2{bottom:660.514400pt;}
.y80{bottom:660.514533pt;}
.y108{bottom:661.692099pt;}
.yd5{bottom:661.755089pt;}
.y13f{bottom:670.615694pt;}
.ya7{bottom:670.660391pt;}
.y10{bottom:674.211333pt;}
.y4e{bottom:679.180933pt;}
.y1b1{bottom:679.181067pt;}
.y7f{bottom:679.181200pt;}
.ye8{bottom:679.565369pt;}
.y106{bottom:679.635214pt;}
.y11d{bottom:679.923467pt;}
.y155{bottom:682.718029pt;}
.yf9{bottom:687.446772pt;}
.yd1{bottom:688.495426pt;}
.yd9{bottom:688.620400pt;}
.y15e{bottom:690.133026pt;}
.yf{bottom:691.811333pt;}
.y172{bottom:691.947600pt;}
.y127{bottom:694.812378pt;}
.ycd{bottom:697.420047pt;}
.y1b0{bottom:697.847733pt;}
.y7e{bottom:697.847867pt;}
.ye3{bottom:706.319117pt;}
.y11e{bottom:706.921333pt;}
.y10f{bottom:708.615089pt;}
.ye{bottom:709.411333pt;}
.y1c0{bottom:709.789867pt;}
.y4d{bottom:710.614133pt;}
.yca{bottom:715.242469pt;}
.y1af{bottom:716.514400pt;}
.y7d{bottom:716.514533pt;}
.y140{bottom:719.031654pt;}
.yac{bottom:724.147771pt;}
.y13e{bottom:731.133989pt;}
.ybd{bottom:733.071596pt;}
.y7c{bottom:735.181200pt;}
.y103{bottom:735.355426pt;}
.y168{bottom:736.112630pt;}
.yd{bottom:737.053600pt;}
.y1bf{bottom:738.498667pt;}
.y1ae{bottom:740.026000pt;}
.ya8{bottom:741.976898pt;}
.y13b{bottom:743.236324pt;}
.y16b{bottom:743.832172pt;}
.y10d{bottom:744.273342pt;}
.ye5{bottom:750.888582pt;}
.y4c{bottom:753.847733pt;}
.y7b{bottom:753.847867pt;}
.y14d{bottom:755.338659pt;}
.y15f{bottom:755.947748pt;}
.ye7{bottom:759.799793pt;}
.y14f{bottom:767.440994pt;}
.y15d{bottom:768.050083pt;}
.yc1{bottom:768.736555pt;}
.y4b{bottom:772.514400pt;}
.y7a{bottom:772.514533pt;}
.ybf{bottom:777.647765pt;}
.y139{bottom:779.543329pt;}
.yaf{bottom:786.546362pt;}
.y4a{bottom:791.181067pt;}
.y79{bottom:791.181200pt;}
.y132{bottom:791.631057pt;}
.yec{bottom:795.464751pt;}
.yfd{bottom:799.437023pt;}
.y141{bottom:803.754619pt;}
.yc5{bottom:804.401513pt;}
.y7{bottom:807.526000pt;}
.y49{bottom:809.847733pt;}
.y78{bottom:809.847867pt;}
.yce{bottom:813.312724pt;}
.y13d{bottom:815.856954pt;}
.yf5{bottom:822.221292pt;}
.y6{bottom:823.526000pt;}
.y14e{bottom:827.959289pt;}
.y48{bottom:828.514400pt;}
.y77{bottom:828.514533pt;}
.ydb{bottom:831.129710pt;}
.y1ad{bottom:833.359333pt;}
.y5{bottom:839.526000pt;}
.yb4{bottom:840.040448pt;}
.y131{bottom:840.047018pt;}
.y47{bottom:847.181067pt;}
.y76{bottom:847.181200pt;}
.ycc{bottom:848.970978pt;}
.y13a{bottom:852.163959pt;}
.ybe{bottom:857.882189pt;}
.y138{bottom:864.266294pt;}
.y167{bottom:864.868762pt;}
.y46{bottom:865.847733pt;}
.y75{bottom:865.847867pt;}
.yb6{bottom:866.787491pt;}
.y4{bottom:870.644267pt;}
.yc6{bottom:875.718021pt;}
.y153{bottom:876.368629pt;}
.y109{bottom:876.875377pt;}
.y45{bottom:884.514400pt;}
.y74{bottom:884.514533pt;}
.yd2{bottom:884.622526pt;}
.y121{bottom:888.469598pt;}
.y1ac{bottom:889.359333pt;}
.ya6{bottom:893.534533pt;}
.y14c{bottom:900.573298pt;}
.y163{bottom:901.182387pt;}
.yd7{bottom:902.458358pt;}
.y44{bottom:903.181067pt;}
.y73{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y15c{bottom:906.478814pt;}
.yda{bottom:911.364133pt;}
.y142{bottom:912.682254pt;}
.y104{bottom:913.653399pt;}
.yc0{bottom:920.287485pt;}
.y43{bottom:921.847733pt;}
.y72{bottom:921.847867pt;}
.y12f{bottom:924.769983pt;}
.y162{bottom:925.387057pt;}
.yae{bottom:929.186082pt;}
.y16a{bottom:929.617578pt;}
.y2{bottom:932.695600pt;}
.y124{bottom:936.878938pt;}
.yd6{bottom:938.116612pt;}
.yfb{bottom:938.174316pt;}
.y42{bottom:940.514400pt;}
.y71{bottom:940.514533pt;}
.y1ab{bottom:945.359333pt;}
.ye1{bottom:947.022387pt;}
.y12a{bottom:948.974653pt;}
.y158{bottom:949.598348pt;}
.y102{bottom:951.249456pt;}
.yba{bottom:955.939033pt;}
.y41{bottom:959.181067pt;}
.y70{bottom:959.181200pt;}
.y145{bottom:961.091594pt;}
.yc3{bottom:964.870360pt;}
.y111{bottom:967.147485pt;}
.y1be{bottom:970.692667pt;}
.y126{bottom:973.185943pt;}
.yd0{bottom:973.774865pt;}
.y105{bottom:977.024245pt;}
.y40{bottom:977.847733pt;}
.y6f{bottom:977.847867pt;}
.ydc{bottom:982.680641pt;}
.y14b{bottom:985.296263pt;}
.yc{bottom:986.502667pt;}
.yad{bottom:991.591378pt;}
.y3f{bottom:996.514400pt;}
.y6e{bottom:996.514533pt;}
.y123{bottom:997.397233pt;}
.y1bd{bottom:999.401600pt;}
.y1aa{bottom:1000.401467pt;}
.ybc{bottom:1000.515203pt;}
.y107{bottom:1002.799033pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y3e{bottom:1047.726000pt;}
.h1c{height:19.278993pt;}
.h1d{height:19.305475pt;}
.h16{height:19.525542pt;}
.h17{height:19.552363pt;}
.h1a{height:24.098547pt;}
.h15{height:24.406831pt;}
.h6{height:30.618750pt;}
.h13{height:32.480017pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.h11{height:34.020833pt;}
.h14{height:34.229167pt;}
.h5{height:34.250000pt;}
.hb{height:36.540019pt;}
.h10{height:38.039062pt;}
.h7{height:38.226562pt;}
.hf{height:38.273438pt;}
.h9{height:38.507812pt;}
.ha{height:41.882812pt;}
.h8{height:42.083333pt;}
.hd{height:42.786458pt;}
.h1e{height:44.601562pt;}
.h19{height:46.291667pt;}
.he{height:46.536458pt;}
.h4{height:47.065104pt;}
.hc{height:50.500000pt;}
.h3{height:72.205729pt;}
.h1b{height:685.604000pt;}
.h18{height:694.373333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:626.754667pt;}
.w2{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xc{left:96.255067pt;}
.x2a{left:98.590667pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x36{left:244.864543pt;}
.x1d{left:257.134624pt;}
.x4{left:266.834667pt;}
.xe{left:270.614133pt;}
.x5{left:281.952800pt;}
.x37{left:297.070933pt;}
.x35{left:305.065053pt;}
.xd{left:341.396667pt;}
.xf{left:345.588933pt;}
.x29{left:346.672400pt;}
.x30{left:348.270653pt;}
.x3{left:352.045067pt;}
.x14{left:446.590050pt;}
.x23{left:466.879985pt;}
.x15{left:477.963681pt;}
.x26{left:489.221711pt;}
.x31{left:500.112585pt;}
.x24{left:512.220547pt;}
.x17{left:513.903553pt;}
.x1c{left:517.893147pt;}
.x2b{left:520.545867pt;}
.x2c{left:521.741867pt;}
.x12{left:523.872533pt;}
.x20{left:540.630480pt;}
.x1a{left:542.340306pt;}
.x25{left:547.315564pt;}
.x2d{left:550.282987pt;}
.x2f{left:553.460843pt;}
.x21{left:556.253596pt;}
.x2e{left:560.326336pt;}
.x18{left:567.256829pt;}
.x13{left:568.591164pt;}
.x22{left:572.191856pt;}
.x19{left:573.874861pt;}
.x32{left:576.023620pt;}
.x33{left:577.400691pt;}
.x34{left:578.890311pt;}
.xa{left:579.974800pt;}
.x1b{left:581.317633pt;}
.x28{left:582.678789pt;}
.x1e{left:585.696129pt;}
.x16{left:587.493123pt;}
.x27{left:590.396474pt;}
.x9{left:597.438400pt;}
.x1f{left:599.073003pt;}
.x10{left:619.872533pt;}
.x11{left:630.074400pt;}
.x1{left:712.311867pt;}
}




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