
    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_f98d450c376b95dc152d8e59.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_c8b183b3a6878e592d08ac26.woff')format("woff");}.ff2{font-family:ff2;line-height:1.102000;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_4ac69dc11e23ea5a21a53464.woff')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_3e8022b89117cb396d284e4c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_f3c96d8ae348935ef1d02aaa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_3f56e6b607704c3979a26305.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_68cd38b4251596c207a5f00d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730000;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_5727dafd79cea7947f6d1d37.woff')format("woff");}.ff8{font-family:ff8;line-height:0.954102;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_babb9a2f902da603d2af71ff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937000;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_f64483325f1005e9dd4c3c90.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941000;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:15.984000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.ls17{letter-spacing:-4.608000px;}
.ls4{letter-spacing:-2.520000px;}
.lsb{letter-spacing:-1.500000px;}
.lsa{letter-spacing:-1.140000px;}
.lse{letter-spacing:-1.020000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.982800px;}
.ls1b{letter-spacing:-0.912000px;}
.ls14{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.810000px;}
.ls1a{letter-spacing:-0.768000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.624000px;}
.ls7{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.384000px;}
.ls20{letter-spacing:-0.378000px;}
.lsd{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.336000px;}
.lsc{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.020544px;}
.ls1{letter-spacing:0.020976px;}
.ls3{letter-spacing:0.021000px;}
.lsf{letter-spacing:0.240000px;}
.ls11{letter-spacing:11.614800px;}
.ls0{letter-spacing:43.199928px;}
.ls12{letter-spacing:98.369664px;}
.ls1e{letter-spacing:234.481200px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws1d{word-spacing:-20.748000px;}
.ws7{word-spacing:-17.784000px;}
.ws12f{word-spacing:-14.820000px;}
.ws1f{word-spacing:-13.620000px;}
.ws3{word-spacing:-13.338000px;}
.ws5{word-spacing:-12.798000px;}
.ws1e{word-spacing:-12.480000px;}
.ws75{word-spacing:-12.258000px;}
.ws8{word-spacing:-11.718000px;}
.ws6{word-spacing:-11.448000px;}
.ws1{word-spacing:-11.214000px;}
.ws0{word-spacing:-11.207592px;}
.ws2{word-spacing:-10.896000px;}
.wsb7{word-spacing:-10.752000px;}
.wsb2{word-spacing:-10.176000px;}
.wscb{word-spacing:-9.408000px;}
.ws5a{word-spacing:-4.320000px;}
.ws85{word-spacing:-3.900000px;}
.ws65{word-spacing:-3.660000px;}
.wsfd{word-spacing:-3.480000px;}
.ws8f{word-spacing:-3.240000px;}
.wsa7{word-spacing:-3.060000px;}
.ws101{word-spacing:-2.880000px;}
.ws5b{word-spacing:-2.820000px;}
.wsd7{word-spacing:-2.700000px;}
.ws86{word-spacing:-2.640000px;}
.ws89{word-spacing:-2.580000px;}
.ws17a{word-spacing:-2.496000px;}
.wsc{word-spacing:-2.430000px;}
.ws12c{word-spacing:-2.400000px;}
.ws69{word-spacing:-2.340000px;}
.ws117{word-spacing:-2.280000px;}
.ws9e{word-spacing:-2.220000px;}
.ws15e{word-spacing:-2.160000px;}
.ws103{word-spacing:-2.100000px;}
.wsa0{word-spacing:-2.040000px;}
.wsfe{word-spacing:-1.980000px;}
.ws18b{word-spacing:-1.872000px;}
.ws4a{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.782000px;}
.ws14f{word-spacing:-1.776000px;}
.wsa6{word-spacing:-1.740000px;}
.ws67{word-spacing:-1.560000px;}
.ws6f{word-spacing:-1.500000px;}
.ws167{word-spacing:-1.392000px;}
.ws114{word-spacing:-1.380000px;}
.ws13{word-spacing:-1.350000px;}
.ws180{word-spacing:-1.344000px;}
.ws134{word-spacing:-1.296000px;}
.ws144{word-spacing:-1.242000px;}
.ws5e{word-spacing:-1.200000px;}
.ws9b{word-spacing:-1.080000px;}
.ws1a{word-spacing:-1.058400px;}
.ws11a{word-spacing:-1.020000px;}
.ws18c{word-spacing:-1.008000px;}
.ws25{word-spacing:-0.960000px;}
.ws1c{word-spacing:-0.936000px;}
.ws20{word-spacing:-0.900000px;}
.wsd6{word-spacing:-0.840000px;}
.ws123{word-spacing:-0.780000px;}
.ws14a{word-spacing:-0.768000px;}
.ws10f{word-spacing:-0.756000px;}
.ws184{word-spacing:-0.720000px;}
.ws174{word-spacing:-0.672000px;}
.wsf9{word-spacing:-0.660000px;}
.ws80{word-spacing:-0.600000px;}
.ws18a{word-spacing:-0.576000px;}
.ws109{word-spacing:-0.540000px;}
.ws18{word-spacing:-0.491400px;}
.ws9a{word-spacing:-0.480000px;}
.ws6b{word-spacing:-0.420000px;}
.ws8b{word-spacing:-0.300000px;}
.ws53{word-spacing:-0.240000px;}
.ws88{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.162000px;}
.ws175{word-spacing:-0.144000px;}
.ws91{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.075600px;}
.ws8a{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws15b{word-spacing:0.048000px;}
.ws8d{word-spacing:0.060000px;}
.ws121{word-spacing:0.120000px;}
.ws38{word-spacing:0.180000px;}
.wsa{word-spacing:0.216000px;}
.wsaa{word-spacing:0.240000px;}
.wsdf{word-spacing:0.336000px;}
.ws122{word-spacing:0.360000px;}
.wse0{word-spacing:0.384000px;}
.ws129{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.ws1b{word-spacing:0.540000px;}
.wse4{word-spacing:0.624000px;}
.ws90{word-spacing:0.660000px;}
.ws99{word-spacing:0.720000px;}
.ws190{word-spacing:0.768000px;}
.ws11e{word-spacing:0.780000px;}
.wse3{word-spacing:0.816000px;}
.ws58{word-spacing:0.840000px;}
.wsf{word-spacing:0.864000px;}
.ws2c{word-spacing:0.900000px;}
.ws4d{word-spacing:0.960000px;}
.ws110{word-spacing:1.008000px;}
.ws7a{word-spacing:1.020000px;}
.ws13a{word-spacing:1.026000px;}
.ws17c{word-spacing:1.056000px;}
.ws15{word-spacing:1.080000px;}
.ws112{word-spacing:1.200000px;}
.ws5d{word-spacing:1.260000px;}
.ws135{word-spacing:1.296000px;}
.ws74{word-spacing:1.320000px;}
.ws29{word-spacing:1.380000px;}
.ws10b{word-spacing:1.440000px;}
.ws145{word-spacing:1.458000px;}
.ws165{word-spacing:1.488000px;}
.ws4f{word-spacing:1.500000px;}
.ws146{word-spacing:1.584000px;}
.ws118{word-spacing:1.620000px;}
.ws188{word-spacing:1.632000px;}
.ws94{word-spacing:1.680000px;}
.wscf{word-spacing:1.740000px;}
.wsa9{word-spacing:1.782000px;}
.wsa2{word-spacing:1.800000px;}
.ws151{word-spacing:1.824000px;}
.wsb{word-spacing:1.836000px;}
.ws8c{word-spacing:1.860000px;}
.ws16d{word-spacing:1.872000px;}
.ws49{word-spacing:1.920000px;}
.wsa8{word-spacing:1.944000px;}
.ws187{word-spacing:1.968000px;}
.ws54{word-spacing:1.980000px;}
.ws92{word-spacing:2.040000px;}
.wsd{word-spacing:2.052000px;}
.ws95{word-spacing:2.100000px;}
.wse{word-spacing:2.160000px;}
.ws87{word-spacing:2.220000px;}
.ws143{word-spacing:2.268000px;}
.ws46{word-spacing:2.280000px;}
.ws33{word-spacing:2.340000px;}
.ws17e{word-spacing:2.352000px;}
.ws18d{word-spacing:2.448000px;}
.ws166{word-spacing:2.496000px;}
.ws12d{word-spacing:2.520000px;}
.ws17{word-spacing:2.538000px;}
.ws148{word-spacing:2.544000px;}
.ws22{word-spacing:2.580000px;}
.ws39{word-spacing:2.640000px;}
.ws12{word-spacing:2.700000px;}
.ws189{word-spacing:2.736000px;}
.ws149{word-spacing:2.784000px;}
.ws18f{word-spacing:2.832000px;}
.ws7c{word-spacing:2.880000px;}
.wsde{word-spacing:2.916000px;}
.ws16e{word-spacing:2.976000px;}
.wsfb{word-spacing:3.000000px;}
.ws17b{word-spacing:3.024000px;}
.wsd9{word-spacing:3.060000px;}
.ws140{word-spacing:3.078000px;}
.ws97{word-spacing:3.120000px;}
.wsdd{word-spacing:3.132000px;}
.ws41{word-spacing:3.180000px;}
.ws157{word-spacing:3.216000px;}
.ws108{word-spacing:3.240000px;}
.ws100{word-spacing:3.300000px;}
.ws24{word-spacing:3.360000px;}
.ws138{word-spacing:3.402000px;}
.wse5{word-spacing:3.456000px;}
.ws81{word-spacing:3.480000px;}
.ws173{word-spacing:3.504000px;}
.ws98{word-spacing:3.600000px;}
.ws152{word-spacing:3.648000px;}
.ws5c{word-spacing:3.660000px;}
.ws13f{word-spacing:3.672000px;}
.ws43{word-spacing:3.720000px;}
.ws14e{word-spacing:3.744000px;}
.ws16{word-spacing:3.780000px;}
.ws177{word-spacing:3.792000px;}
.ws36{word-spacing:3.840000px;}
.ws102{word-spacing:3.900000px;}
.ws42{word-spacing:3.960000px;}
.ws2d{word-spacing:4.020000px;}
.ws150{word-spacing:4.032000px;}
.ws13e{word-spacing:4.050000px;}
.ws9c{word-spacing:4.140000px;}
.ws186{word-spacing:4.176000px;}
.ws71{word-spacing:4.200000px;}
.ws162{word-spacing:4.224000px;}
.wsa1{word-spacing:4.260000px;}
.wsa3{word-spacing:4.320000px;}
.ws7e{word-spacing:4.380000px;}
.ws79{word-spacing:4.440000px;}
.ws52{word-spacing:4.500000px;}
.ws40{word-spacing:4.560000px;}
.wsfc{word-spacing:4.620000px;}
.ws11{word-spacing:4.644000px;}
.ws12a{word-spacing:4.680000px;}
.ws50{word-spacing:4.740000px;}
.ws82{word-spacing:4.800000px;}
.wsf6{word-spacing:4.860000px;}
.ws16a{word-spacing:4.896000px;}
.wsa4{word-spacing:4.920000px;}
.wsd8{word-spacing:4.980000px;}
.ws4c{word-spacing:5.040000px;}
.ws60{word-spacing:5.100000px;}
.ws161{word-spacing:5.136000px;}
.ws126{word-spacing:5.160000px;}
.ws23{word-spacing:5.220000px;}
.ws10a{word-spacing:5.280000px;}
.ws10e{word-spacing:5.292000px;}
.ws48{word-spacing:5.340000px;}
.ws155{word-spacing:5.376000px;}
.wsd1{word-spacing:5.400000px;}
.ws15c{word-spacing:5.424000px;}
.ws6c{word-spacing:5.460000px;}
.ws179{word-spacing:5.472000px;}
.ws26{word-spacing:5.520000px;}
.ws11c{word-spacing:5.580000px;}
.wsff{word-spacing:5.640000px;}
.ws15a{word-spacing:5.664000px;}
.ws7b{word-spacing:5.700000px;}
.ws169{word-spacing:5.712000px;}
.ws3c{word-spacing:5.760000px;}
.ws10d{word-spacing:5.778000px;}
.ws70{word-spacing:5.820000px;}
.ws181{word-spacing:5.856000px;}
.ws115{word-spacing:5.880000px;}
.ws16c{word-spacing:5.904000px;}
.ws3e{word-spacing:5.940000px;}
.wse6{word-spacing:6.000000px;}
.ws170{word-spacing:6.048000px;}
.ws127{word-spacing:6.060000px;}
.ws111{word-spacing:6.120000px;}
.ws13d{word-spacing:6.156000px;}
.ws73{word-spacing:6.240000px;}
.ws13c{word-spacing:6.264000px;}
.ws183{word-spacing:6.288000px;}
.ws15f{word-spacing:6.336000px;}
.ws176{word-spacing:6.384000px;}
.ws4b{word-spacing:6.420000px;}
.ws84{word-spacing:6.480000px;}
.ws6e{word-spacing:6.540000px;}
.ws16f{word-spacing:6.576000px;}
.ws104{word-spacing:6.600000px;}
.ws139{word-spacing:6.642000px;}
.ws57{word-spacing:6.660000px;}
.ws63{word-spacing:6.720000px;}
.ws160{word-spacing:6.768000px;}
.wsd3{word-spacing:6.780000px;}
.ws66{word-spacing:6.840000px;}
.ws21{word-spacing:6.900000px;}
.ws3b{word-spacing:6.960000px;}
.ws72{word-spacing:7.020000px;}
.ws137{word-spacing:7.128000px;}
.ws12e{word-spacing:7.140000px;}
.ws136{word-spacing:7.182000px;}
.ws35{word-spacing:7.200000px;}
.ws182{word-spacing:7.248000px;}
.ws47{word-spacing:7.260000px;}
.wsf8{word-spacing:7.320000px;}
.ws14b{word-spacing:7.344000px;}
.wsd5{word-spacing:7.380000px;}
.ws116{word-spacing:7.440000px;}
.ws34{word-spacing:7.500000px;}
.ws13b{word-spacing:7.668000px;}
.ws6a{word-spacing:7.680000px;}
.ws128{word-spacing:7.740000px;}
.wsa5{word-spacing:7.800000px;}
.ws106{word-spacing:7.860000px;}
.ws3d{word-spacing:7.920000px;}
.ws55{word-spacing:8.040000px;}
.ws37{word-spacing:8.100000px;}
.ws17d{word-spacing:8.112000px;}
.ws51{word-spacing:8.160000px;}
.ws119{word-spacing:8.220000px;}
.ws142{word-spacing:8.316000px;}
.ws93{word-spacing:8.400000px;}
.ws2e{word-spacing:8.580000px;}
.ws147{word-spacing:8.592000px;}
.ws68{word-spacing:8.640000px;}
.ws163{word-spacing:8.688000px;}
.ws9d{word-spacing:8.700000px;}
.wscd{word-spacing:8.760000px;}
.ws62{word-spacing:8.880000px;}
.ws14d{word-spacing:8.928000px;}
.ws10c{word-spacing:9.000000px;}
.ws30{word-spacing:9.060000px;}
.ws16b{word-spacing:9.120000px;}
.ws132{word-spacing:9.180000px;}
.ws27{word-spacing:9.300000px;}
.ws185{word-spacing:9.312000px;}
.ws130{word-spacing:9.360000px;}
.ws18e{word-spacing:9.408000px;}
.ws61{word-spacing:9.480000px;}
.wsda{word-spacing:9.600000px;}
.ws59{word-spacing:9.660000px;}
.wsfa{word-spacing:9.720000px;}
.ws141{word-spacing:9.774000px;}
.wsce{word-spacing:9.840000px;}
.ws158{word-spacing:9.936000px;}
.ws56{word-spacing:10.080000px;}
.ws3f{word-spacing:10.260000px;}
.ws8e{word-spacing:10.440000px;}
.ws154{word-spacing:10.464000px;}
.ws12b{word-spacing:10.740000px;}
.ws125{word-spacing:10.980000px;}
.ws4e{word-spacing:11.100000px;}
.ws17f{word-spacing:11.184000px;}
.ws153{word-spacing:11.232000px;}
.wsd0{word-spacing:11.280000px;}
.ws15d{word-spacing:11.376000px;}
.ws156{word-spacing:11.472000px;}
.ws159{word-spacing:11.616000px;}
.ws2f{word-spacing:11.700000px;}
.ws105{word-spacing:12.000000px;}
.wsdc{word-spacing:12.150000px;}
.wsf7{word-spacing:12.300000px;}
.ws7d{word-spacing:12.420000px;}
.ws171{word-spacing:12.480000px;}
.ws32{word-spacing:12.720000px;}
.ws2b{word-spacing:12.840000px;}
.ws133{word-spacing:12.900000px;}
.ws83{word-spacing:12.960000px;}
.ws3a{word-spacing:13.080000px;}
.ws44{word-spacing:13.200000px;}
.wsdb{word-spacing:13.230000px;}
.wsd4{word-spacing:13.260000px;}
.ws45{word-spacing:13.320000px;}
.ws9f{word-spacing:14.100000px;}
.ws14c{word-spacing:14.160000px;}
.ws11b{word-spacing:14.220000px;}
.ws31{word-spacing:14.640000px;}
.ws124{word-spacing:15.060000px;}
.ws113{word-spacing:15.480000px;}
.ws107{word-spacing:15.720000px;}
.ws11f{word-spacing:15.840000px;}
.wscc{word-spacing:15.900000px;}
.wse2{word-spacing:16.416000px;}
.ws131{word-spacing:16.920000px;}
.ws6d{word-spacing:17.400000px;}
.ws7f{word-spacing:17.700000px;}
.wse1{word-spacing:17.874000px;}
.ws120{word-spacing:18.000000px;}
.ws5f{word-spacing:18.240000px;}
.ws168{word-spacing:18.288000px;}
.ws96{word-spacing:19.800000px;}
.wsd2{word-spacing:21.420000px;}
.ws11d{word-spacing:22.920000px;}
.ws178{word-spacing:25.104000px;}
.ws28{word-spacing:26.460000px;}
.ws172{word-spacing:28.080000px;}
.ws64{word-spacing:28.260000px;}
.wsb0{word-spacing:38.003760px;}
.wsaf{word-spacing:44.765400px;}
.ws164{word-spacing:45.888000px;}
.wsad{word-spacing:47.526000px;}
.wsac{word-spacing:49.308960px;}
.wsbd{word-spacing:49.579800px;}
.wsc0{word-spacing:49.580400px;}
.wsae{word-spacing:57.852360px;}
.wsc3{word-spacing:61.099800px;}
.wsbe{word-spacing:61.100400px;}
.wsbf{word-spacing:72.620400px;}
.wsb1{word-spacing:86.364360px;}
.wsba{word-spacing:88.555800px;}
.wsab{word-spacing:121.158000px;}
.wsf5{word-spacing:123.888000px;}
.wsf3{word-spacing:148.657800px;}
.wsb6{word-spacing:155.169000px;}
.wsb4{word-spacing:158.241000px;}
.wsed{word-spacing:160.176000px;}
.wseb{word-spacing:164.785800px;}
.wsf4{word-spacing:171.696000px;}
.wsc7{word-spacing:178.150200px;}
.wsc5{word-spacing:180.573600px;}
.wsc8{word-spacing:189.670200px;}
.wsca{word-spacing:201.190200px;}
.ws76{word-spacing:225.078000px;}
.wsb9{word-spacing:230.392200px;}
.wsc1{word-spacing:232.788600px;}
.wsb3{word-spacing:238.785000px;}
.wsf1{word-spacing:253.729200px;}
.wsbc{word-spacing:256.933200px;}
.wsea{word-spacing:267.468000px;}
.wsc4{word-spacing:267.612600px;}
.wsc2{word-spacing:271.357200px;}
.wsb5{word-spacing:280.305000px;}
.wsef{word-spacing:285.217200px;}
.wsf2{word-spacing:309.084600px;}
.wse7{word-spacing:332.095200px;}
.wsb8{word-spacing:376.266600px;}
.ws77{word-spacing:407.620800px;}
.wse9{word-spacing:417.691800px;}
.wse8{word-spacing:443.359200px;}
.wsc9{word-spacing:466.474200px;}
.ws78{word-spacing:481.251600px;}
.wsc6{word-spacing:538.138200px;}
.wsbb{word-spacing:606.646200px;}
.wsec{word-spacing:882.607800px;}
.wsee{word-spacing:965.791800px;}
.wsf0{word-spacing:1253.127600px;}
._a{margin-left:-2822.537400px;}
._4{margin-left:-7.476000px;}
._8{margin-left:-5.884800px;}
._9{margin-left:-4.069800px;}
._1{margin-left:-2.331000px;}
._0{margin-left:-1.071000px;}
._3{width:1.144800px;}
._2{width:2.520000px;}
._2d{width:4.368000px;}
._2e{width:5.563200px;}
._7{width:15.840000px;}
._6{width:16.944000px;}
._5{width:22.320000px;}
._1e{width:31.549800px;}
._26{width:42.342600px;}
._5c{width:43.354200px;}
._42{width:46.532400px;}
._17{width:47.768400px;}
._48{width:49.267800px;}
._43{width:52.731600px;}
._21{width:53.862600px;}
._18{width:58.422000px;}
._3d{width:60.475800px;}
._1b{width:64.204200px;}
._11{width:65.813400px;}
._15{width:66.965400px;}
._45{width:68.052600px;}
._34{width:71.996400px;}
._25{width:76.902600px;}
._28{width:78.243600px;}
._39{width:83.613600px;}
._3a{width:85.456200px;}
._2a{width:88.662600px;}
._27{width:93.865200px;}
._19{width:95.477400px;}
._38{width:99.111600px;}
._16{width:104.022000px;}
._23{width:114.955200px;}
._37{width:116.762400px;}
._c{width:117.811200px;}
._1c{width:124.485600px;}
._1f{width:125.748000px;}
._33{width:133.809000px;}
._1d{width:136.051800px;}
._1a{width:137.850600px;}
._41{width:143.364600px;}
._44{width:146.311800px;}
._40{width:147.784800px;}
._3c{width:150.126000px;}
._46{width:154.870200px;}
._55{width:159.414000px;}
._54{width:160.438800px;}
._47{width:168.415800px;}
._2c{width:170.899200px;}
._4c{width:182.593800px;}
._57{width:185.791800px;}
._5b{width:193.834800px;}
._51{width:194.887800px;}
._13{width:203.622000px;}
._f{width:209.274600px;}
._20{width:217.728000px;}
._4b{width:221.757600px;}
._4a{width:228.204600px;}
._3b{width:233.158800px;}
._32{width:237.245400px;}
._58{width:243.624600px;}
._2b{width:244.929000px;}
._10{width:256.326600px;}
._35{width:264.541200px;}
._14{width:271.803600px;}
._3e{width:279.490800px;}
._53{width:286.017600px;}
._56{width:290.749200px;}
._12{width:294.534000px;}
._4f{width:296.113200px;}
._31{width:302.581800px;}
._29{width:306.513000px;}
._e{width:312.175800px;}
._30{width:314.101200px;}
._22{width:332.337000px;}
._24{width:343.857000px;}
._52{width:363.348600px;}
._36{width:374.095200px;}
._3f{width:418.729200px;}
._2f{width:420.290400px;}
._4d{width:429.861000px;}
._d{width:433.506600px;}
._49{width:467.403600px;}
._59{width:771.013800px;}
._5a{width:859.539600px;}
._4e{width:1244.381400px;}
._50{width:1335.418200px;}
._b{width:2389.980000px;}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs6{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:64.661700px;}
.y23{bottom:77.261700px;}
.y22{bottom:89.861700px;}
.ybb{bottom:123.307050px;}
.y13d{bottom:125.267700px;}
.y61{bottom:125.291250px;}
.y9a{bottom:125.291400px;}
.ye1{bottom:128.784450px;}
.yba{bottom:138.307050px;}
.y13c{bottom:143.267700px;}
.y60{bottom:143.291250px;}
.y99{bottom:143.291400px;}
.ye0{bottom:143.784450px;}
.y123{bottom:145.161900px;}
.ydf{bottom:160.161900px;}
.y13b{bottom:161.267700px;}
.yb9{bottom:161.288400px;}
.y5f{bottom:161.291250px;}
.y98{bottom:161.291400px;}
.y122{bottom:161.539200px;}
.yde{bottom:176.539200px;}
.yb8{bottom:177.665850px;}
.y13a{bottom:179.267700px;}
.y5e{bottom:179.291250px;}
.ya5{bottom:179.291400px;}
.ydd{bottom:191.539200px;}
.y121{bottom:192.916650px;}
.y97{bottom:194.031600px;}
.yb7{bottom:194.043300px;}
.y139{bottom:197.267700px;}
.y5d{bottom:197.291250px;}
.ya4{bottom:197.291400px;}
.ydc{bottom:207.916650px;}
.y120{bottom:209.294100px;}
.yb6{bottom:210.420600px;}
.y138{bottom:215.267700px;}
.y5c{bottom:215.291250px;}
.ya3{bottom:215.291400px;}
.y21{bottom:217.493100px;}
.y172{bottom:220.315500px;}
.ydb{bottom:222.916650px;}
.y11f{bottom:225.671550px;}
.yb5{bottom:226.798050px;}
.y137{bottom:233.267700px;}
.y5b{bottom:233.291250px;}
.y96{bottom:233.291400px;}
.y171{bottom:238.315500px;}
.yda{bottom:239.294100px;}
.y11e{bottom:242.049000px;}
.yb4{bottom:243.175500px;}
.y20{bottom:243.997050px;}
.y136{bottom:251.267700px;}
.y5a{bottom:251.291250px;}
.y95{bottom:251.291400px;}
.yd9{bottom:254.294100px;}
.y170{bottom:256.315500px;}
.y11d{bottom:258.426300px;}
.yb3{bottom:259.552950px;}
.y66{bottom:266.031450px;}
.y135{bottom:269.267700px;}
.y59{bottom:269.291250px;}
.y94{bottom:269.291400px;}
.yd8{bottom:270.671550px;}
.y16f{bottom:274.315500px;}
.y11c{bottom:274.803750px;}
.yb2{bottom:275.930400px;}
.yd7{bottom:285.671550px;}
.y134{bottom:287.267700px;}
.y58{bottom:287.291250px;}
.y93{bottom:287.291400px;}
.yb1{bottom:290.930400px;}
.y11b{bottom:291.181200px;}
.y16e{bottom:292.315500px;}
.yd6{bottom:302.049000px;}
.y1f{bottom:304.516650px;}
.y133{bottom:305.267700px;}
.y57{bottom:305.291250px;}
.y92{bottom:305.291400px;}
.yb0{bottom:307.307700px;}
.y11a{bottom:307.558650px;}
.y16d{bottom:310.315500px;}
.yd5{bottom:317.049000px;}
.y1e{bottom:322.516650px;}
.y132{bottom:323.267700px;}
.y56{bottom:323.291250px;}
.y91{bottom:323.291400px;}
.yaf{bottom:323.685150px;}
.y119{bottom:323.935950px;}
.ya2{bottom:326.527650px;}
.y16c{bottom:328.315500px;}
.yd4{bottom:333.426300px;}
.yae{bottom:340.062600px;}
.y118{bottom:340.313400px;}
.y131{bottom:341.267700px;}
.y55{bottom:341.291250px;}
.y90{bottom:341.291400px;}
.y16b{bottom:346.315500px;}
.y1d{bottom:349.020600px;}
.y65{bottom:349.771500px;}
.yd3{bottom:349.803750px;}
.yad{bottom:356.440050px;}
.y117{bottom:356.690850px;}
.y130{bottom:359.267700px;}
.y54{bottom:359.291250px;}
.y8f{bottom:359.291400px;}
.y16a{bottom:364.315500px;}
.yd2{bottom:366.181200px;}
.y1c{bottom:367.020600px;}
.y116{bottom:373.068300px;}
.y53{bottom:377.291250px;}
.y8e{bottom:377.291400px;}
.y64{bottom:380.527500px;}
.yd1{bottom:381.181200px;}
.y169{bottom:382.315500px;}
.yac{bottom:382.594050px;}
.y1b{bottom:385.020600px;}
.y115{bottom:389.445750px;}
.y12f{bottom:390.023550px;}
.y52{bottom:395.291250px;}
.y8d{bottom:395.291400px;}
.yd0{bottom:397.558650px;}
.y168{bottom:400.315500px;}
.yab{bottom:400.594050px;}
.y1a{bottom:403.020600px;}
.y114{bottom:405.823050px;}
.y51{bottom:413.291250px;}
.y8c{bottom:413.291400px;}
.ycf{bottom:413.936100px;}
.y167{bottom:418.315500px;}
.y113{bottom:422.200500px;}
.y124{bottom:428.031450px;}
.y19{bottom:429.524550px;}
.yce{bottom:430.313400px;}
.y50{bottom:431.291250px;}
.y8b{bottom:431.291400px;}
.y166{bottom:436.315500px;}
.y112{bottom:438.577950px;}
.ycd{bottom:446.690850px;}
.y18{bottom:447.524550px;}
.y4f{bottom:449.291250px;}
.y8a{bottom:449.291400px;}
.y165{bottom:454.315500px;}
.y111{bottom:454.955400px;}
.ycc{bottom:463.068300px;}
.y17{bottom:465.524550px;}
.y4e{bottom:467.291250px;}
.y89{bottom:467.291400px;}
.y110{bottom:471.332850px;}
.y164{bottom:472.315500px;}
.ycb{bottom:479.445750px;}
.y16{bottom:483.524550px;}
.y4d{bottom:485.291250px;}
.y88{bottom:485.291400px;}
.y10f{bottom:487.710150px;}
.y129{bottom:487.741800px;}
.y163{bottom:490.315500px;}
.yca{bottom:495.823200px;}
.ya1{bottom:500.031450px;}
.y15{bottom:501.524550px;}
.y4c{bottom:503.291250px;}
.y87{bottom:503.291400px;}
.y10e{bottom:504.087600px;}
.y12e{bottom:505.741800px;}
.y162{bottom:508.315500px;}
.yc9{bottom:512.200500px;}
.y14{bottom:519.524550px;}
.y4b{bottom:521.291250px;}
.y86{bottom:521.291400px;}
.y161{bottom:526.315500px;}
.yc8{bottom:528.577950px;}
.y10d{bottom:530.241600px;}
.y13{bottom:537.524550px;}
.y4a{bottom:539.291250px;}
.y85{bottom:539.291400px;}
.y160{bottom:544.315500px;}
.yc7{bottom:544.955400px;}
.y128{bottom:547.771650px;}
.y49{bottom:557.291250px;}
.y84{bottom:557.291400px;}
.yc6{bottom:561.332850px;}
.y15f{bottom:562.315500px;}
.y12{bottom:564.028500px;}
.y48{bottom:575.291250px;}
.y83{bottom:575.291400px;}
.yc5{bottom:577.710300px;}
.y127{bottom:578.527500px;}
.y15e{bottom:580.315500px;}
.y11{bottom:582.028500px;}
.y47{bottom:593.291250px;}
.y82{bottom:593.291400px;}
.yc4{bottom:594.087600px;}
.y12d{bottom:595.741800px;}
.y15d{bottom:598.315500px;}
.y10{bottom:608.532450px;}
.yc3{bottom:610.465050px;}
.y46{bottom:611.291250px;}
.y81{bottom:611.291400px;}
.y15c{bottom:616.315500px;}
.yc2{bottom:625.465050px;}
.y45{bottom:629.291250px;}
.ya0{bottom:629.291400px;}
.y15b{bottom:634.315500px;}
.yc1{bottom:640.465050px;}
.y80{bottom:644.031450px;}
.y44{bottom:647.291250px;}
.y9f{bottom:647.291400px;}
.y100{bottom:647.803650px;}
.y15a{bottom:652.315500px;}
.yc0{bottom:658.315050px;}
.yff{bottom:662.803650px;}
.yf{bottom:664.800150px;}
.y43{bottom:665.291250px;}
.y159{bottom:670.315500px;}
.ybf{bottom:673.315050px;}
.yfe{bottom:677.803650px;}
.yaa{bottom:682.407600px;}
.ye{bottom:682.800150px;}
.y42{bottom:683.291250px;}
.y7f{bottom:683.291400px;}
.y158{bottom:688.315500px;}
.ya9{bottom:698.784900px;}
.ybe{bottom:699.469050px;}
.yfd{bottom:700.785000px;}
.yd{bottom:700.800150px;}
.y41{bottom:701.291250px;}
.y7e{bottom:701.291400px;}
.y157{bottom:706.315500px;}
.ya8{bottom:715.162350px;}
.yfc{bottom:717.162450px;}
.ybd{bottom:717.469050px;}
.y40{bottom:719.291250px;}
.y7d{bottom:719.291400px;}
.y126{bottom:722.527500px;}
.y156{bottom:724.315500px;}
.yfb{bottom:733.539900px;}
.ybc{bottom:735.469050px;}
.yc{bottom:735.808050px;}
.y3f{bottom:737.291250px;}
.y7c{bottom:737.291400px;}
.y12c{bottom:739.741800px;}
.ya7{bottom:741.316350px;}
.y155{bottom:742.315500px;}
.yfa{bottom:749.917200px;}
.y3e{bottom:755.291250px;}
.y7b{bottom:755.291400px;}
.ya6{bottom:759.316350px;}
.y154{bottom:760.315500px;}
.yf9{bottom:766.294650px;}
.y3d{bottom:773.291250px;}
.y7a{bottom:773.291400px;}
.y10c{bottom:773.572650px;}
.y153{bottom:778.315500px;}
.yf8{bottom:782.672100px;}
.yb{bottom:783.571800px;}
.y9e{bottom:788.031600px;}
.y10b{bottom:788.572650px;}
.y3c{bottom:791.291250px;}
.y79{bottom:791.291400px;}
.y12b{bottom:793.741950px;}
.y152{bottom:796.315500px;}
.yf7{bottom:799.049400px;}
.y3b{bottom:809.291250px;}
.y78{bottom:809.291400px;}
.ya{bottom:810.075750px;}
.y10a{bottom:811.554000px;}
.y151{bottom:814.315500px;}
.yf6{bottom:815.426850px;}
.y3a{bottom:827.291250px;}
.y77{bottom:827.291400px;}
.y109{bottom:827.931450px;}
.y9{bottom:828.075750px;}
.yf5{bottom:831.804450px;}
.y150{bottom:832.315500px;}
.y108{bottom:844.308900px;}
.y39{bottom:845.291250px;}
.y76{bottom:845.291400px;}
.y8{bottom:846.075750px;}
.y12a{bottom:847.741950px;}
.yf4{bottom:848.181750px;}
.y14f{bottom:850.315500px;}
.y107{bottom:860.686200px;}
.y38{bottom:863.291250px;}
.y75{bottom:863.291400px;}
.y7{bottom:864.075750px;}
.yf3{bottom:864.559200px;}
.y14e{bottom:868.315500px;}
.y106{bottom:877.063650px;}
.yf2{bottom:880.936650px;}
.y37{bottom:881.291250px;}
.y74{bottom:881.291400px;}
.y6{bottom:882.075750px;}
.y14d{bottom:886.315500px;}
.y105{bottom:893.441100px;}
.yf1{bottom:897.314100px;}
.y36{bottom:899.291250px;}
.y73{bottom:899.291400px;}
.y14c{bottom:904.315500px;}
.y5{bottom:908.579700px;}
.yf0{bottom:913.691400px;}
.y35{bottom:917.291250px;}
.y72{bottom:917.291400px;}
.y104{bottom:919.595100px;}
.y14b{bottom:922.315500px;}
.yef{bottom:930.068850px;}
.y4{bottom:930.179700px;}
.y34{bottom:935.291250px;}
.y71{bottom:935.291400px;}
.y103{bottom:937.595100px;}
.y101{bottom:938.527500px;}
.y14a{bottom:940.315500px;}
.yee{bottom:946.446300px;}
.y3{bottom:951.779700px;}
.y33{bottom:953.291250px;}
.y70{bottom:953.291400px;}
.y102{bottom:955.595100px;}
.y149{bottom:958.315500px;}
.yed{bottom:962.823600px;}
.y32{bottom:971.291250px;}
.y9d{bottom:971.291400px;}
.y125{bottom:974.527500px;}
.y148{bottom:976.315500px;}
.yec{bottom:979.201200px;}
.y6f{bottom:986.031600px;}
.y31{bottom:989.291250px;}
.y9c{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y147{bottom:994.315500px;}
.yeb{bottom:995.578650px;}
.y30{bottom:1007.291250px;}
.y9b{bottom:1007.291400px;}
.yea{bottom:1011.955950px;}
.y146{bottom:1012.315500px;}
.y2f{bottom:1025.291250px;}
.y6e{bottom:1025.291400px;}
.ye9{bottom:1028.333400px;}
.y1{bottom:1029.178200px;}
.y145{bottom:1030.315500px;}
.y2e{bottom:1043.291250px;}
.y6d{bottom:1043.291400px;}
.ye8{bottom:1044.710850px;}
.y144{bottom:1048.315500px;}
.ye7{bottom:1061.088300px;}
.y2d{bottom:1061.291250px;}
.y6c{bottom:1061.291400px;}
.y143{bottom:1066.315500px;}
.ye6{bottom:1077.465600px;}
.y2c{bottom:1079.291250px;}
.y6b{bottom:1079.291400px;}
.y142{bottom:1084.315500px;}
.ye5{bottom:1093.843050px;}
.y2b{bottom:1097.291250px;}
.y6a{bottom:1097.291400px;}
.y141{bottom:1102.315500px;}
.ye4{bottom:1110.220500px;}
.y2a{bottom:1115.291250px;}
.y69{bottom:1115.291400px;}
.y140{bottom:1120.315500px;}
.y27{bottom:1126.725000px;}
.y63{bottom:1133.291250px;}
.y68{bottom:1133.291400px;}
.ye3{bottom:1136.374500px;}
.y13f{bottom:1138.315500px;}
.y29{bottom:1148.449350px;}
.y62{bottom:1151.291250px;}
.y67{bottom:1151.291400px;}
.ye2{bottom:1154.374500px;}
.y13e{bottom:1156.315500px;}
.y26{bottom:1166.037750px;}
.y25{bottom:1183.789800px;}
.y28{bottom:1193.518650px;}
.ha{height:27.575100px;}
.hb{height:32.827500px;}
.h10{height:33.744000px;}
.hc{height:33.947754px;}
.h4{height:34.176000px;}
.hf{height:34.272000px;}
.h5{height:35.016000px;}
.h11{height:35.656752px;}
.h7{height:39.555000px;}
.h6{height:39.840000px;}
.h12{height:43.950000px;}
.h8{height:44.820000px;}
.he{height:49.800000px;}
.h9{height:52.740000px;}
.h3{height:59.760000px;}
.hd{height:61.530000px;}
.h2{height:92.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x12{left:96.094500px;}
.xc{left:110.551050px;}
.x2e{left:121.329000px;}
.x13{left:124.987050px;}
.x21{left:140.635500px;}
.x3{left:145.222950px;}
.x14{left:149.562600px;}
.x33{left:208.540200px;}
.x38{left:210.166650px;}
.x2{left:211.839150px;}
.x31{left:216.970350px;}
.x34{left:227.295900px;}
.x2b{left:236.657250px;}
.x35{left:240.945450px;}
.x37{left:241.989600px;}
.x2a{left:243.311400px;}
.x2c{left:244.937700px;}
.x29{left:247.535250px;}
.x32{left:249.771300px;}
.x27{left:251.741550px;}
.x4{left:254.111400px;}
.x30{left:257.445450px;}
.x11{left:261.263400px;}
.x26{left:277.318650px;}
.x22{left:282.526800px;}
.x28{left:284.542500px;}
.x2d{left:287.602500px;}
.x25{left:288.802500px;}
.x24{left:292.216500px;}
.x23{left:296.884350px;}
.xb{left:307.836150px;}
.x5{left:309.205350px;}
.x36{left:355.830600px;}
.xa{left:375.582450px;}
.x2f{left:384.359850px;}
.x6{left:437.370900px;}
.xd{left:455.456700px;}
.x10{left:458.009250px;}
.xe{left:472.464450px;}
.x7{left:494.055750px;}
.xf{left:499.907100px;}
.x1b{left:544.189650px;}
.x20{left:546.853500px;}
.x1f{left:549.733500px;}
.x1a{left:551.029500px;}
.x1c{left:553.585500px;}
.x15{left:565.513500px;}
.x9{left:601.212600px;}
.x1d{left:602.853150px;}
.x1e{left:612.477000px;}
.x16{left:665.626650px;}
.x8{left:700.681050px;}
.x17{left:705.436200px;}
.x18{left:716.532600px;}
.x19{left:777.407100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.ls17{letter-spacing:-4.096000pt;}
.ls4{letter-spacing:-2.240000pt;}
.lsb{letter-spacing:-1.333333pt;}
.lsa{letter-spacing:-1.013333pt;}
.lse{letter-spacing:-0.906667pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.873600pt;}
.ls1b{letter-spacing:-0.810667pt;}
.ls14{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.720000pt;}
.ls1a{letter-spacing:-0.682667pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.554667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.341333pt;}
.ls20{letter-spacing:-0.336000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.298667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.018261pt;}
.ls1{letter-spacing:0.018645pt;}
.ls3{letter-spacing:0.018667pt;}
.lsf{letter-spacing:0.213333pt;}
.ls11{letter-spacing:10.324267pt;}
.ls0{letter-spacing:38.399936pt;}
.ls12{letter-spacing:87.439701pt;}
.ls1e{letter-spacing:208.427733pt;}
.ws4{word-spacing:-48.000000pt;}
.ws1d{word-spacing:-18.442667pt;}
.ws7{word-spacing:-15.808000pt;}
.ws12f{word-spacing:-13.173333pt;}
.ws1f{word-spacing:-12.106667pt;}
.ws3{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.376000pt;}
.ws1e{word-spacing:-11.093333pt;}
.ws75{word-spacing:-10.896000pt;}
.ws8{word-spacing:-10.416000pt;}
.ws6{word-spacing:-10.176000pt;}
.ws1{word-spacing:-9.968000pt;}
.ws0{word-spacing:-9.962304pt;}
.ws2{word-spacing:-9.685333pt;}
.wsb7{word-spacing:-9.557333pt;}
.wsb2{word-spacing:-9.045333pt;}
.wscb{word-spacing:-8.362667pt;}
.ws5a{word-spacing:-3.840000pt;}
.ws85{word-spacing:-3.466667pt;}
.ws65{word-spacing:-3.253333pt;}
.wsfd{word-spacing:-3.093333pt;}
.ws8f{word-spacing:-2.880000pt;}
.wsa7{word-spacing:-2.720000pt;}
.ws101{word-spacing:-2.560000pt;}
.ws5b{word-spacing:-2.506667pt;}
.wsd7{word-spacing:-2.400000pt;}
.ws86{word-spacing:-2.346667pt;}
.ws89{word-spacing:-2.293333pt;}
.ws17a{word-spacing:-2.218667pt;}
.wsc{word-spacing:-2.160000pt;}
.ws12c{word-spacing:-2.133333pt;}
.ws69{word-spacing:-2.080000pt;}
.ws117{word-spacing:-2.026667pt;}
.ws9e{word-spacing:-1.973333pt;}
.ws15e{word-spacing:-1.920000pt;}
.ws103{word-spacing:-1.866667pt;}
.wsa0{word-spacing:-1.813333pt;}
.wsfe{word-spacing:-1.760000pt;}
.ws18b{word-spacing:-1.664000pt;}
.ws4a{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.584000pt;}
.ws14f{word-spacing:-1.578667pt;}
.wsa6{word-spacing:-1.546667pt;}
.ws67{word-spacing:-1.386667pt;}
.ws6f{word-spacing:-1.333333pt;}
.ws167{word-spacing:-1.237333pt;}
.ws114{word-spacing:-1.226667pt;}
.ws13{word-spacing:-1.200000pt;}
.ws180{word-spacing:-1.194667pt;}
.ws134{word-spacing:-1.152000pt;}
.ws144{word-spacing:-1.104000pt;}
.ws5e{word-spacing:-1.066667pt;}
.ws9b{word-spacing:-0.960000pt;}
.ws1a{word-spacing:-0.940800pt;}
.ws11a{word-spacing:-0.906667pt;}
.ws18c{word-spacing:-0.896000pt;}
.ws25{word-spacing:-0.853333pt;}
.ws1c{word-spacing:-0.832000pt;}
.ws20{word-spacing:-0.800000pt;}
.wsd6{word-spacing:-0.746667pt;}
.ws123{word-spacing:-0.693333pt;}
.ws14a{word-spacing:-0.682667pt;}
.ws10f{word-spacing:-0.672000pt;}
.ws184{word-spacing:-0.640000pt;}
.ws174{word-spacing:-0.597333pt;}
.wsf9{word-spacing:-0.586667pt;}
.ws80{word-spacing:-0.533333pt;}
.ws18a{word-spacing:-0.512000pt;}
.ws109{word-spacing:-0.480000pt;}
.ws18{word-spacing:-0.436800pt;}
.ws9a{word-spacing:-0.426667pt;}
.ws6b{word-spacing:-0.373333pt;}
.ws8b{word-spacing:-0.266667pt;}
.ws53{word-spacing:-0.213333pt;}
.ws88{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.144000pt;}
.ws175{word-spacing:-0.128000pt;}
.ws91{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.067200pt;}
.ws8a{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws15b{word-spacing:0.042667pt;}
.ws8d{word-spacing:0.053333pt;}
.ws121{word-spacing:0.106667pt;}
.ws38{word-spacing:0.160000pt;}
.wsa{word-spacing:0.192000pt;}
.wsaa{word-spacing:0.213333pt;}
.wsdf{word-spacing:0.298667pt;}
.ws122{word-spacing:0.320000pt;}
.wse0{word-spacing:0.341333pt;}
.ws129{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.ws1b{word-spacing:0.480000pt;}
.wse4{word-spacing:0.554667pt;}
.ws90{word-spacing:0.586667pt;}
.ws99{word-spacing:0.640000pt;}
.ws190{word-spacing:0.682667pt;}
.ws11e{word-spacing:0.693333pt;}
.wse3{word-spacing:0.725333pt;}
.ws58{word-spacing:0.746667pt;}
.wsf{word-spacing:0.768000pt;}
.ws2c{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.853333pt;}
.ws110{word-spacing:0.896000pt;}
.ws7a{word-spacing:0.906667pt;}
.ws13a{word-spacing:0.912000pt;}
.ws17c{word-spacing:0.938667pt;}
.ws15{word-spacing:0.960000pt;}
.ws112{word-spacing:1.066667pt;}
.ws5d{word-spacing:1.120000pt;}
.ws135{word-spacing:1.152000pt;}
.ws74{word-spacing:1.173333pt;}
.ws29{word-spacing:1.226667pt;}
.ws10b{word-spacing:1.280000pt;}
.ws145{word-spacing:1.296000pt;}
.ws165{word-spacing:1.322667pt;}
.ws4f{word-spacing:1.333333pt;}
.ws146{word-spacing:1.408000pt;}
.ws118{word-spacing:1.440000pt;}
.ws188{word-spacing:1.450667pt;}
.ws94{word-spacing:1.493333pt;}
.wscf{word-spacing:1.546667pt;}
.wsa9{word-spacing:1.584000pt;}
.wsa2{word-spacing:1.600000pt;}
.ws151{word-spacing:1.621333pt;}
.wsb{word-spacing:1.632000pt;}
.ws8c{word-spacing:1.653333pt;}
.ws16d{word-spacing:1.664000pt;}
.ws49{word-spacing:1.706667pt;}
.wsa8{word-spacing:1.728000pt;}
.ws187{word-spacing:1.749333pt;}
.ws54{word-spacing:1.760000pt;}
.ws92{word-spacing:1.813333pt;}
.wsd{word-spacing:1.824000pt;}
.ws95{word-spacing:1.866667pt;}
.wse{word-spacing:1.920000pt;}
.ws87{word-spacing:1.973333pt;}
.ws143{word-spacing:2.016000pt;}
.ws46{word-spacing:2.026667pt;}
.ws33{word-spacing:2.080000pt;}
.ws17e{word-spacing:2.090667pt;}
.ws18d{word-spacing:2.176000pt;}
.ws166{word-spacing:2.218667pt;}
.ws12d{word-spacing:2.240000pt;}
.ws17{word-spacing:2.256000pt;}
.ws148{word-spacing:2.261333pt;}
.ws22{word-spacing:2.293333pt;}
.ws39{word-spacing:2.346667pt;}
.ws12{word-spacing:2.400000pt;}
.ws189{word-spacing:2.432000pt;}
.ws149{word-spacing:2.474667pt;}
.ws18f{word-spacing:2.517333pt;}
.ws7c{word-spacing:2.560000pt;}
.wsde{word-spacing:2.592000pt;}
.ws16e{word-spacing:2.645333pt;}
.wsfb{word-spacing:2.666667pt;}
.ws17b{word-spacing:2.688000pt;}
.wsd9{word-spacing:2.720000pt;}
.ws140{word-spacing:2.736000pt;}
.ws97{word-spacing:2.773333pt;}
.wsdd{word-spacing:2.784000pt;}
.ws41{word-spacing:2.826667pt;}
.ws157{word-spacing:2.858667pt;}
.ws108{word-spacing:2.880000pt;}
.ws100{word-spacing:2.933333pt;}
.ws24{word-spacing:2.986667pt;}
.ws138{word-spacing:3.024000pt;}
.wse5{word-spacing:3.072000pt;}
.ws81{word-spacing:3.093333pt;}
.ws173{word-spacing:3.114667pt;}
.ws98{word-spacing:3.200000pt;}
.ws152{word-spacing:3.242667pt;}
.ws5c{word-spacing:3.253333pt;}
.ws13f{word-spacing:3.264000pt;}
.ws43{word-spacing:3.306667pt;}
.ws14e{word-spacing:3.328000pt;}
.ws16{word-spacing:3.360000pt;}
.ws177{word-spacing:3.370667pt;}
.ws36{word-spacing:3.413333pt;}
.ws102{word-spacing:3.466667pt;}
.ws42{word-spacing:3.520000pt;}
.ws2d{word-spacing:3.573333pt;}
.ws150{word-spacing:3.584000pt;}
.ws13e{word-spacing:3.600000pt;}
.ws9c{word-spacing:3.680000pt;}
.ws186{word-spacing:3.712000pt;}
.ws71{word-spacing:3.733333pt;}
.ws162{word-spacing:3.754667pt;}
.wsa1{word-spacing:3.786667pt;}
.wsa3{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.893333pt;}
.ws79{word-spacing:3.946667pt;}
.ws52{word-spacing:4.000000pt;}
.ws40{word-spacing:4.053333pt;}
.wsfc{word-spacing:4.106667pt;}
.ws11{word-spacing:4.128000pt;}
.ws12a{word-spacing:4.160000pt;}
.ws50{word-spacing:4.213333pt;}
.ws82{word-spacing:4.266667pt;}
.wsf6{word-spacing:4.320000pt;}
.ws16a{word-spacing:4.352000pt;}
.wsa4{word-spacing:4.373333pt;}
.wsd8{word-spacing:4.426667pt;}
.ws4c{word-spacing:4.480000pt;}
.ws60{word-spacing:4.533333pt;}
.ws161{word-spacing:4.565333pt;}
.ws126{word-spacing:4.586667pt;}
.ws23{word-spacing:4.640000pt;}
.ws10a{word-spacing:4.693333pt;}
.ws10e{word-spacing:4.704000pt;}
.ws48{word-spacing:4.746667pt;}
.ws155{word-spacing:4.778667pt;}
.wsd1{word-spacing:4.800000pt;}
.ws15c{word-spacing:4.821333pt;}
.ws6c{word-spacing:4.853333pt;}
.ws179{word-spacing:4.864000pt;}
.ws26{word-spacing:4.906667pt;}
.ws11c{word-spacing:4.960000pt;}
.wsff{word-spacing:5.013333pt;}
.ws15a{word-spacing:5.034667pt;}
.ws7b{word-spacing:5.066667pt;}
.ws169{word-spacing:5.077333pt;}
.ws3c{word-spacing:5.120000pt;}
.ws10d{word-spacing:5.136000pt;}
.ws70{word-spacing:5.173333pt;}
.ws181{word-spacing:5.205333pt;}
.ws115{word-spacing:5.226667pt;}
.ws16c{word-spacing:5.248000pt;}
.ws3e{word-spacing:5.280000pt;}
.wse6{word-spacing:5.333333pt;}
.ws170{word-spacing:5.376000pt;}
.ws127{word-spacing:5.386667pt;}
.ws111{word-spacing:5.440000pt;}
.ws13d{word-spacing:5.472000pt;}
.ws73{word-spacing:5.546667pt;}
.ws13c{word-spacing:5.568000pt;}
.ws183{word-spacing:5.589333pt;}
.ws15f{word-spacing:5.632000pt;}
.ws176{word-spacing:5.674667pt;}
.ws4b{word-spacing:5.706667pt;}
.ws84{word-spacing:5.760000pt;}
.ws6e{word-spacing:5.813333pt;}
.ws16f{word-spacing:5.845333pt;}
.ws104{word-spacing:5.866667pt;}
.ws139{word-spacing:5.904000pt;}
.ws57{word-spacing:5.920000pt;}
.ws63{word-spacing:5.973333pt;}
.ws160{word-spacing:6.016000pt;}
.wsd3{word-spacing:6.026667pt;}
.ws66{word-spacing:6.080000pt;}
.ws21{word-spacing:6.133333pt;}
.ws3b{word-spacing:6.186667pt;}
.ws72{word-spacing:6.240000pt;}
.ws137{word-spacing:6.336000pt;}
.ws12e{word-spacing:6.346667pt;}
.ws136{word-spacing:6.384000pt;}
.ws35{word-spacing:6.400000pt;}
.ws182{word-spacing:6.442667pt;}
.ws47{word-spacing:6.453333pt;}
.wsf8{word-spacing:6.506667pt;}
.ws14b{word-spacing:6.528000pt;}
.wsd5{word-spacing:6.560000pt;}
.ws116{word-spacing:6.613333pt;}
.ws34{word-spacing:6.666667pt;}
.ws13b{word-spacing:6.816000pt;}
.ws6a{word-spacing:6.826667pt;}
.ws128{word-spacing:6.880000pt;}
.wsa5{word-spacing:6.933333pt;}
.ws106{word-spacing:6.986667pt;}
.ws3d{word-spacing:7.040000pt;}
.ws55{word-spacing:7.146667pt;}
.ws37{word-spacing:7.200000pt;}
.ws17d{word-spacing:7.210667pt;}
.ws51{word-spacing:7.253333pt;}
.ws119{word-spacing:7.306667pt;}
.ws142{word-spacing:7.392000pt;}
.ws93{word-spacing:7.466667pt;}
.ws2e{word-spacing:7.626667pt;}
.ws147{word-spacing:7.637333pt;}
.ws68{word-spacing:7.680000pt;}
.ws163{word-spacing:7.722667pt;}
.ws9d{word-spacing:7.733333pt;}
.wscd{word-spacing:7.786667pt;}
.ws62{word-spacing:7.893333pt;}
.ws14d{word-spacing:7.936000pt;}
.ws10c{word-spacing:8.000000pt;}
.ws30{word-spacing:8.053333pt;}
.ws16b{word-spacing:8.106667pt;}
.ws132{word-spacing:8.160000pt;}
.ws27{word-spacing:8.266667pt;}
.ws185{word-spacing:8.277333pt;}
.ws130{word-spacing:8.320000pt;}
.ws18e{word-spacing:8.362667pt;}
.ws61{word-spacing:8.426667pt;}
.wsda{word-spacing:8.533333pt;}
.ws59{word-spacing:8.586667pt;}
.wsfa{word-spacing:8.640000pt;}
.ws141{word-spacing:8.688000pt;}
.wsce{word-spacing:8.746667pt;}
.ws158{word-spacing:8.832000pt;}
.ws56{word-spacing:8.960000pt;}
.ws3f{word-spacing:9.120000pt;}
.ws8e{word-spacing:9.280000pt;}
.ws154{word-spacing:9.301333pt;}
.ws12b{word-spacing:9.546667pt;}
.ws125{word-spacing:9.760000pt;}
.ws4e{word-spacing:9.866667pt;}
.ws17f{word-spacing:9.941333pt;}
.ws153{word-spacing:9.984000pt;}
.wsd0{word-spacing:10.026667pt;}
.ws15d{word-spacing:10.112000pt;}
.ws156{word-spacing:10.197333pt;}
.ws159{word-spacing:10.325333pt;}
.ws2f{word-spacing:10.400000pt;}
.ws105{word-spacing:10.666667pt;}
.wsdc{word-spacing:10.800000pt;}
.wsf7{word-spacing:10.933333pt;}
.ws7d{word-spacing:11.040000pt;}
.ws171{word-spacing:11.093333pt;}
.ws32{word-spacing:11.306667pt;}
.ws2b{word-spacing:11.413333pt;}
.ws133{word-spacing:11.466667pt;}
.ws83{word-spacing:11.520000pt;}
.ws3a{word-spacing:11.626667pt;}
.ws44{word-spacing:11.733333pt;}
.wsdb{word-spacing:11.760000pt;}
.wsd4{word-spacing:11.786667pt;}
.ws45{word-spacing:11.840000pt;}
.ws9f{word-spacing:12.533333pt;}
.ws14c{word-spacing:12.586667pt;}
.ws11b{word-spacing:12.640000pt;}
.ws31{word-spacing:13.013333pt;}
.ws124{word-spacing:13.386667pt;}
.ws113{word-spacing:13.760000pt;}
.ws107{word-spacing:13.973333pt;}
.ws11f{word-spacing:14.080000pt;}
.wscc{word-spacing:14.133333pt;}
.wse2{word-spacing:14.592000pt;}
.ws131{word-spacing:15.040000pt;}
.ws6d{word-spacing:15.466667pt;}
.ws7f{word-spacing:15.733333pt;}
.wse1{word-spacing:15.888000pt;}
.ws120{word-spacing:16.000000pt;}
.ws5f{word-spacing:16.213333pt;}
.ws168{word-spacing:16.256000pt;}
.ws96{word-spacing:17.600000pt;}
.wsd2{word-spacing:19.040000pt;}
.ws11d{word-spacing:20.373333pt;}
.ws178{word-spacing:22.314667pt;}
.ws28{word-spacing:23.520000pt;}
.ws172{word-spacing:24.960000pt;}
.ws64{word-spacing:25.120000pt;}
.wsb0{word-spacing:33.781120pt;}
.wsaf{word-spacing:39.791467pt;}
.ws164{word-spacing:40.789333pt;}
.wsad{word-spacing:42.245333pt;}
.wsac{word-spacing:43.830187pt;}
.wsbd{word-spacing:44.070933pt;}
.wsc0{word-spacing:44.071467pt;}
.wsae{word-spacing:51.424320pt;}
.wsc3{word-spacing:54.310933pt;}
.wsbe{word-spacing:54.311467pt;}
.wsbf{word-spacing:64.551467pt;}
.wsb1{word-spacing:76.768320pt;}
.wsba{word-spacing:78.716267pt;}
.wsab{word-spacing:107.696000pt;}
.wsf5{word-spacing:110.122667pt;}
.wsf3{word-spacing:132.140267pt;}
.wsb6{word-spacing:137.928000pt;}
.wsb4{word-spacing:140.658667pt;}
.wsed{word-spacing:142.378667pt;}
.wseb{word-spacing:146.476267pt;}
.wsf4{word-spacing:152.618667pt;}
.wsc7{word-spacing:158.355733pt;}
.wsc5{word-spacing:160.509867pt;}
.wsc8{word-spacing:168.595733pt;}
.wsca{word-spacing:178.835733pt;}
.ws76{word-spacing:200.069333pt;}
.wsb9{word-spacing:204.793067pt;}
.wsc1{word-spacing:206.923200pt;}
.wsb3{word-spacing:212.253333pt;}
.wsf1{word-spacing:225.537067pt;}
.wsbc{word-spacing:228.385067pt;}
.wsea{word-spacing:237.749333pt;}
.wsc4{word-spacing:237.877867pt;}
.wsc2{word-spacing:241.206400pt;}
.wsb5{word-spacing:249.160000pt;}
.wsef{word-spacing:253.526400pt;}
.wsf2{word-spacing:274.741867pt;}
.wse7{word-spacing:295.195733pt;}
.wsb8{word-spacing:334.459200pt;}
.ws77{word-spacing:362.329600pt;}
.wse9{word-spacing:371.281600pt;}
.wse8{word-spacing:394.097067pt;}
.wsc9{word-spacing:414.643733pt;}
.ws78{word-spacing:427.779200pt;}
.wsc6{word-spacing:478.345067pt;}
.wsbb{word-spacing:539.241067pt;}
.wsec{word-spacing:784.540267pt;}
.wsee{word-spacing:858.481600pt;}
.wsf0{word-spacing:1113.891200pt;}
._a{margin-left:-2508.922133pt;}
._4{margin-left:-6.645333pt;}
._8{margin-left:-5.230933pt;}
._9{margin-left:-3.617600pt;}
._1{margin-left:-2.072000pt;}
._0{margin-left:-0.952000pt;}
._3{width:1.017600pt;}
._2{width:2.240000pt;}
._2d{width:3.882667pt;}
._2e{width:4.945067pt;}
._7{width:14.080000pt;}
._6{width:15.061333pt;}
._5{width:19.840000pt;}
._1e{width:28.044267pt;}
._26{width:37.637867pt;}
._5c{width:38.537067pt;}
._42{width:41.362133pt;}
._17{width:42.460800pt;}
._48{width:43.793600pt;}
._43{width:46.872533pt;}
._21{width:47.877867pt;}
._18{width:51.930667pt;}
._3d{width:53.756267pt;}
._1b{width:57.070400pt;}
._11{width:58.500800pt;}
._15{width:59.524800pt;}
._45{width:60.491200pt;}
._34{width:63.996800pt;}
._25{width:68.357867pt;}
._28{width:69.549867pt;}
._39{width:74.323200pt;}
._3a{width:75.961067pt;}
._2a{width:78.811200pt;}
._27{width:83.435733pt;}
._19{width:84.868800pt;}
._38{width:88.099200pt;}
._16{width:92.464000pt;}
._23{width:102.182400pt;}
._37{width:103.788800pt;}
._c{width:104.721067pt;}
._1c{width:110.653867pt;}
._1f{width:111.776000pt;}
._33{width:118.941333pt;}
._1d{width:120.934933pt;}
._1a{width:122.533867pt;}
._41{width:127.435200pt;}
._44{width:130.054933pt;}
._40{width:131.364267pt;}
._3c{width:133.445333pt;}
._46{width:137.662400pt;}
._55{width:141.701333pt;}
._54{width:142.612267pt;}
._47{width:149.702933pt;}
._2c{width:151.910400pt;}
._4c{width:162.305600pt;}
._57{width:165.148267pt;}
._5b{width:172.297600pt;}
._51{width:173.233600pt;}
._13{width:180.997333pt;}
._f{width:186.021867pt;}
._20{width:193.536000pt;}
._4b{width:197.117867pt;}
._4a{width:202.848533pt;}
._3b{width:207.252267pt;}
._32{width:210.884800pt;}
._58{width:216.555200pt;}
._2b{width:217.714667pt;}
._10{width:227.845867pt;}
._35{width:235.147733pt;}
._14{width:241.603200pt;}
._3e{width:248.436267pt;}
._53{width:254.237867pt;}
._56{width:258.443733pt;}
._12{width:261.808000pt;}
._4f{width:263.211733pt;}
._31{width:268.961600pt;}
._29{width:272.456000pt;}
._e{width:277.489600pt;}
._30{width:279.201067pt;}
._22{width:295.410667pt;}
._24{width:305.650667pt;}
._52{width:322.976533pt;}
._36{width:332.529067pt;}
._3f{width:372.203733pt;}
._2f{width:373.591467pt;}
._4d{width:382.098667pt;}
._d{width:385.339200pt;}
._49{width:415.469867pt;}
._59{width:685.345600pt;}
._5a{width:764.035200pt;}
._4e{width:1106.116800pt;}
._50{width:1187.038400pt;}
._b{width:2124.426667pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs6{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:57.477067pt;}
.y23{bottom:68.677067pt;}
.y22{bottom:79.877067pt;}
.ybb{bottom:109.606267pt;}
.y13d{bottom:111.349067pt;}
.y61{bottom:111.370000pt;}
.y9a{bottom:111.370133pt;}
.ye1{bottom:114.475067pt;}
.yba{bottom:122.939600pt;}
.y13c{bottom:127.349067pt;}
.y60{bottom:127.370000pt;}
.y99{bottom:127.370133pt;}
.ye0{bottom:127.808400pt;}
.y123{bottom:129.032800pt;}
.ydf{bottom:142.366133pt;}
.y13b{bottom:143.349067pt;}
.yb9{bottom:143.367467pt;}
.y5f{bottom:143.370000pt;}
.y98{bottom:143.370133pt;}
.y122{bottom:143.590400pt;}
.yde{bottom:156.923733pt;}
.yb8{bottom:157.925200pt;}
.y13a{bottom:159.349067pt;}
.y5e{bottom:159.370000pt;}
.ya5{bottom:159.370133pt;}
.ydd{bottom:170.257067pt;}
.y121{bottom:171.481467pt;}
.y97{bottom:172.472533pt;}
.yb7{bottom:172.482933pt;}
.y139{bottom:175.349067pt;}
.y5d{bottom:175.370000pt;}
.ya4{bottom:175.370133pt;}
.ydc{bottom:184.814800pt;}
.y120{bottom:186.039200pt;}
.yb6{bottom:187.040533pt;}
.y138{bottom:191.349067pt;}
.y5c{bottom:191.370000pt;}
.ya3{bottom:191.370133pt;}
.y21{bottom:193.327200pt;}
.y172{bottom:195.836000pt;}
.ydb{bottom:198.148133pt;}
.y11f{bottom:200.596933pt;}
.yb5{bottom:201.598267pt;}
.y137{bottom:207.349067pt;}
.y5b{bottom:207.370000pt;}
.y96{bottom:207.370133pt;}
.y171{bottom:211.836000pt;}
.yda{bottom:212.705867pt;}
.y11e{bottom:215.154667pt;}
.yb4{bottom:216.156000pt;}
.y20{bottom:216.886267pt;}
.y136{bottom:223.349067pt;}
.y5a{bottom:223.370000pt;}
.y95{bottom:223.370133pt;}
.yd9{bottom:226.039200pt;}
.y170{bottom:227.836000pt;}
.y11d{bottom:229.712267pt;}
.yb3{bottom:230.713733pt;}
.y66{bottom:236.472400pt;}
.y135{bottom:239.349067pt;}
.y59{bottom:239.370000pt;}
.y94{bottom:239.370133pt;}
.yd8{bottom:240.596933pt;}
.y16f{bottom:243.836000pt;}
.y11c{bottom:244.270000pt;}
.yb2{bottom:245.271467pt;}
.yd7{bottom:253.930267pt;}
.y134{bottom:255.349067pt;}
.y58{bottom:255.370000pt;}
.y93{bottom:255.370133pt;}
.yb1{bottom:258.604800pt;}
.y11b{bottom:258.827733pt;}
.y16e{bottom:259.836000pt;}
.yd6{bottom:268.488000pt;}
.y1f{bottom:270.681467pt;}
.y133{bottom:271.349067pt;}
.y57{bottom:271.370000pt;}
.y92{bottom:271.370133pt;}
.yb0{bottom:273.162400pt;}
.y11a{bottom:273.385467pt;}
.y16d{bottom:275.836000pt;}
.yd5{bottom:281.821333pt;}
.y1e{bottom:286.681467pt;}
.y132{bottom:287.349067pt;}
.y56{bottom:287.370000pt;}
.y91{bottom:287.370133pt;}
.yaf{bottom:287.720133pt;}
.y119{bottom:287.943067pt;}
.ya2{bottom:290.246800pt;}
.y16c{bottom:291.836000pt;}
.yd4{bottom:296.378933pt;}
.yae{bottom:302.277867pt;}
.y118{bottom:302.500800pt;}
.y131{bottom:303.349067pt;}
.y55{bottom:303.370000pt;}
.y90{bottom:303.370133pt;}
.y16b{bottom:307.836000pt;}
.y1d{bottom:310.240533pt;}
.y65{bottom:310.908000pt;}
.yd3{bottom:310.936667pt;}
.yad{bottom:316.835600pt;}
.y117{bottom:317.058533pt;}
.y130{bottom:319.349067pt;}
.y54{bottom:319.370000pt;}
.y8f{bottom:319.370133pt;}
.y16a{bottom:323.836000pt;}
.yd2{bottom:325.494400pt;}
.y1c{bottom:326.240533pt;}
.y116{bottom:331.616267pt;}
.y53{bottom:335.370000pt;}
.y8e{bottom:335.370133pt;}
.y64{bottom:338.246667pt;}
.yd1{bottom:338.827733pt;}
.y169{bottom:339.836000pt;}
.yac{bottom:340.083600pt;}
.y1b{bottom:342.240533pt;}
.y115{bottom:346.174000pt;}
.y12f{bottom:346.687600pt;}
.y52{bottom:351.370000pt;}
.y8d{bottom:351.370133pt;}
.yd0{bottom:353.385467pt;}
.y168{bottom:355.836000pt;}
.yab{bottom:356.083600pt;}
.y1a{bottom:358.240533pt;}
.y114{bottom:360.731600pt;}
.y51{bottom:367.370000pt;}
.y8c{bottom:367.370133pt;}
.ycf{bottom:367.943200pt;}
.y167{bottom:371.836000pt;}
.y113{bottom:375.289333pt;}
.y124{bottom:380.472400pt;}
.y19{bottom:381.799600pt;}
.yce{bottom:382.500800pt;}
.y50{bottom:383.370000pt;}
.y8b{bottom:383.370133pt;}
.y166{bottom:387.836000pt;}
.y112{bottom:389.847067pt;}
.ycd{bottom:397.058533pt;}
.y18{bottom:397.799600pt;}
.y4f{bottom:399.370000pt;}
.y8a{bottom:399.370133pt;}
.y165{bottom:403.836000pt;}
.y111{bottom:404.404800pt;}
.ycc{bottom:411.616267pt;}
.y17{bottom:413.799600pt;}
.y4e{bottom:415.370000pt;}
.y89{bottom:415.370133pt;}
.y110{bottom:418.962533pt;}
.y164{bottom:419.836000pt;}
.ycb{bottom:426.174000pt;}
.y16{bottom:429.799600pt;}
.y4d{bottom:431.370000pt;}
.y88{bottom:431.370133pt;}
.y10f{bottom:433.520133pt;}
.y129{bottom:433.548267pt;}
.y163{bottom:435.836000pt;}
.yca{bottom:440.731733pt;}
.ya1{bottom:444.472400pt;}
.y15{bottom:445.799600pt;}
.y4c{bottom:447.370000pt;}
.y87{bottom:447.370133pt;}
.y10e{bottom:448.077867pt;}
.y12e{bottom:449.548267pt;}
.y162{bottom:451.836000pt;}
.yc9{bottom:455.289333pt;}
.y14{bottom:461.799600pt;}
.y4b{bottom:463.370000pt;}
.y86{bottom:463.370133pt;}
.y161{bottom:467.836000pt;}
.yc8{bottom:469.847067pt;}
.y10d{bottom:471.325867pt;}
.y13{bottom:477.799600pt;}
.y4a{bottom:479.370000pt;}
.y85{bottom:479.370133pt;}
.y160{bottom:483.836000pt;}
.yc7{bottom:484.404800pt;}
.y128{bottom:486.908133pt;}
.y49{bottom:495.370000pt;}
.y84{bottom:495.370133pt;}
.yc6{bottom:498.962533pt;}
.y15f{bottom:499.836000pt;}
.y12{bottom:501.358667pt;}
.y48{bottom:511.370000pt;}
.y83{bottom:511.370133pt;}
.yc5{bottom:513.520267pt;}
.y127{bottom:514.246667pt;}
.y15e{bottom:515.836000pt;}
.y11{bottom:517.358667pt;}
.y47{bottom:527.370000pt;}
.y82{bottom:527.370133pt;}
.yc4{bottom:528.077867pt;}
.y12d{bottom:529.548267pt;}
.y15d{bottom:531.836000pt;}
.y10{bottom:540.917733pt;}
.yc3{bottom:542.635600pt;}
.y46{bottom:543.370000pt;}
.y81{bottom:543.370133pt;}
.y15c{bottom:547.836000pt;}
.yc2{bottom:555.968933pt;}
.y45{bottom:559.370000pt;}
.ya0{bottom:559.370133pt;}
.y15b{bottom:563.836000pt;}
.yc1{bottom:569.302267pt;}
.y80{bottom:572.472400pt;}
.y44{bottom:575.370000pt;}
.y9f{bottom:575.370133pt;}
.y100{bottom:575.825467pt;}
.y15a{bottom:579.836000pt;}
.yc0{bottom:585.168933pt;}
.yff{bottom:589.158800pt;}
.yf{bottom:590.933467pt;}
.y43{bottom:591.370000pt;}
.y159{bottom:595.836000pt;}
.ybf{bottom:598.502267pt;}
.yfe{bottom:602.492133pt;}
.yaa{bottom:606.584533pt;}
.ye{bottom:606.933467pt;}
.y42{bottom:607.370000pt;}
.y7f{bottom:607.370133pt;}
.y158{bottom:611.836000pt;}
.ya9{bottom:621.142133pt;}
.ybe{bottom:621.750267pt;}
.yfd{bottom:622.920000pt;}
.yd{bottom:622.933467pt;}
.y41{bottom:623.370000pt;}
.y7e{bottom:623.370133pt;}
.y157{bottom:627.836000pt;}
.ya8{bottom:635.699867pt;}
.yfc{bottom:637.477733pt;}
.ybd{bottom:637.750267pt;}
.y40{bottom:639.370000pt;}
.y7d{bottom:639.370133pt;}
.y126{bottom:642.246667pt;}
.y156{bottom:643.836000pt;}
.yfb{bottom:652.035467pt;}
.ybc{bottom:653.750267pt;}
.yc{bottom:654.051600pt;}
.y3f{bottom:655.370000pt;}
.y7c{bottom:655.370133pt;}
.y12c{bottom:657.548267pt;}
.ya7{bottom:658.947867pt;}
.y155{bottom:659.836000pt;}
.yfa{bottom:666.593067pt;}
.y3e{bottom:671.370000pt;}
.y7b{bottom:671.370133pt;}
.ya6{bottom:674.947867pt;}
.y154{bottom:675.836000pt;}
.yf9{bottom:681.150800pt;}
.y3d{bottom:687.370000pt;}
.y7a{bottom:687.370133pt;}
.y10c{bottom:687.620133pt;}
.y153{bottom:691.836000pt;}
.yf8{bottom:695.708533pt;}
.yb{bottom:696.508267pt;}
.y9e{bottom:700.472533pt;}
.y10b{bottom:700.953467pt;}
.y3c{bottom:703.370000pt;}
.y79{bottom:703.370133pt;}
.y12b{bottom:705.548400pt;}
.y152{bottom:707.836000pt;}
.yf7{bottom:710.266133pt;}
.y3b{bottom:719.370000pt;}
.y78{bottom:719.370133pt;}
.ya{bottom:720.067333pt;}
.y10a{bottom:721.381333pt;}
.y151{bottom:723.836000pt;}
.yf6{bottom:724.823867pt;}
.y3a{bottom:735.370000pt;}
.y77{bottom:735.370133pt;}
.y109{bottom:735.939067pt;}
.y9{bottom:736.067333pt;}
.yf5{bottom:739.381733pt;}
.y150{bottom:739.836000pt;}
.y108{bottom:750.496800pt;}
.y39{bottom:751.370000pt;}
.y76{bottom:751.370133pt;}
.y8{bottom:752.067333pt;}
.y12a{bottom:753.548400pt;}
.yf4{bottom:753.939333pt;}
.y14f{bottom:755.836000pt;}
.y107{bottom:765.054400pt;}
.y38{bottom:767.370000pt;}
.y75{bottom:767.370133pt;}
.y7{bottom:768.067333pt;}
.yf3{bottom:768.497067pt;}
.y14e{bottom:771.836000pt;}
.y106{bottom:779.612133pt;}
.yf2{bottom:783.054800pt;}
.y37{bottom:783.370000pt;}
.y74{bottom:783.370133pt;}
.y6{bottom:784.067333pt;}
.y14d{bottom:787.836000pt;}
.y105{bottom:794.169867pt;}
.yf1{bottom:797.612533pt;}
.y36{bottom:799.370000pt;}
.y73{bottom:799.370133pt;}
.y14c{bottom:803.836000pt;}
.y5{bottom:807.626400pt;}
.yf0{bottom:812.170133pt;}
.y35{bottom:815.370000pt;}
.y72{bottom:815.370133pt;}
.y104{bottom:817.417867pt;}
.y14b{bottom:819.836000pt;}
.yef{bottom:826.727867pt;}
.y4{bottom:826.826400pt;}
.y34{bottom:831.370000pt;}
.y71{bottom:831.370133pt;}
.y103{bottom:833.417867pt;}
.y101{bottom:834.246667pt;}
.y14a{bottom:835.836000pt;}
.yee{bottom:841.285600pt;}
.y3{bottom:846.026400pt;}
.y33{bottom:847.370000pt;}
.y70{bottom:847.370133pt;}
.y102{bottom:849.417867pt;}
.y149{bottom:851.836000pt;}
.yed{bottom:855.843200pt;}
.y32{bottom:863.370000pt;}
.y9d{bottom:863.370133pt;}
.y125{bottom:866.246667pt;}
.y148{bottom:867.836000pt;}
.yec{bottom:870.401067pt;}
.y6f{bottom:876.472533pt;}
.y31{bottom:879.370000pt;}
.y9c{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y147{bottom:883.836000pt;}
.yeb{bottom:884.958800pt;}
.y30{bottom:895.370000pt;}
.y9b{bottom:895.370133pt;}
.yea{bottom:899.516400pt;}
.y146{bottom:899.836000pt;}
.y2f{bottom:911.370000pt;}
.y6e{bottom:911.370133pt;}
.ye9{bottom:914.074133pt;}
.y1{bottom:914.825067pt;}
.y145{bottom:915.836000pt;}
.y2e{bottom:927.370000pt;}
.y6d{bottom:927.370133pt;}
.ye8{bottom:928.631867pt;}
.y144{bottom:931.836000pt;}
.ye7{bottom:943.189600pt;}
.y2d{bottom:943.370000pt;}
.y6c{bottom:943.370133pt;}
.y143{bottom:947.836000pt;}
.ye6{bottom:957.747200pt;}
.y2c{bottom:959.370000pt;}
.y6b{bottom:959.370133pt;}
.y142{bottom:963.836000pt;}
.ye5{bottom:972.304933pt;}
.y2b{bottom:975.370000pt;}
.y6a{bottom:975.370133pt;}
.y141{bottom:979.836000pt;}
.ye4{bottom:986.862667pt;}
.y2a{bottom:991.370000pt;}
.y69{bottom:991.370133pt;}
.y140{bottom:995.836000pt;}
.y27{bottom:1001.533333pt;}
.y63{bottom:1007.370000pt;}
.y68{bottom:1007.370133pt;}
.ye3{bottom:1010.110667pt;}
.y13f{bottom:1011.836000pt;}
.y29{bottom:1020.843867pt;}
.y62{bottom:1023.370000pt;}
.y67{bottom:1023.370133pt;}
.ye2{bottom:1026.110667pt;}
.y13e{bottom:1027.836000pt;}
.y26{bottom:1036.478000pt;}
.y25{bottom:1052.257600pt;}
.y28{bottom:1060.905467pt;}
.ha{height:24.511200pt;}
.hb{height:29.180000pt;}
.h10{height:29.994667pt;}
.hc{height:30.175781pt;}
.h4{height:30.378667pt;}
.hf{height:30.464000pt;}
.h5{height:31.125333pt;}
.h11{height:31.694891pt;}
.h7{height:35.160000pt;}
.h6{height:35.413333pt;}
.h12{height:39.066667pt;}
.h8{height:39.840000pt;}
.he{height:44.266667pt;}
.h9{height:46.880000pt;}
.h3{height:53.120000pt;}
.hd{height:54.693333pt;}
.h2{height:82.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x12{left:85.417333pt;}
.xc{left:98.267600pt;}
.x2e{left:107.848000pt;}
.x13{left:111.099600pt;}
.x21{left:125.009333pt;}
.x3{left:129.087067pt;}
.x14{left:132.944533pt;}
.x33{left:185.369067pt;}
.x38{left:186.814800pt;}
.x2{left:188.301467pt;}
.x31{left:192.862533pt;}
.x34{left:202.040800pt;}
.x2b{left:210.362000pt;}
.x35{left:214.173733pt;}
.x37{left:215.101867pt;}
.x2a{left:216.276800pt;}
.x2c{left:217.722400pt;}
.x29{left:220.031333pt;}
.x32{left:222.018933pt;}
.x27{left:223.770267pt;}
.x4{left:225.876800pt;}
.x30{left:228.840400pt;}
.x11{left:232.234133pt;}
.x26{left:246.505467pt;}
.x22{left:251.134933pt;}
.x28{left:252.926667pt;}
.x2d{left:255.646667pt;}
.x25{left:256.713333pt;}
.x24{left:259.748000pt;}
.x23{left:263.897200pt;}
.xb{left:273.632133pt;}
.x5{left:274.849200pt;}
.x36{left:316.293867pt;}
.xa{left:333.851067pt;}
.x2f{left:341.653200pt;}
.x6{left:388.774133pt;}
.xd{left:404.850400pt;}
.x10{left:407.119333pt;}
.xe{left:419.968400pt;}
.x7{left:439.160667pt;}
.xf{left:444.361867pt;}
.x1b{left:483.724133pt;}
.x20{left:486.092000pt;}
.x1f{left:488.652000pt;}
.x1a{left:489.804000pt;}
.x1c{left:492.076000pt;}
.x15{left:502.678667pt;}
.x9{left:534.411200pt;}
.x1d{left:535.869467pt;}
.x1e{left:544.424000pt;}
.x16{left:591.668133pt;}
.x8{left:622.827600pt;}
.x17{left:627.054400pt;}
.x18{left:636.917867pt;}
.x19{left:691.028533pt;}
}




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