
    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_7c601a2b87ae2fe2d10a764a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.843262;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_ca0e2b947e3fffb3364f118c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_e472ad6fa2404023edd7113e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100586;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_b559c91ad36163a6a62c6641.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9284d9e1ea458473f02c455.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.856000px;}
.ls29{letter-spacing:-4.087800px;}
.ls2d{letter-spacing:-1.263600px;}
.ls9{letter-spacing:-1.260600px;}
.ls6{letter-spacing:-1.254000px;}
.ls8{letter-spacing:-1.247400px;}
.ls19{letter-spacing:-1.240800px;}
.ls1a{letter-spacing:-1.207800px;}
.lsb{letter-spacing:-0.943800px;}
.lsc{letter-spacing:-0.937200px;}
.ls39{letter-spacing:-0.930600px;}
.ls28{letter-spacing:-0.627000px;}
.ls1c{letter-spacing:-0.620400px;}
.ls10{letter-spacing:-0.613800px;}
.ls1f{letter-spacing:-0.607200px;}
.ls36{letter-spacing:-0.600600px;}
.ls37{letter-spacing:-0.594000px;}
.ls2e{letter-spacing:-0.507600px;}
.ls31{letter-spacing:-0.336600px;}
.ls3d{letter-spacing:-0.323400px;}
.ls23{letter-spacing:-0.316800px;}
.ls2a{letter-spacing:-0.310200px;}
.ls32{letter-spacing:-0.303600px;}
.ls11{letter-spacing:-0.297000px;}
.ls2f{letter-spacing:-0.290400px;}
.lsf{letter-spacing:-0.283800px;}
.ls1d{letter-spacing:-0.277200px;}
.ls30{letter-spacing:-0.270600px;}
.ls33{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.248400px;}
.ls3b{letter-spacing:-0.224400px;}
.ls3a{letter-spacing:-0.217800px;}
.ls34{letter-spacing:-0.138600px;}
.ls2c{letter-spacing:-0.072600px;}
.ls22{letter-spacing:-0.046200px;}
.lse{letter-spacing:-0.039600px;}
.ls21{letter-spacing:-0.033000px;}
.lsd{letter-spacing:-0.026400px;}
.ls4{letter-spacing:-0.019800px;}
.ls27{letter-spacing:-0.016200px;}
.ls5{letter-spacing:-0.013200px;}
.ls18{letter-spacing:-0.010800px;}
.ls13{letter-spacing:-0.008100px;}
.lsa{letter-spacing:-0.006600px;}
.ls15{letter-spacing:-0.005400px;}
.ls12{letter-spacing:-0.004050px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.005521px;}
.ls16{letter-spacing:0.006600px;}
.ls26{letter-spacing:0.010800px;}
.ls17{letter-spacing:0.013200px;}
.ls2{letter-spacing:0.018000px;}
.ls3c{letter-spacing:0.022083px;}
.ls35{letter-spacing:0.165000px;}
.ls25{letter-spacing:0.323400px;}
.ls2b{letter-spacing:0.574200px;}
.ls20{letter-spacing:0.897600px;}
.ls38{letter-spacing:1.194600px;}
.ls24{letter-spacing:1.234200px;}
.ls1e{letter-spacing:1.240800px;}
.ls0{letter-spacing:16.896000px;}
.ls1{letter-spacing:18.138000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wscd{word-spacing:-54.000000px;}
.ws16a{word-spacing:-16.513200px;}
.ws6f{word-spacing:-16.500000px;}
.ws1b{word-spacing:-16.493400px;}
.ws36{word-spacing:-16.486800px;}
.wseb{word-spacing:-16.480200px;}
.ws135{word-spacing:-16.473600px;}
.ws70{word-spacing:-15.562800px;}
.ws0{word-spacing:-13.500000px;}
.ws102{word-spacing:-13.494600px;}
.ws101{word-spacing:-13.489200px;}
.ws5{word-spacing:-10.120950px;}
.wse2{word-spacing:-2.725800px;}
.ws124{word-spacing:-2.508000px;}
.ws8b{word-spacing:-2.428800px;}
.wse1{word-spacing:-2.422200px;}
.ws108{word-spacing:-2.415600px;}
.wsc1{word-spacing:-2.362800px;}
.ws7d{word-spacing:-2.310000px;}
.ws60{word-spacing:-2.296800px;}
.wsc7{word-spacing:-2.283600px;}
.ws10c{word-spacing:-2.277000px;}
.ws4f{word-spacing:-2.230800px;}
.ws8a{word-spacing:-2.217600px;}
.ws113{word-spacing:-2.171400px;}
.ws12f{word-spacing:-2.164800px;}
.ws14{word-spacing:-2.158200px;}
.ws43{word-spacing:-2.098800px;}
.ws174{word-spacing:-2.065800px;}
.ws175{word-spacing:-2.052600px;}
.ws10{word-spacing:-2.039400px;}
.wsf3{word-spacing:-2.032800px;}
.ws127{word-spacing:-2.019600px;}
.ws133{word-spacing:-1.960200px;}
.ws12d{word-spacing:-1.894200px;}
.ws18{word-spacing:-1.887600px;}
.ws1{word-spacing:-1.848000px;}
.ws2f{word-spacing:-1.834800px;}
.ws88{word-spacing:-1.821600px;}
.ws14d{word-spacing:-1.768800px;}
.ws160{word-spacing:-1.762200px;}
.ws16e{word-spacing:-1.716000px;}
.ws25{word-spacing:-1.702800px;}
.wsc5{word-spacing:-1.696200px;}
.wsc6{word-spacing:-1.683000px;}
.ws15f{word-spacing:-1.669800px;}
.ws69{word-spacing:-1.636800px;}
.ws46{word-spacing:-1.623600px;}
.ws76{word-spacing:-1.551000px;}
.ws3f{word-spacing:-1.511400px;}
.wsaa{word-spacing:-1.504800px;}
.ws10f{word-spacing:-1.425600px;}
.ws5a{word-spacing:-1.379400px;}
.ws7c{word-spacing:-1.372800px;}
.ws35{word-spacing:-1.366200px;}
.ws80{word-spacing:-1.306800px;}
.wse{word-spacing:-1.247400px;}
.wsf1{word-spacing:-1.234200px;}
.ws82{word-spacing:-1.227600px;}
.wse0{word-spacing:-1.181400px;}
.wsf5{word-spacing:-1.174800px;}
.ws162{word-spacing:-1.161600px;}
.wsa1{word-spacing:-1.115400px;}
.wsc{word-spacing:-1.102200px;}
.ws161{word-spacing:-1.069200px;}
.ws128{word-spacing:-1.029600px;}
.ws66{word-spacing:-0.983400px;}
.ws6b{word-spacing:-0.976800px;}
.wsf6{word-spacing:-0.970200px;}
.wsf9{word-spacing:-0.963600px;}
.ws7e{word-spacing:-0.917400px;}
.ws152{word-spacing:-0.910800px;}
.ws149{word-spacing:-0.851400px;}
.ws71{word-spacing:-0.778800px;}
.wsdf{word-spacing:-0.772200px;}
.ws11{word-spacing:-0.712800px;}
.ws32{word-spacing:-0.646800px;}
.ws114{word-spacing:-0.587400px;}
.wse6{word-spacing:-0.580800px;}
.ws78{word-spacing:-0.514800px;}
.ws15{word-spacing:-0.442200px;}
.wsc4{word-spacing:-0.382800px;}
.ws11f{word-spacing:-0.323400px;}
.ws13{word-spacing:-0.290400px;}
.ws98{word-spacing:-0.283800px;}
.ws16b{word-spacing:-0.237600px;}
.ws97{word-spacing:-0.231000px;}
.ws126{word-spacing:-0.158400px;}
.ws11c{word-spacing:-0.145200px;}
.ws9d{word-spacing:-0.125400px;}
.wsf{word-spacing:-0.112200px;}
.ws11e{word-spacing:-0.079200px;}
.ws87{word-spacing:-0.052800px;}
.ws6{word-spacing:0.000000px;}
.ws6d{word-spacing:0.013200px;}
.ws4e{word-spacing:0.072600px;}
.ws16c{word-spacing:0.138600px;}
.ws61{word-spacing:0.191400px;}
.ws142{word-spacing:0.198000px;}
.ws141{word-spacing:0.204600px;}
.ws143{word-spacing:0.224400px;}
.ws86{word-spacing:0.250800px;}
.ws163{word-spacing:0.343200px;}
.ws64{word-spacing:0.349800px;}
.ws12a{word-spacing:0.402600px;}
.ws90{word-spacing:0.409200px;}
.ws2e{word-spacing:0.541200px;}
.ws107{word-spacing:0.600600px;}
.ws2a{word-spacing:0.613800px;}
.ws5f{word-spacing:0.732600px;}
.ws1c{word-spacing:0.739200px;}
.ws137{word-spacing:0.798600px;}
.ws116{word-spacing:0.805200px;}
.ws136{word-spacing:0.864600px;}
.ws4a{word-spacing:0.871200px;}
.ws9f{word-spacing:0.930600px;}
.ws123{word-spacing:0.937200px;}
.ws74{word-spacing:0.996600px;}
.ws14e{word-spacing:1.003200px;}
.ws33{word-spacing:1.062600px;}
.ws15a{word-spacing:1.069200px;}
.wse4{word-spacing:1.075800px;}
.wsd9{word-spacing:1.095600px;}
.ws56{word-spacing:1.135200px;}
.ws150{word-spacing:1.194600px;}
.ws2b{word-spacing:1.201200px;}
.ws21{word-spacing:1.207800px;}
.ws106{word-spacing:1.267200px;}
.ws10d{word-spacing:1.273800px;}
.ws37{word-spacing:1.328400px;}
.ws2c{word-spacing:1.333200px;}
.wsb9{word-spacing:1.339200px;}
.ws104{word-spacing:1.344600px;}
.ws19{word-spacing:1.350000px;}
.ws38{word-spacing:1.355400px;}
.ws1d{word-spacing:1.360800px;}
.wsbf{word-spacing:1.366200px;}
.ws105{word-spacing:1.371600px;}
.wsd{word-spacing:1.392600px;}
.ws54{word-spacing:1.399200px;}
.ws16{word-spacing:1.458600px;}
.wse3{word-spacing:1.465200px;}
.ws53{word-spacing:1.531200px;}
.wsab{word-spacing:1.551000px;}
.ws13a{word-spacing:1.590600px;}
.wsad{word-spacing:1.597200px;}
.wsa2{word-spacing:1.623600px;}
.ws9{word-spacing:1.643400px;}
.ws8{word-spacing:1.650000px;}
.wsa{word-spacing:1.656600px;}
.wsb{word-spacing:1.663200px;}
.ws7{word-spacing:1.669800px;}
.ws84{word-spacing:1.676400px;}
.ws48{word-spacing:1.722600px;}
.ws134{word-spacing:1.742400px;}
.ws31{word-spacing:1.795200px;}
.ws153{word-spacing:1.854600px;}
.wsed{word-spacing:1.861200px;}
.ws168{word-spacing:1.927200px;}
.ws148{word-spacing:1.980000px;}
.ws15c{word-spacing:1.993200px;}
.ws11a{word-spacing:2.085600px;}
.ws119{word-spacing:2.092200px;}
.ws1e{word-spacing:2.125200px;}
.ws1a{word-spacing:2.178000px;}
.wsee{word-spacing:2.191200px;}
.ws8c{word-spacing:2.197800px;}
.ws16f{word-spacing:2.244000px;}
.ws4c{word-spacing:2.257200px;}
.ws12{word-spacing:2.323200px;}
.ws7b{word-spacing:2.514600px;}
.ws1f{word-spacing:2.587200px;}
.ws16d{word-spacing:2.646600px;}
.wsde{word-spacing:2.719200px;}
.ws138{word-spacing:2.778600px;}
.ws28{word-spacing:2.785200px;}
.ws55{word-spacing:2.851200px;}
.ws47{word-spacing:2.917200px;}
.ws130{word-spacing:2.983200px;}
.ws40{word-spacing:3.049200px;}
.ws17{word-spacing:3.115200px;}
.ws14a{word-spacing:3.168000px;}
.ws6c{word-spacing:3.181200px;}
.ws27{word-spacing:3.247200px;}
.ws5c{word-spacing:3.306600px;}
.ws39{word-spacing:3.372600px;}
.wsc8{word-spacing:3.438600px;}
.ws22{word-spacing:3.445200px;}
.wsa5{word-spacing:3.498000px;}
.ws89{word-spacing:3.511200px;}
.wsa6{word-spacing:3.517800px;}
.ws49{word-spacing:3.577200px;}
.ws57{word-spacing:3.709200px;}
.wsf2{word-spacing:3.775200px;}
.ws151{word-spacing:3.834600px;}
.ws34{word-spacing:3.847800px;}
.ws169{word-spacing:4.164600px;}
.ws24{word-spacing:4.171200px;}
.wsf0{word-spacing:4.230600px;}
.ws67{word-spacing:4.237200px;}
.ws5d{word-spacing:4.296600px;}
.ws14b{word-spacing:4.303200px;}
.ws9b{word-spacing:4.573800px;}
.ws140{word-spacing:4.580400px;}
.ws3{word-spacing:4.742550px;}
.ws4{word-spacing:4.746600px;}
.ws2{word-spacing:4.777050px;}
.ws13d{word-spacing:4.824600px;}
.ws72{word-spacing:4.831200px;}
.ws147{word-spacing:5.095200px;}
.ws42{word-spacing:5.148000px;}
.ws8e{word-spacing:5.154600px;}
.ws15d{word-spacing:5.161200px;}
.ws30{word-spacing:5.227200px;}
.ws4d{word-spacing:5.484600px;}
.ws9c{word-spacing:5.491200px;}
.wsf4{word-spacing:5.550600px;}
.ws3b{word-spacing:5.563800px;}
.ws14f{word-spacing:5.616600px;}
.wsec{word-spacing:5.623200px;}
.ws172{word-spacing:5.735400px;}
.ws173{word-spacing:5.748600px;}
.wsfa{word-spacing:5.755200px;}
.ws166{word-spacing:5.814600px;}
.ws2d{word-spacing:5.821200px;}
.ws94{word-spacing:6.019200px;}
.ws99{word-spacing:6.144600px;}
.wse8{word-spacing:6.151200px;}
.ws118{word-spacing:6.217200px;}
.wsc2{word-spacing:6.276600px;}
.wsfd{word-spacing:6.283200px;}
.ws170{word-spacing:6.336000px;}
.ws171{word-spacing:6.349200px;}
.ws159{word-spacing:6.408600px;}
.ws158{word-spacing:6.421800px;}
.ws9e{word-spacing:6.481200px;}
.ws3d{word-spacing:6.547200px;}
.wsac{word-spacing:6.877200px;}
.wsa4{word-spacing:6.883800px;}
.wsa0{word-spacing:6.943200px;}
.ws155{word-spacing:7.207200px;}
.ws156{word-spacing:7.213800px;}
.ws109{word-spacing:7.405200px;}
.ws13c{word-spacing:7.530600px;}
.ws92{word-spacing:7.603200px;}
.wsf8{word-spacing:7.662600px;}
.ws111{word-spacing:7.801200px;}
.wsb1{word-spacing:7.867200px;}
.ws50{word-spacing:7.999200px;}
.ws13b{word-spacing:8.065200px;}
.wse5{word-spacing:8.263200px;}
.wsc0{word-spacing:8.461200px;}
.ws11b{word-spacing:8.692200px;}
.ws11d{word-spacing:8.758200px;}
.ws44{word-spacing:8.857200px;}
.wsaf{word-spacing:9.055200px;}
.ws26{word-spacing:9.187200px;}
.ws5e{word-spacing:9.319200px;}
.wsea{word-spacing:9.451200px;}
.wsf7{word-spacing:9.576600px;}
.ws3e{word-spacing:9.583200px;}
.wsfc{word-spacing:9.847200px;}
.ws12c{word-spacing:9.972600px;}
.ws58{word-spacing:9.979200px;}
.wsd8{word-spacing:10.111200px;}
.ws129{word-spacing:10.276200px;}
.ws7a{word-spacing:10.309200px;}
.ws3a{word-spacing:10.441200px;}
.ws12b{word-spacing:10.454400px;}
.wsfb{word-spacing:10.705200px;}
.ws115{word-spacing:10.771200px;}
.ws75{word-spacing:10.837200px;}
.ws13f{word-spacing:11.028600px;}
.ws13e{word-spacing:11.041800px;}
.ws20{word-spacing:11.094600px;}
.ws10e{word-spacing:11.292600px;}
.ws5b{word-spacing:11.695200px;}
.ws164{word-spacing:11.754600px;}
.ws7f{word-spacing:11.952600px;}
.ws6a{word-spacing:11.959200px;}
.ws10b{word-spacing:12.025200px;}
.ws65{word-spacing:12.355200px;}
.ws120{word-spacing:12.447600px;}
.ws68{word-spacing:12.619200px;}
.ws41{word-spacing:12.665400px;}
.ws29{word-spacing:12.678600px;}
.ws131{word-spacing:12.883200px;}
.ws51{word-spacing:12.949200px;}
.ws125{word-spacing:13.081200px;}
.ws63{word-spacing:13.213200px;}
.ws122{word-spacing:13.767600px;}
.ws132{word-spacing:13.873200px;}
.ws15e{word-spacing:14.130600px;}
.ws59{word-spacing:14.137200px;}
.ws112{word-spacing:14.335200px;}
.wse9{word-spacing:14.665200px;}
.ws139{word-spacing:14.797200px;}
.ws10a{word-spacing:14.929200px;}
.ws79{word-spacing:15.061200px;}
.ws91{word-spacing:15.120600px;}
.ws14c{word-spacing:15.127200px;}
.ws45{word-spacing:15.391200px;}
.ws83{word-spacing:15.397800px;}
.ws6e{word-spacing:15.648600px;}
.wse7{word-spacing:15.655200px;}
.ws9a{word-spacing:15.668400px;}
.ws73{word-spacing:15.787200px;}
.ws4b{word-spacing:15.985200px;}
.ws145{word-spacing:16.374600px;}
.ws146{word-spacing:16.381200px;}
.ws117{word-spacing:16.711200px;}
.ws77{word-spacing:16.764000px;}
.ws154{word-spacing:17.311800px;}
.ws167{word-spacing:17.635200px;}
.ws85{word-spacing:17.694600px;}
.ws23{word-spacing:17.707800px;}
.ws110{word-spacing:18.097200px;}
.wsc3{word-spacing:18.618600px;}
.wsa7{word-spacing:19.014600px;}
.ws121{word-spacing:19.113600px;}
.ws8d{word-spacing:19.417200px;}
.ws3c{word-spacing:19.542600px;}
.ws62{word-spacing:19.608600px;}
.wsa3{word-spacing:19.720800px;}
.ws157{word-spacing:19.872600px;}
.ws95{word-spacing:20.816400px;}
.wsae{word-spacing:21.813000px;}
.wsa8{word-spacing:22.446600px;}
.ws96{word-spacing:22.532400px;}
.ws93{word-spacing:23.047200px;}
.ws12e{word-spacing:23.179200px;}
.ws15b{word-spacing:23.555400px;}
.ws165{word-spacing:23.766600px;}
.ws8f{word-spacing:23.852400px;}
.wsa9{word-spacing:23.911800px;}
.wsef{word-spacing:24.175800px;}
.wsb0{word-spacing:24.426600px;}
.ws144{word-spacing:24.585000px;}
.ws52{word-spacing:24.769800px;}
.ws81{word-spacing:24.829200px;}
.wsff{word-spacing:25.320600px;}
.ws100{word-spacing:29.964600px;}
.wsfe{word-spacing:32.248800px;}
.ws103{word-spacing:86.124600px;}
.wsbc{word-spacing:284.374800px;}
.wsb2{word-spacing:298.900800px;}
.wsba{word-spacing:334.573200px;}
.wsbd{word-spacing:404.184600px;}
.wsb4{word-spacing:427.550400px;}
.wsb5{word-spacing:441.639000px;}
.wsbb{word-spacing:442.324800px;}
.wsb3{word-spacing:446.148000px;}
.wsbe{word-spacing:461.019600px;}
.wsb8{word-spacing:462.726000px;}
.wsb7{word-spacing:467.834400px;}
.wsdb{word-spacing:493.592400px;}
.wsb6{word-spacing:494.294400px;}
.wscc{word-spacing:495.390600px;}
.wsd7{word-spacing:520.246800px;}
.wsce{word-spacing:520.349400px;}
.wsca{word-spacing:524.966400px;}
.wscb{word-spacing:553.494600px;}
.wsd5{word-spacing:576.439200px;}
.wsd4{word-spacing:613.391400px;}
.wsd6{word-spacing:619.601400px;}
.wsd3{word-spacing:656.100000px;}
.wsd2{word-spacing:662.256000px;}
.wsd0{word-spacing:670.464000px;}
.wsdc{word-spacing:675.810000px;}
.wscf{word-spacing:716.023800px;}
.wsd1{word-spacing:721.548000px;}
.wsdd{word-spacing:752.463000px;}
.wsda{word-spacing:754.196400px;}
.wsc9{word-spacing:1114.808400px;}
._7e{margin-left:-9.636000px;}
._d{margin-left:-8.250000px;}
._9{margin-left:-7.128000px;}
._1{margin-left:-5.478000px;}
._6{margin-left:-4.422000px;}
._0{margin-left:-2.442000px;}
._2{margin-left:-1.254000px;}
._4{width:1.011600px;}
._3{width:2.178000px;}
._5{width:3.608400px;}
._14{width:4.860000px;}
._7{width:8.646000px;}
._7f{width:14.739600px;}
._a{width:16.447200px;}
._b{width:22.605000px;}
._8{width:23.694000px;}
._e{width:25.423200px;}
._c{width:27.957600px;}
._5c{width:31.806000px;}
._5b{width:34.074000px;}
._67{width:56.106000px;}
._6b{width:62.100000px;}
._5e{width:63.840000px;}
._59{width:72.198000px;}
._5d{width:74.358000px;}
._5a{width:77.004000px;}
._66{width:78.948000px;}
._6f{width:87.426000px;}
._5f{width:96.768000px;}
._61{width:98.874000px;}
._35{width:103.280400px;}
._58{width:109.038000px;}
._68{width:121.352400px;}
._2b{width:124.395600px;}
._63{width:125.463600px;}
._69{width:135.474000px;}
._24{width:137.712000px;}
._64{width:143.100000px;}
._6c{width:146.732400px;}
._2a{width:148.674000px;}
._1d{width:155.368800px;}
._6a{width:157.194000px;}
._6d{width:160.057200px;}
._26{width:163.848000px;}
._65{width:165.618000px;}
._27{width:167.736000px;}
._34{width:169.628400px;}
._2c{width:171.948000px;}
._28{width:174.810000px;}
._23{width:176.958000px;}
._29{width:179.346000px;}
._60{width:180.966000px;}
._6e{width:182.520000px;}
._22{width:199.422000px;}
._31{width:205.902000px;}
._25{width:209.358000px;}
._20{width:210.950400px;}
._33{width:212.828400px;}
._11{width:222.058800px;}
._2d{width:234.588000px;}
._2f{width:245.862000px;}
._1b{width:247.548000px;}
._2e{width:251.490000px;}
._32{width:255.042000px;}
._51{width:260.024400px;}
._39{width:271.111800px;}
._1c{width:277.430400px;}
._30{width:283.775400px;}
._3b{width:290.973600px;}
._1e{width:329.641200px;}
._50{width:331.462800px;}
._15{width:340.318800px;}
._12{width:344.032200px;}
._10{width:352.512000px;}
._19{width:355.107600px;}
._37{width:356.201400px;}
._43{width:359.290800px;}
._3a{width:361.428600px;}
._4d{width:367.086600px;}
._38{width:369.276000px;}
._1a{width:372.936000px;}
._4b{width:374.166000px;}
._4c{width:381.996000px;}
._17{width:383.529600px;}
._1f{width:386.208000px;}
._16{width:395.744400px;}
._18{width:410.965200px;}
._73{width:427.982400px;}
._f{width:430.644600px;}
._75{width:434.052000px;}
._52{width:435.078000px;}
._55{width:441.114600px;}
._13{width:458.967600px;}
._4e{width:460.215000px;}
._36{width:468.469200px;}
._78{width:489.429000px;}
._4a{width:494.332200px;}
._71{width:499.046400px;}
._46{width:500.850000px;}
._47{width:505.634400px;}
._54{width:508.530000px;}
._3d{width:521.652000px;}
._3c{width:526.926600px;}
._21{width:534.735000px;}
._4f{width:539.843400px;}
._7d{width:557.618400px;}
._57{width:568.993800px;}
._3e{width:573.216600px;}
._7c{width:576.962400px;}
._44{width:587.520000px;}
._56{width:590.836800px;}
._45{width:597.618000px;}
._76{width:608.977200px;}
._48{width:623.649600px;}
._49{width:633.741000px;}
._53{width:680.653800px;}
._42{width:719.868600px;}
._79{width:738.007200px;}
._77{width:763.561200px;}
._41{width:771.739200px;}
._3f{width:803.684400px;}
._70{width:871.604400px;}
._72{width:901.804800px;}
._7b{width:916.918200px;}
._7a{width:942.662400px;}
._40{width:950.216400px;}
._74{width:963.644400px;}
._62{width:1026.270000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:40.500000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:55.206381px;}
.fs1{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.208500px;}
.y1{bottom:63.486000px;}
.y1c{bottom:109.927500px;}
.y6b{bottom:120.008100px;}
.y156{bottom:120.008250px;}
.y42{bottom:120.024750px;}
.y1b{bottom:126.424500px;}
.y155{bottom:129.067500px;}
.y109{bottom:133.995000px;}
.y6a{bottom:139.511100px;}
.y80{bottom:139.511250px;}
.y41{bottom:139.527750px;}
.ye6{bottom:139.626000px;}
.y1a{bottom:142.921500px;}
.y112{bottom:146.284500px;}
.y154{bottom:148.570500px;}
.y108{bottom:153.498000px;}
.y69{bottom:159.014100px;}
.y7f{bottom:159.014250px;}
.ye5{bottom:162.106500px;}
.y111{bottom:165.790500px;}
.y153{bottom:168.073500px;}
.y107{bottom:173.001000px;}
.y68{bottom:178.517100px;}
.y7e{bottom:178.517250px;}
.y40{bottom:178.533750px;}
.ye4{bottom:184.611000px;}
.y110{bottom:185.284500px;}
.y152{bottom:187.576500px;}
.y106{bottom:192.504000px;}
.ya7{bottom:193.624500px;}
.y67{bottom:198.020100px;}
.y7d{bottom:198.020250px;}
.y3f{bottom:198.036750px;}
.y1e{bottom:200.812500px;}
.y10f{bottom:204.784500px;}
.y151{bottom:207.079500px;}
.ye3{bottom:207.115500px;}
.ya6{bottom:211.660500px;}
.y105{bottom:212.007000px;}
.y66{bottom:217.523100px;}
.y7c{bottom:217.523250px;}
.y3e{bottom:217.539750px;}
.y1d{bottom:220.315500px;}
.y10e{bottom:224.284500px;}
.y150{bottom:226.582500px;}
.ye2{bottom:229.620000px;}
.ya5{bottom:229.656000px;}
.yc9{bottom:230.800500px;}
.y104{bottom:231.510000px;}
.y65{bottom:237.026100px;}
.y82{bottom:237.026250px;}
.y3d{bottom:237.042750px;}
.y10d{bottom:243.790500px;}
.y14f{bottom:246.085500px;}
.ya4{bottom:247.651500px;}
.yc8{bottom:250.303500px;}
.y103{bottom:251.013000px;}
.ye1{bottom:252.124500px;}
.y64{bottom:256.529100px;}
.y7b{bottom:256.529250px;}
.y3c{bottom:256.545750px;}
.y10c{bottom:263.284500px;}
.y14e{bottom:265.588500px;}
.ya3{bottom:265.647000px;}
.yc7{bottom:269.806500px;}
.y102{bottom:270.516000px;}
.ye0{bottom:274.615500px;}
.y63{bottom:276.032100px;}
.y7a{bottom:276.032250px;}
.y3b{bottom:276.048750px;}
.ya2{bottom:283.642500px;}
.y14d{bottom:285.091500px;}
.yc6{bottom:289.309500px;}
.y101{bottom:290.019000px;}
.y62{bottom:295.535100px;}
.y79{bottom:295.535250px;}
.y3a{bottom:295.551750px;}
.ydf{bottom:297.120000px;}
.ya1{bottom:301.638000px;}
.y10b{bottom:302.281500px;}
.y14c{bottom:304.594500px;}
.yc5{bottom:308.812500px;}
.y100{bottom:309.522000px;}
.y61{bottom:315.038100px;}
.y78{bottom:315.038250px;}
.y39{bottom:315.054750px;}
.yde{bottom:319.624500px;}
.ya0{bottom:319.633500px;}
.y10a{bottom:321.784500px;}
.y14b{bottom:324.097500px;}
.yc4{bottom:328.315500px;}
.yff{bottom:329.025000px;}
.y60{bottom:334.541100px;}
.y77{bottom:334.541250px;}
.y38{bottom:334.557750px;}
.y9f{bottom:337.629000px;}
.ydd{bottom:342.124500px;}
.y16{bottom:343.378500px;}
.y14a{bottom:343.600500px;}
.yc3{bottom:347.818500px;}
.yfe{bottom:348.528000px;}
.y5f{bottom:354.044100px;}
.y76{bottom:354.044250px;}
.y37{bottom:354.060750px;}
.y9e{bottom:355.624500px;}
.y15{bottom:362.881500px;}
.y149{bottom:363.103500px;}
.ydc{bottom:364.624500px;}
.yc2{bottom:367.321500px;}
.yfd{bottom:368.031000px;}
.y5e{bottom:373.547100px;}
.y75{bottom:373.547250px;}
.y36{bottom:373.563750px;}
.y9d{bottom:373.660500px;}
.y125{bottom:376.192500px;}
.y148{bottom:382.606500px;}
.yc1{bottom:386.824500px;}
.ydb{bottom:387.120000px;}
.yfc{bottom:387.534000px;}
.y9c{bottom:391.656000px;}
.y130{bottom:392.676000px;}
.y124{bottom:392.689500px;}
.y5d{bottom:393.050100px;}
.y74{bottom:393.050250px;}
.y35{bottom:393.066750px;}
.y14{bottom:401.887500px;}
.y147{bottom:402.109500px;}
.yc0{bottom:406.327500px;}
.yfb{bottom:407.037000px;}
.y137{bottom:409.119000px;}
.y12f{bottom:409.173000px;}
.y123{bottom:409.186500px;}
.yda{bottom:409.624500px;}
.y9b{bottom:409.651500px;}
.y5c{bottom:412.553100px;}
.y81{bottom:412.553250px;}
.y34{bottom:412.569750px;}
.y13{bottom:421.390500px;}
.y146{bottom:421.612500px;}
.ybf{bottom:425.830500px;}
.yfa{bottom:426.540000px;}
.y9a{bottom:427.647000px;}
.y5b{bottom:432.056100px;}
.y73{bottom:432.056250px;}
.y33{bottom:432.072750px;}
.yd9{bottom:432.115500px;}
.y12{bottom:440.893500px;}
.y145{bottom:441.115500px;}
.y12e{bottom:442.167000px;}
.y122{bottom:442.180500px;}
.ybe{bottom:445.333500px;}
.y99{bottom:445.642500px;}
.yf9{bottom:446.043000px;}
.y5a{bottom:451.559100px;}
.y72{bottom:451.559250px;}
.yd8{bottom:454.620000px;}
.y136{bottom:458.623500px;}
.y12d{bottom:458.664000px;}
.y121{bottom:458.677500px;}
.y11{bottom:460.396500px;}
.y144{bottom:460.618500px;}
.y98{bottom:463.638000px;}
.yf8{bottom:465.546000px;}
.y59{bottom:471.062100px;}
.y71{bottom:471.062250px;}
.y32{bottom:471.078750px;}
.yd7{bottom:477.124500px;}
.y10{bottom:479.899500px;}
.y143{bottom:480.121500px;}
.y97{bottom:481.633500px;}
.yf7{bottom:485.049000px;}
.y58{bottom:490.565100px;}
.y70{bottom:490.565250px;}
.y31{bottom:490.581750px;}
.y12c{bottom:491.658000px;}
.y120{bottom:491.671500px;}
.yf{bottom:499.402500px;}
.y142{bottom:499.624500px;}
.y96{bottom:499.629000px;}
.ybd{bottom:502.333500px;}
.yf6{bottom:504.552000px;}
.y135{bottom:508.128000px;}
.y12b{bottom:508.155000px;}
.y11f{bottom:508.168500px;}
.y57{bottom:510.068100px;}
.y6f{bottom:510.068250px;}
.y95{bottom:517.624500px;}
.ye{bottom:518.905500px;}
.yd6{bottom:519.118500px;}
.ybc{bottom:520.369500px;}
.y56{bottom:529.571100px;}
.y6e{bottom:529.571250px;}
.y94{bottom:535.647000px;}
.ybb{bottom:538.365000px;}
.yd{bottom:538.408500px;}
.yd5{bottom:538.621500px;}
.y141{bottom:538.624500px;}
.y12a{bottom:541.149000px;}
.y11e{bottom:541.162500px;}
.y55{bottom:549.074100px;}
.y30{bottom:549.074250px;}
.y93{bottom:553.642500px;}
.yba{bottom:556.360500px;}
.y134{bottom:557.632500px;}
.y129{bottom:557.646000px;}
.y11d{bottom:557.659500px;}
.yc{bottom:557.911500px;}
.yd4{bottom:558.124500px;}
.y140{bottom:561.088500px;}
.yf5{bottom:563.052000px;}
.y54{bottom:568.577100px;}
.y2f{bottom:568.577250px;}
.y92{bottom:571.638000px;}
.yb9{bottom:574.356000px;}
.yb{bottom:577.414500px;}
.y13f{bottom:583.593000px;}
.yf4{bottom:585.525000px;}
.y53{bottom:588.080100px;}
.y6d{bottom:588.080250px;}
.y91{bottom:589.633500px;}
.y128{bottom:590.640000px;}
.y11c{bottom:590.653500px;}
.yb8{bottom:592.351500px;}
.ya{bottom:596.917500px;}
.y13e{bottom:606.097500px;}
.y127{bottom:607.137000px;}
.y11b{bottom:607.150500px;}
.y52{bottom:607.583100px;}
.y2e{bottom:607.583250px;}
.y90{bottom:607.629000px;}
.yf3{bottom:608.029500px;}
.yb7{bottom:610.347000px;}
.y9{bottom:616.420500px;}
.yd3{bottom:616.624500px;}
.y126{bottom:623.634000px;}
.y11a{bottom:623.647500px;}
.y8f{bottom:625.624500px;}
.y51{bottom:627.086100px;}
.y2d{bottom:627.086250px;}
.yb6{bottom:628.342500px;}
.y13d{bottom:628.602000px;}
.yf2{bottom:630.534000px;}
.y8{bottom:635.923500px;}
.yd2{bottom:639.124500px;}
.y8e{bottom:643.669500px;}
.yb5{bottom:646.338000px;}
.y50{bottom:646.589100px;}
.y2c{bottom:646.589250px;}
.y13c{bottom:651.106500px;}
.yf1{bottom:653.038500px;}
.y119{bottom:656.641500px;}
.yd1{bottom:661.624500px;}
.y8d{bottom:661.665000px;}
.yb4{bottom:664.333500px;}
.y4f{bottom:666.092100px;}
.y2b{bottom:666.092250px;}
.y118{bottom:673.138500px;}
.y13b{bottom:673.611000px;}
.yf0{bottom:675.543000px;}
.y8c{bottom:679.660500px;}
.yb3{bottom:682.360500px;}
.yd0{bottom:684.124500px;}
.y4e{bottom:685.595100px;}
.y2a{bottom:685.595250px;}
.y117{bottom:689.635500px;}
.y7{bottom:694.416000px;}
.y13a{bottom:696.115500px;}
.y8b{bottom:697.656000px;}
.yef{bottom:698.047500px;}
.yb2{bottom:700.356000px;}
.y4d{bottom:705.098100px;}
.y29{bottom:705.098250px;}
.ycf{bottom:706.615500px;}
.y6{bottom:713.916000px;}
.y8a{bottom:715.651500px;}
.yb1{bottom:718.351500px;}
.y139{bottom:718.620000px;}
.yee{bottom:720.552000px;}
.y116{bottom:722.629500px;}
.y4c{bottom:724.601100px;}
.y28{bottom:724.601250px;}
.yce{bottom:729.120000px;}
.y5{bottom:733.419000px;}
.y89{bottom:733.647000px;}
.yb0{bottom:736.347000px;}
.y115{bottom:739.126500px;}
.y138{bottom:741.124500px;}
.yed{bottom:743.025150px;}
.y4b{bottom:744.104100px;}
.y27{bottom:744.104250px;}
.ycd{bottom:751.624500px;}
.y88{bottom:751.642500px;}
.y4{bottom:752.910000px;}
.yaf{bottom:754.342500px;}
.y114{bottom:755.623500px;}
.y133{bottom:755.637000px;}
.y4a{bottom:763.607100px;}
.y26{bottom:763.607250px;}
.yec{bottom:765.529650px;}
.y87{bottom:769.638000px;}
.yae{bottom:772.338000px;}
.ycc{bottom:774.115500px;}
.y49{bottom:783.110100px;}
.y25{bottom:783.110250px;}
.y85{bottom:787.633500px;}
.y86{bottom:787.714500px;}
.yeb{bottom:788.034150px;}
.y132{bottom:788.631000px;}
.yad{bottom:790.333500px;}
.y3{bottom:791.916000px;}
.ycb{bottom:796.620000px;}
.y48{bottom:802.613100px;}
.y24{bottom:802.613250px;}
.y131{bottom:805.128000px;}
.y84{bottom:805.629000px;}
.yac{bottom:808.351200px;}
.yea{bottom:810.538650px;}
.y2{bottom:811.419000px;}
.yca{bottom:819.124500px;}
.y113{bottom:821.625000px;}
.y47{bottom:822.116100px;}
.y23{bottom:822.116250px;}
.y83{bottom:823.624500px;}
.yab{bottom:826.346700px;}
.ye9{bottom:833.043150px;}
.y46{bottom:841.619100px;}
.y6c{bottom:841.619250px;}
.yaa{bottom:844.342200px;}
.ye8{bottom:855.547650px;}
.y45{bottom:861.122100px;}
.y22{bottom:861.122250px;}
.ya9{bottom:862.337700px;}
.ye7{bottom:878.052150px;}
.ya8{bottom:880.333200px;}
.y44{bottom:880.625100px;}
.y21{bottom:880.625250px;}
.y18{bottom:889.383900px;}
.y17{bottom:905.883900px;}
.y19{bottom:939.617400px;}
.y43{bottom:943.523550px;}
.y1f{bottom:943.774950px;}
.h2{height:37.900474px;}
.h8{height:45.219727px;}
.ha{height:45.667969px;}
.hb{height:45.720703px;}
.h7{height:55.268555px;}
.h9{height:55.816406px;}
.h3{height:55.880859px;}
.h5{height:63.039727px;}
.h6{height:63.051727px;}
.h4{height:63.075727px;}
.hc{height:1020.465000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:722.812500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:86.539350px;}
.x15{left:87.591900px;}
.x9{left:99.295050px;}
.x24{left:100.347600px;}
.x4{left:101.665350px;}
.x5{left:105.687900px;}
.xf{left:107.797200px;}
.x2{left:117.686850px;}
.x8{left:120.553500px;}
.x13{left:129.043350px;}
.xd{left:135.913200px;}
.x12{left:141.773850px;}
.x16{left:147.549900px;}
.x6{left:148.966500px;}
.x10{left:153.716700px;}
.x11{left:168.796500px;}
.x3{left:189.247350px;}
.x3c{left:203.775000px;}
.x3b{left:227.716500px;}
.xe{left:229.699200px;}
.x1a{left:236.133000px;}
.xc{left:242.476500px;}
.x1f{left:248.089500px;}
.x1e{left:249.979500px;}
.x39{left:282.154200px;}
.x3a{left:295.827600px;}
.x7{left:306.343500px;}
.x36{left:308.046000px;}
.x38{left:314.083500px;}
.x35{left:322.600200px;}
.x37{left:324.313500px;}
.x3d{left:344.412000px;}
.x23{left:347.706000px;}
.x20{left:349.191000px;}
.x3e{left:350.271000px;}
.x21{left:353.970000px;}
.x22{left:356.008500px;}
.x2b{left:364.200000px;}
.x29{left:366.454500px;}
.x2a{left:370.531500px;}
.x27{left:372.804600px;}
.x28{left:379.401000px;}
.x34{left:383.656500px;}
.x25{left:384.765600px;}
.x31{left:386.743500px;}
.x2d{left:395.088000px;}
.x1b{left:396.454500px;}
.x1c{left:398.316000px;}
.x33{left:402.795000px;}
.x26{left:404.273100px;}
.x32{left:405.549000px;}
.x30{left:406.939500px;}
.x18{left:411.808500px;}
.x19{left:413.442000px;}
.x17{left:416.452500px;}
.x2e{left:417.888000px;}
.x1d{left:419.902500px;}
.x2c{left:426.948000px;}
.x2f{left:431.995500px;}
.x3f{left:444.177000px;}
.x41{left:450.036000px;}
.x40{left:453.411000px;}
.x42{left:478.818000px;}
.x43{left:486.621000px;}
.x44{left:542.092500px;}
.x46{left:547.951500px;}
.xa{left:549.614550px;}
.x45{left:551.326500px;}
.x47{left:576.733500px;}
.x48{left:584.536500px;}
.x14{left:614.568000px;}
.x1{left:615.715500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.872000pt;}
.ls29{letter-spacing:-3.633600pt;}
.ls2d{letter-spacing:-1.123200pt;}
.ls9{letter-spacing:-1.120533pt;}
.ls6{letter-spacing:-1.114667pt;}
.ls8{letter-spacing:-1.108800pt;}
.ls19{letter-spacing:-1.102933pt;}
.ls1a{letter-spacing:-1.073600pt;}
.lsb{letter-spacing:-0.838933pt;}
.lsc{letter-spacing:-0.833067pt;}
.ls39{letter-spacing:-0.827200pt;}
.ls28{letter-spacing:-0.557333pt;}
.ls1c{letter-spacing:-0.551467pt;}
.ls10{letter-spacing:-0.545600pt;}
.ls1f{letter-spacing:-0.539733pt;}
.ls36{letter-spacing:-0.533867pt;}
.ls37{letter-spacing:-0.528000pt;}
.ls2e{letter-spacing:-0.451200pt;}
.ls31{letter-spacing:-0.299200pt;}
.ls3d{letter-spacing:-0.287467pt;}
.ls23{letter-spacing:-0.281600pt;}
.ls2a{letter-spacing:-0.275733pt;}
.ls32{letter-spacing:-0.269867pt;}
.ls11{letter-spacing:-0.264000pt;}
.ls2f{letter-spacing:-0.258133pt;}
.lsf{letter-spacing:-0.252267pt;}
.ls1d{letter-spacing:-0.246400pt;}
.ls30{letter-spacing:-0.240533pt;}
.ls33{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.220800pt;}
.ls3b{letter-spacing:-0.199467pt;}
.ls3a{letter-spacing:-0.193600pt;}
.ls34{letter-spacing:-0.123200pt;}
.ls2c{letter-spacing:-0.064533pt;}
.ls22{letter-spacing:-0.041067pt;}
.lse{letter-spacing:-0.035200pt;}
.ls21{letter-spacing:-0.029333pt;}
.lsd{letter-spacing:-0.023467pt;}
.ls4{letter-spacing:-0.017600pt;}
.ls27{letter-spacing:-0.014400pt;}
.ls5{letter-spacing:-0.011733pt;}
.ls18{letter-spacing:-0.009600pt;}
.ls13{letter-spacing:-0.007200pt;}
.lsa{letter-spacing:-0.005867pt;}
.ls15{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:-0.003600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.004907pt;}
.ls16{letter-spacing:0.005867pt;}
.ls26{letter-spacing:0.009600pt;}
.ls17{letter-spacing:0.011733pt;}
.ls2{letter-spacing:0.016000pt;}
.ls3c{letter-spacing:0.019629pt;}
.ls35{letter-spacing:0.146667pt;}
.ls25{letter-spacing:0.287467pt;}
.ls2b{letter-spacing:0.510400pt;}
.ls20{letter-spacing:0.797867pt;}
.ls38{letter-spacing:1.061867pt;}
.ls24{letter-spacing:1.097067pt;}
.ls1e{letter-spacing:1.102933pt;}
.ls0{letter-spacing:15.018667pt;}
.ls1{letter-spacing:16.122667pt;}
.wscd{word-spacing:-48.000000pt;}
.ws16a{word-spacing:-14.678400pt;}
.ws6f{word-spacing:-14.666667pt;}
.ws1b{word-spacing:-14.660800pt;}
.ws36{word-spacing:-14.654933pt;}
.wseb{word-spacing:-14.649067pt;}
.ws135{word-spacing:-14.643200pt;}
.ws70{word-spacing:-13.833600pt;}
.ws0{word-spacing:-12.000000pt;}
.ws102{word-spacing:-11.995200pt;}
.ws101{word-spacing:-11.990400pt;}
.ws5{word-spacing:-8.996400pt;}
.wse2{word-spacing:-2.422933pt;}
.ws124{word-spacing:-2.229333pt;}
.ws8b{word-spacing:-2.158933pt;}
.wse1{word-spacing:-2.153067pt;}
.ws108{word-spacing:-2.147200pt;}
.wsc1{word-spacing:-2.100267pt;}
.ws7d{word-spacing:-2.053333pt;}
.ws60{word-spacing:-2.041600pt;}
.wsc7{word-spacing:-2.029867pt;}
.ws10c{word-spacing:-2.024000pt;}
.ws4f{word-spacing:-1.982933pt;}
.ws8a{word-spacing:-1.971200pt;}
.ws113{word-spacing:-1.930133pt;}
.ws12f{word-spacing:-1.924267pt;}
.ws14{word-spacing:-1.918400pt;}
.ws43{word-spacing:-1.865600pt;}
.ws174{word-spacing:-1.836267pt;}
.ws175{word-spacing:-1.824533pt;}
.ws10{word-spacing:-1.812800pt;}
.wsf3{word-spacing:-1.806933pt;}
.ws127{word-spacing:-1.795200pt;}
.ws133{word-spacing:-1.742400pt;}
.ws12d{word-spacing:-1.683733pt;}
.ws18{word-spacing:-1.677867pt;}
.ws1{word-spacing:-1.642667pt;}
.ws2f{word-spacing:-1.630933pt;}
.ws88{word-spacing:-1.619200pt;}
.ws14d{word-spacing:-1.572267pt;}
.ws160{word-spacing:-1.566400pt;}
.ws16e{word-spacing:-1.525333pt;}
.ws25{word-spacing:-1.513600pt;}
.wsc5{word-spacing:-1.507733pt;}
.wsc6{word-spacing:-1.496000pt;}
.ws15f{word-spacing:-1.484267pt;}
.ws69{word-spacing:-1.454933pt;}
.ws46{word-spacing:-1.443200pt;}
.ws76{word-spacing:-1.378667pt;}
.ws3f{word-spacing:-1.343467pt;}
.wsaa{word-spacing:-1.337600pt;}
.ws10f{word-spacing:-1.267200pt;}
.ws5a{word-spacing:-1.226133pt;}
.ws7c{word-spacing:-1.220267pt;}
.ws35{word-spacing:-1.214400pt;}
.ws80{word-spacing:-1.161600pt;}
.wse{word-spacing:-1.108800pt;}
.wsf1{word-spacing:-1.097067pt;}
.ws82{word-spacing:-1.091200pt;}
.wse0{word-spacing:-1.050133pt;}
.wsf5{word-spacing:-1.044267pt;}
.ws162{word-spacing:-1.032533pt;}
.wsa1{word-spacing:-0.991467pt;}
.wsc{word-spacing:-0.979733pt;}
.ws161{word-spacing:-0.950400pt;}
.ws128{word-spacing:-0.915200pt;}
.ws66{word-spacing:-0.874133pt;}
.ws6b{word-spacing:-0.868267pt;}
.wsf6{word-spacing:-0.862400pt;}
.wsf9{word-spacing:-0.856533pt;}
.ws7e{word-spacing:-0.815467pt;}
.ws152{word-spacing:-0.809600pt;}
.ws149{word-spacing:-0.756800pt;}
.ws71{word-spacing:-0.692267pt;}
.wsdf{word-spacing:-0.686400pt;}
.ws11{word-spacing:-0.633600pt;}
.ws32{word-spacing:-0.574933pt;}
.ws114{word-spacing:-0.522133pt;}
.wse6{word-spacing:-0.516267pt;}
.ws78{word-spacing:-0.457600pt;}
.ws15{word-spacing:-0.393067pt;}
.wsc4{word-spacing:-0.340267pt;}
.ws11f{word-spacing:-0.287467pt;}
.ws13{word-spacing:-0.258133pt;}
.ws98{word-spacing:-0.252267pt;}
.ws16b{word-spacing:-0.211200pt;}
.ws97{word-spacing:-0.205333pt;}
.ws126{word-spacing:-0.140800pt;}
.ws11c{word-spacing:-0.129067pt;}
.ws9d{word-spacing:-0.111467pt;}
.wsf{word-spacing:-0.099733pt;}
.ws11e{word-spacing:-0.070400pt;}
.ws87{word-spacing:-0.046933pt;}
.ws6{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.011733pt;}
.ws4e{word-spacing:0.064533pt;}
.ws16c{word-spacing:0.123200pt;}
.ws61{word-spacing:0.170133pt;}
.ws142{word-spacing:0.176000pt;}
.ws141{word-spacing:0.181867pt;}
.ws143{word-spacing:0.199467pt;}
.ws86{word-spacing:0.222933pt;}
.ws163{word-spacing:0.305067pt;}
.ws64{word-spacing:0.310933pt;}
.ws12a{word-spacing:0.357867pt;}
.ws90{word-spacing:0.363733pt;}
.ws2e{word-spacing:0.481067pt;}
.ws107{word-spacing:0.533867pt;}
.ws2a{word-spacing:0.545600pt;}
.ws5f{word-spacing:0.651200pt;}
.ws1c{word-spacing:0.657067pt;}
.ws137{word-spacing:0.709867pt;}
.ws116{word-spacing:0.715733pt;}
.ws136{word-spacing:0.768533pt;}
.ws4a{word-spacing:0.774400pt;}
.ws9f{word-spacing:0.827200pt;}
.ws123{word-spacing:0.833067pt;}
.ws74{word-spacing:0.885867pt;}
.ws14e{word-spacing:0.891733pt;}
.ws33{word-spacing:0.944533pt;}
.ws15a{word-spacing:0.950400pt;}
.wse4{word-spacing:0.956267pt;}
.wsd9{word-spacing:0.973867pt;}
.ws56{word-spacing:1.009067pt;}
.ws150{word-spacing:1.061867pt;}
.ws2b{word-spacing:1.067733pt;}
.ws21{word-spacing:1.073600pt;}
.ws106{word-spacing:1.126400pt;}
.ws10d{word-spacing:1.132267pt;}
.ws37{word-spacing:1.180800pt;}
.ws2c{word-spacing:1.185067pt;}
.wsb9{word-spacing:1.190400pt;}
.ws104{word-spacing:1.195200pt;}
.ws19{word-spacing:1.200000pt;}
.ws38{word-spacing:1.204800pt;}
.ws1d{word-spacing:1.209600pt;}
.wsbf{word-spacing:1.214400pt;}
.ws105{word-spacing:1.219200pt;}
.wsd{word-spacing:1.237867pt;}
.ws54{word-spacing:1.243733pt;}
.ws16{word-spacing:1.296533pt;}
.wse3{word-spacing:1.302400pt;}
.ws53{word-spacing:1.361067pt;}
.wsab{word-spacing:1.378667pt;}
.ws13a{word-spacing:1.413867pt;}
.wsad{word-spacing:1.419733pt;}
.wsa2{word-spacing:1.443200pt;}
.ws9{word-spacing:1.460800pt;}
.ws8{word-spacing:1.466667pt;}
.wsa{word-spacing:1.472533pt;}
.wsb{word-spacing:1.478400pt;}
.ws7{word-spacing:1.484267pt;}
.ws84{word-spacing:1.490133pt;}
.ws48{word-spacing:1.531200pt;}
.ws134{word-spacing:1.548800pt;}
.ws31{word-spacing:1.595733pt;}
.ws153{word-spacing:1.648533pt;}
.wsed{word-spacing:1.654400pt;}
.ws168{word-spacing:1.713067pt;}
.ws148{word-spacing:1.760000pt;}
.ws15c{word-spacing:1.771733pt;}
.ws11a{word-spacing:1.853867pt;}
.ws119{word-spacing:1.859733pt;}
.ws1e{word-spacing:1.889067pt;}
.ws1a{word-spacing:1.936000pt;}
.wsee{word-spacing:1.947733pt;}
.ws8c{word-spacing:1.953600pt;}
.ws16f{word-spacing:1.994667pt;}
.ws4c{word-spacing:2.006400pt;}
.ws12{word-spacing:2.065067pt;}
.ws7b{word-spacing:2.235200pt;}
.ws1f{word-spacing:2.299733pt;}
.ws16d{word-spacing:2.352533pt;}
.wsde{word-spacing:2.417067pt;}
.ws138{word-spacing:2.469867pt;}
.ws28{word-spacing:2.475733pt;}
.ws55{word-spacing:2.534400pt;}
.ws47{word-spacing:2.593067pt;}
.ws130{word-spacing:2.651733pt;}
.ws40{word-spacing:2.710400pt;}
.ws17{word-spacing:2.769067pt;}
.ws14a{word-spacing:2.816000pt;}
.ws6c{word-spacing:2.827733pt;}
.ws27{word-spacing:2.886400pt;}
.ws5c{word-spacing:2.939200pt;}
.ws39{word-spacing:2.997867pt;}
.wsc8{word-spacing:3.056533pt;}
.ws22{word-spacing:3.062400pt;}
.wsa5{word-spacing:3.109333pt;}
.ws89{word-spacing:3.121067pt;}
.wsa6{word-spacing:3.126933pt;}
.ws49{word-spacing:3.179733pt;}
.ws57{word-spacing:3.297067pt;}
.wsf2{word-spacing:3.355733pt;}
.ws151{word-spacing:3.408533pt;}
.ws34{word-spacing:3.420267pt;}
.ws169{word-spacing:3.701867pt;}
.ws24{word-spacing:3.707733pt;}
.wsf0{word-spacing:3.760533pt;}
.ws67{word-spacing:3.766400pt;}
.ws5d{word-spacing:3.819200pt;}
.ws14b{word-spacing:3.825067pt;}
.ws9b{word-spacing:4.065600pt;}
.ws140{word-spacing:4.071467pt;}
.ws3{word-spacing:4.215600pt;}
.ws4{word-spacing:4.219200pt;}
.ws2{word-spacing:4.246267pt;}
.ws13d{word-spacing:4.288533pt;}
.ws72{word-spacing:4.294400pt;}
.ws147{word-spacing:4.529067pt;}
.ws42{word-spacing:4.576000pt;}
.ws8e{word-spacing:4.581867pt;}
.ws15d{word-spacing:4.587733pt;}
.ws30{word-spacing:4.646400pt;}
.ws4d{word-spacing:4.875200pt;}
.ws9c{word-spacing:4.881067pt;}
.wsf4{word-spacing:4.933867pt;}
.ws3b{word-spacing:4.945600pt;}
.ws14f{word-spacing:4.992533pt;}
.wsec{word-spacing:4.998400pt;}
.ws172{word-spacing:5.098133pt;}
.ws173{word-spacing:5.109867pt;}
.wsfa{word-spacing:5.115733pt;}
.ws166{word-spacing:5.168533pt;}
.ws2d{word-spacing:5.174400pt;}
.ws94{word-spacing:5.350400pt;}
.ws99{word-spacing:5.461867pt;}
.wse8{word-spacing:5.467733pt;}
.ws118{word-spacing:5.526400pt;}
.wsc2{word-spacing:5.579200pt;}
.wsfd{word-spacing:5.585067pt;}
.ws170{word-spacing:5.632000pt;}
.ws171{word-spacing:5.643733pt;}
.ws159{word-spacing:5.696533pt;}
.ws158{word-spacing:5.708267pt;}
.ws9e{word-spacing:5.761067pt;}
.ws3d{word-spacing:5.819733pt;}
.wsac{word-spacing:6.113067pt;}
.wsa4{word-spacing:6.118933pt;}
.wsa0{word-spacing:6.171733pt;}
.ws155{word-spacing:6.406400pt;}
.ws156{word-spacing:6.412267pt;}
.ws109{word-spacing:6.582400pt;}
.ws13c{word-spacing:6.693867pt;}
.ws92{word-spacing:6.758400pt;}
.wsf8{word-spacing:6.811200pt;}
.ws111{word-spacing:6.934400pt;}
.wsb1{word-spacing:6.993067pt;}
.ws50{word-spacing:7.110400pt;}
.ws13b{word-spacing:7.169067pt;}
.wse5{word-spacing:7.345067pt;}
.wsc0{word-spacing:7.521067pt;}
.ws11b{word-spacing:7.726400pt;}
.ws11d{word-spacing:7.785067pt;}
.ws44{word-spacing:7.873067pt;}
.wsaf{word-spacing:8.049067pt;}
.ws26{word-spacing:8.166400pt;}
.ws5e{word-spacing:8.283733pt;}
.wsea{word-spacing:8.401067pt;}
.wsf7{word-spacing:8.512533pt;}
.ws3e{word-spacing:8.518400pt;}
.wsfc{word-spacing:8.753067pt;}
.ws12c{word-spacing:8.864533pt;}
.ws58{word-spacing:8.870400pt;}
.wsd8{word-spacing:8.987733pt;}
.ws129{word-spacing:9.134400pt;}
.ws7a{word-spacing:9.163733pt;}
.ws3a{word-spacing:9.281067pt;}
.ws12b{word-spacing:9.292800pt;}
.wsfb{word-spacing:9.515733pt;}
.ws115{word-spacing:9.574400pt;}
.ws75{word-spacing:9.633067pt;}
.ws13f{word-spacing:9.803200pt;}
.ws13e{word-spacing:9.814933pt;}
.ws20{word-spacing:9.861867pt;}
.ws10e{word-spacing:10.037867pt;}
.ws5b{word-spacing:10.395733pt;}
.ws164{word-spacing:10.448533pt;}
.ws7f{word-spacing:10.624533pt;}
.ws6a{word-spacing:10.630400pt;}
.ws10b{word-spacing:10.689067pt;}
.ws65{word-spacing:10.982400pt;}
.ws120{word-spacing:11.064533pt;}
.ws68{word-spacing:11.217067pt;}
.ws41{word-spacing:11.258133pt;}
.ws29{word-spacing:11.269867pt;}
.ws131{word-spacing:11.451733pt;}
.ws51{word-spacing:11.510400pt;}
.ws125{word-spacing:11.627733pt;}
.ws63{word-spacing:11.745067pt;}
.ws122{word-spacing:12.237867pt;}
.ws132{word-spacing:12.331733pt;}
.ws15e{word-spacing:12.560533pt;}
.ws59{word-spacing:12.566400pt;}
.ws112{word-spacing:12.742400pt;}
.wse9{word-spacing:13.035733pt;}
.ws139{word-spacing:13.153067pt;}
.ws10a{word-spacing:13.270400pt;}
.ws79{word-spacing:13.387733pt;}
.ws91{word-spacing:13.440533pt;}
.ws14c{word-spacing:13.446400pt;}
.ws45{word-spacing:13.681067pt;}
.ws83{word-spacing:13.686933pt;}
.ws6e{word-spacing:13.909867pt;}
.wse7{word-spacing:13.915733pt;}
.ws9a{word-spacing:13.927467pt;}
.ws73{word-spacing:14.033067pt;}
.ws4b{word-spacing:14.209067pt;}
.ws145{word-spacing:14.555200pt;}
.ws146{word-spacing:14.561067pt;}
.ws117{word-spacing:14.854400pt;}
.ws77{word-spacing:14.901333pt;}
.ws154{word-spacing:15.388267pt;}
.ws167{word-spacing:15.675733pt;}
.ws85{word-spacing:15.728533pt;}
.ws23{word-spacing:15.740267pt;}
.ws110{word-spacing:16.086400pt;}
.wsc3{word-spacing:16.549867pt;}
.wsa7{word-spacing:16.901867pt;}
.ws121{word-spacing:16.989867pt;}
.ws8d{word-spacing:17.259733pt;}
.ws3c{word-spacing:17.371200pt;}
.ws62{word-spacing:17.429867pt;}
.wsa3{word-spacing:17.529600pt;}
.ws157{word-spacing:17.664533pt;}
.ws95{word-spacing:18.503467pt;}
.wsae{word-spacing:19.389333pt;}
.wsa8{word-spacing:19.952533pt;}
.ws96{word-spacing:20.028800pt;}
.ws93{word-spacing:20.486400pt;}
.ws12e{word-spacing:20.603733pt;}
.ws15b{word-spacing:20.938133pt;}
.ws165{word-spacing:21.125867pt;}
.ws8f{word-spacing:21.202133pt;}
.wsa9{word-spacing:21.254933pt;}
.wsef{word-spacing:21.489600pt;}
.wsb0{word-spacing:21.712533pt;}
.ws144{word-spacing:21.853333pt;}
.ws52{word-spacing:22.017600pt;}
.ws81{word-spacing:22.070400pt;}
.wsff{word-spacing:22.507200pt;}
.ws100{word-spacing:26.635200pt;}
.wsfe{word-spacing:28.665600pt;}
.ws103{word-spacing:76.555200pt;}
.wsbc{word-spacing:252.777600pt;}
.wsb2{word-spacing:265.689600pt;}
.wsba{word-spacing:297.398400pt;}
.wsbd{word-spacing:359.275200pt;}
.wsb4{word-spacing:380.044800pt;}
.wsb5{word-spacing:392.568000pt;}
.wsbb{word-spacing:393.177600pt;}
.wsb3{word-spacing:396.576000pt;}
.wsbe{word-spacing:409.795200pt;}
.wsb8{word-spacing:411.312000pt;}
.wsb7{word-spacing:415.852800pt;}
.wsdb{word-spacing:438.748800pt;}
.wsb6{word-spacing:439.372800pt;}
.wscc{word-spacing:440.347200pt;}
.wsd7{word-spacing:462.441600pt;}
.wsce{word-spacing:462.532800pt;}
.wsca{word-spacing:466.636800pt;}
.wscb{word-spacing:491.995200pt;}
.wsd5{word-spacing:512.390400pt;}
.wsd4{word-spacing:545.236800pt;}
.wsd6{word-spacing:550.756800pt;}
.wsd3{word-spacing:583.200000pt;}
.wsd2{word-spacing:588.672000pt;}
.wsd0{word-spacing:595.968000pt;}
.wsdc{word-spacing:600.720000pt;}
.wscf{word-spacing:636.465600pt;}
.wsd1{word-spacing:641.376000pt;}
.wsdd{word-spacing:668.856000pt;}
.wsda{word-spacing:670.396800pt;}
.wsc9{word-spacing:990.940800pt;}
._7e{margin-left:-8.565333pt;}
._d{margin-left:-7.333333pt;}
._9{margin-left:-6.336000pt;}
._1{margin-left:-4.869333pt;}
._6{margin-left:-3.930667pt;}
._0{margin-left:-2.170667pt;}
._2{margin-left:-1.114667pt;}
._4{width:0.899200pt;}
._3{width:1.936000pt;}
._5{width:3.207467pt;}
._14{width:4.320000pt;}
._7{width:7.685333pt;}
._7f{width:13.101867pt;}
._a{width:14.619733pt;}
._b{width:20.093333pt;}
._8{width:21.061333pt;}
._e{width:22.598400pt;}
._c{width:24.851200pt;}
._5c{width:28.272000pt;}
._5b{width:30.288000pt;}
._67{width:49.872000pt;}
._6b{width:55.200000pt;}
._5e{width:56.746667pt;}
._59{width:64.176000pt;}
._5d{width:66.096000pt;}
._5a{width:68.448000pt;}
._66{width:70.176000pt;}
._6f{width:77.712000pt;}
._5f{width:86.016000pt;}
._61{width:87.888000pt;}
._35{width:91.804800pt;}
._58{width:96.922667pt;}
._68{width:107.868800pt;}
._2b{width:110.573867pt;}
._63{width:111.523200pt;}
._69{width:120.421333pt;}
._24{width:122.410667pt;}
._64{width:127.200000pt;}
._6c{width:130.428800pt;}
._2a{width:132.154667pt;}
._1d{width:138.105600pt;}
._6a{width:139.728000pt;}
._6d{width:142.273067pt;}
._26{width:145.642667pt;}
._65{width:147.216000pt;}
._27{width:149.098667pt;}
._34{width:150.780800pt;}
._2c{width:152.842667pt;}
._28{width:155.386667pt;}
._23{width:157.296000pt;}
._29{width:159.418667pt;}
._60{width:160.858667pt;}
._6e{width:162.240000pt;}
._22{width:177.264000pt;}
._31{width:183.024000pt;}
._25{width:186.096000pt;}
._20{width:187.511467pt;}
._33{width:189.180800pt;}
._11{width:197.385600pt;}
._2d{width:208.522667pt;}
._2f{width:218.544000pt;}
._1b{width:220.042667pt;}
._2e{width:223.546667pt;}
._32{width:226.704000pt;}
._51{width:231.132800pt;}
._39{width:240.988267pt;}
._1c{width:246.604800pt;}
._30{width:252.244800pt;}
._3b{width:258.643200pt;}
._1e{width:293.014400pt;}
._50{width:294.633600pt;}
._15{width:302.505600pt;}
._12{width:305.806400pt;}
._10{width:313.344000pt;}
._19{width:315.651200pt;}
._37{width:316.623467pt;}
._43{width:319.369600pt;}
._3a{width:321.269867pt;}
._4d{width:326.299200pt;}
._38{width:328.245333pt;}
._1a{width:331.498667pt;}
._4b{width:332.592000pt;}
._4c{width:339.552000pt;}
._17{width:340.915200pt;}
._1f{width:343.296000pt;}
._16{width:351.772800pt;}
._18{width:365.302400pt;}
._73{width:380.428800pt;}
._f{width:382.795200pt;}
._75{width:385.824000pt;}
._52{width:386.736000pt;}
._55{width:392.101867pt;}
._13{width:407.971200pt;}
._4e{width:409.080000pt;}
._36{width:416.417067pt;}
._78{width:435.048000pt;}
._4a{width:439.406400pt;}
._71{width:443.596800pt;}
._46{width:445.200000pt;}
._47{width:449.452800pt;}
._54{width:452.026667pt;}
._3d{width:463.690667pt;}
._3c{width:468.379200pt;}
._21{width:475.320000pt;}
._4f{width:479.860800pt;}
._7d{width:495.660800pt;}
._57{width:505.772267pt;}
._3e{width:509.525867pt;}
._7c{width:512.855467pt;}
._44{width:522.240000pt;}
._56{width:525.188267pt;}
._45{width:531.216000pt;}
._76{width:541.313067pt;}
._48{width:554.355200pt;}
._49{width:563.325333pt;}
._53{width:605.025600pt;}
._42{width:639.883200pt;}
._79{width:656.006400pt;}
._77{width:678.721067pt;}
._41{width:685.990400pt;}
._3f{width:714.386133pt;}
._70{width:774.759467pt;}
._72{width:801.604267pt;}
._7b{width:815.038400pt;}
._7a{width:837.922133pt;}
._40{width:844.636800pt;}
._74{width:856.572800pt;}
._62{width:912.240000pt;}
.fs3{font-size:36.000000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:49.072339pt;}
.fs1{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.185333pt;}
.y1{bottom:56.432000pt;}
.y1c{bottom:97.713333pt;}
.y6b{bottom:106.673867pt;}
.y156{bottom:106.674000pt;}
.y42{bottom:106.688667pt;}
.y1b{bottom:112.377333pt;}
.y155{bottom:114.726667pt;}
.y109{bottom:119.106667pt;}
.y6a{bottom:124.009867pt;}
.y80{bottom:124.010000pt;}
.y41{bottom:124.024667pt;}
.ye6{bottom:124.112000pt;}
.y1a{bottom:127.041333pt;}
.y112{bottom:130.030667pt;}
.y154{bottom:132.062667pt;}
.y108{bottom:136.442667pt;}
.y69{bottom:141.345867pt;}
.y7f{bottom:141.346000pt;}
.ye5{bottom:144.094667pt;}
.y111{bottom:147.369333pt;}
.y153{bottom:149.398667pt;}
.y107{bottom:153.778667pt;}
.y68{bottom:158.681867pt;}
.y7e{bottom:158.682000pt;}
.y40{bottom:158.696667pt;}
.ye4{bottom:164.098667pt;}
.y110{bottom:164.697333pt;}
.y152{bottom:166.734667pt;}
.y106{bottom:171.114667pt;}
.ya7{bottom:172.110667pt;}
.y67{bottom:176.017867pt;}
.y7d{bottom:176.018000pt;}
.y3f{bottom:176.032667pt;}
.y1e{bottom:178.500000pt;}
.y10f{bottom:182.030667pt;}
.y151{bottom:184.070667pt;}
.ye3{bottom:184.102667pt;}
.ya6{bottom:188.142667pt;}
.y105{bottom:188.450667pt;}
.y66{bottom:193.353867pt;}
.y7c{bottom:193.354000pt;}
.y3e{bottom:193.368667pt;}
.y1d{bottom:195.836000pt;}
.y10e{bottom:199.364000pt;}
.y150{bottom:201.406667pt;}
.ye2{bottom:204.106667pt;}
.ya5{bottom:204.138667pt;}
.yc9{bottom:205.156000pt;}
.y104{bottom:205.786667pt;}
.y65{bottom:210.689867pt;}
.y82{bottom:210.690000pt;}
.y3d{bottom:210.704667pt;}
.y10d{bottom:216.702667pt;}
.y14f{bottom:218.742667pt;}
.ya4{bottom:220.134667pt;}
.yc8{bottom:222.492000pt;}
.y103{bottom:223.122667pt;}
.ye1{bottom:224.110667pt;}
.y64{bottom:228.025867pt;}
.y7b{bottom:228.026000pt;}
.y3c{bottom:228.040667pt;}
.y10c{bottom:234.030667pt;}
.y14e{bottom:236.078667pt;}
.ya3{bottom:236.130667pt;}
.yc7{bottom:239.828000pt;}
.y102{bottom:240.458667pt;}
.ye0{bottom:244.102667pt;}
.y63{bottom:245.361867pt;}
.y7a{bottom:245.362000pt;}
.y3b{bottom:245.376667pt;}
.ya2{bottom:252.126667pt;}
.y14d{bottom:253.414667pt;}
.yc6{bottom:257.164000pt;}
.y101{bottom:257.794667pt;}
.y62{bottom:262.697867pt;}
.y79{bottom:262.698000pt;}
.y3a{bottom:262.712667pt;}
.ydf{bottom:264.106667pt;}
.ya1{bottom:268.122667pt;}
.y10b{bottom:268.694667pt;}
.y14c{bottom:270.750667pt;}
.yc5{bottom:274.500000pt;}
.y100{bottom:275.130667pt;}
.y61{bottom:280.033867pt;}
.y78{bottom:280.034000pt;}
.y39{bottom:280.048667pt;}
.yde{bottom:284.110667pt;}
.ya0{bottom:284.118667pt;}
.y10a{bottom:286.030667pt;}
.y14b{bottom:288.086667pt;}
.yc4{bottom:291.836000pt;}
.yff{bottom:292.466667pt;}
.y60{bottom:297.369867pt;}
.y77{bottom:297.370000pt;}
.y38{bottom:297.384667pt;}
.y9f{bottom:300.114667pt;}
.ydd{bottom:304.110667pt;}
.y16{bottom:305.225333pt;}
.y14a{bottom:305.422667pt;}
.yc3{bottom:309.172000pt;}
.yfe{bottom:309.802667pt;}
.y5f{bottom:314.705867pt;}
.y76{bottom:314.706000pt;}
.y37{bottom:314.720667pt;}
.y9e{bottom:316.110667pt;}
.y15{bottom:322.561333pt;}
.y149{bottom:322.758667pt;}
.ydc{bottom:324.110667pt;}
.yc2{bottom:326.508000pt;}
.yfd{bottom:327.138667pt;}
.y5e{bottom:332.041867pt;}
.y75{bottom:332.042000pt;}
.y36{bottom:332.056667pt;}
.y9d{bottom:332.142667pt;}
.y125{bottom:334.393333pt;}
.y148{bottom:340.094667pt;}
.yc1{bottom:343.844000pt;}
.ydb{bottom:344.106667pt;}
.yfc{bottom:344.474667pt;}
.y9c{bottom:348.138667pt;}
.y130{bottom:349.045333pt;}
.y124{bottom:349.057333pt;}
.y5d{bottom:349.377867pt;}
.y74{bottom:349.378000pt;}
.y35{bottom:349.392667pt;}
.y14{bottom:357.233333pt;}
.y147{bottom:357.430667pt;}
.yc0{bottom:361.180000pt;}
.yfb{bottom:361.810667pt;}
.y137{bottom:363.661333pt;}
.y12f{bottom:363.709333pt;}
.y123{bottom:363.721333pt;}
.yda{bottom:364.110667pt;}
.y9b{bottom:364.134667pt;}
.y5c{bottom:366.713867pt;}
.y81{bottom:366.714000pt;}
.y34{bottom:366.728667pt;}
.y13{bottom:374.569333pt;}
.y146{bottom:374.766667pt;}
.ybf{bottom:378.516000pt;}
.yfa{bottom:379.146667pt;}
.y9a{bottom:380.130667pt;}
.y5b{bottom:384.049867pt;}
.y73{bottom:384.050000pt;}
.y33{bottom:384.064667pt;}
.yd9{bottom:384.102667pt;}
.y12{bottom:391.905333pt;}
.y145{bottom:392.102667pt;}
.y12e{bottom:393.037333pt;}
.y122{bottom:393.049333pt;}
.ybe{bottom:395.852000pt;}
.y99{bottom:396.126667pt;}
.yf9{bottom:396.482667pt;}
.y5a{bottom:401.385867pt;}
.y72{bottom:401.386000pt;}
.yd8{bottom:404.106667pt;}
.y136{bottom:407.665333pt;}
.y12d{bottom:407.701333pt;}
.y121{bottom:407.713333pt;}
.y11{bottom:409.241333pt;}
.y144{bottom:409.438667pt;}
.y98{bottom:412.122667pt;}
.yf8{bottom:413.818667pt;}
.y59{bottom:418.721867pt;}
.y71{bottom:418.722000pt;}
.y32{bottom:418.736667pt;}
.yd7{bottom:424.110667pt;}
.y10{bottom:426.577333pt;}
.y143{bottom:426.774667pt;}
.y97{bottom:428.118667pt;}
.yf7{bottom:431.154667pt;}
.y58{bottom:436.057867pt;}
.y70{bottom:436.058000pt;}
.y31{bottom:436.072667pt;}
.y12c{bottom:437.029333pt;}
.y120{bottom:437.041333pt;}
.yf{bottom:443.913333pt;}
.y142{bottom:444.110667pt;}
.y96{bottom:444.114667pt;}
.ybd{bottom:446.518667pt;}
.yf6{bottom:448.490667pt;}
.y135{bottom:451.669333pt;}
.y12b{bottom:451.693333pt;}
.y11f{bottom:451.705333pt;}
.y57{bottom:453.393867pt;}
.y6f{bottom:453.394000pt;}
.y95{bottom:460.110667pt;}
.ye{bottom:461.249333pt;}
.yd6{bottom:461.438667pt;}
.ybc{bottom:462.550667pt;}
.y56{bottom:470.729867pt;}
.y6e{bottom:470.730000pt;}
.y94{bottom:476.130667pt;}
.ybb{bottom:478.546667pt;}
.yd{bottom:478.585333pt;}
.yd5{bottom:478.774667pt;}
.y141{bottom:478.777333pt;}
.y12a{bottom:481.021333pt;}
.y11e{bottom:481.033333pt;}
.y55{bottom:488.065867pt;}
.y30{bottom:488.066000pt;}
.y93{bottom:492.126667pt;}
.yba{bottom:494.542667pt;}
.y134{bottom:495.673333pt;}
.y129{bottom:495.685333pt;}
.y11d{bottom:495.697333pt;}
.yc{bottom:495.921333pt;}
.yd4{bottom:496.110667pt;}
.y140{bottom:498.745333pt;}
.yf5{bottom:500.490667pt;}
.y54{bottom:505.401867pt;}
.y2f{bottom:505.402000pt;}
.y92{bottom:508.122667pt;}
.yb9{bottom:510.538667pt;}
.yb{bottom:513.257333pt;}
.y13f{bottom:518.749333pt;}
.yf4{bottom:520.466667pt;}
.y53{bottom:522.737867pt;}
.y6d{bottom:522.738000pt;}
.y91{bottom:524.118667pt;}
.y128{bottom:525.013333pt;}
.y11c{bottom:525.025333pt;}
.yb8{bottom:526.534667pt;}
.ya{bottom:530.593333pt;}
.y13e{bottom:538.753333pt;}
.y127{bottom:539.677333pt;}
.y11b{bottom:539.689333pt;}
.y52{bottom:540.073867pt;}
.y2e{bottom:540.074000pt;}
.y90{bottom:540.114667pt;}
.yf3{bottom:540.470667pt;}
.yb7{bottom:542.530667pt;}
.y9{bottom:547.929333pt;}
.yd3{bottom:548.110667pt;}
.y126{bottom:554.341333pt;}
.y11a{bottom:554.353333pt;}
.y8f{bottom:556.110667pt;}
.y51{bottom:557.409867pt;}
.y2d{bottom:557.410000pt;}
.yb6{bottom:558.526667pt;}
.y13d{bottom:558.757333pt;}
.yf2{bottom:560.474667pt;}
.y8{bottom:565.265333pt;}
.yd2{bottom:568.110667pt;}
.y8e{bottom:572.150667pt;}
.yb5{bottom:574.522667pt;}
.y50{bottom:574.745867pt;}
.y2c{bottom:574.746000pt;}
.y13c{bottom:578.761333pt;}
.yf1{bottom:580.478667pt;}
.y119{bottom:583.681333pt;}
.yd1{bottom:588.110667pt;}
.y8d{bottom:588.146667pt;}
.yb4{bottom:590.518667pt;}
.y4f{bottom:592.081867pt;}
.y2b{bottom:592.082000pt;}
.y118{bottom:598.345333pt;}
.y13b{bottom:598.765333pt;}
.yf0{bottom:600.482667pt;}
.y8c{bottom:604.142667pt;}
.yb3{bottom:606.542667pt;}
.yd0{bottom:608.110667pt;}
.y4e{bottom:609.417867pt;}
.y2a{bottom:609.418000pt;}
.y117{bottom:613.009333pt;}
.y7{bottom:617.258667pt;}
.y13a{bottom:618.769333pt;}
.y8b{bottom:620.138667pt;}
.yef{bottom:620.486667pt;}
.yb2{bottom:622.538667pt;}
.y4d{bottom:626.753867pt;}
.y29{bottom:626.754000pt;}
.ycf{bottom:628.102667pt;}
.y6{bottom:634.592000pt;}
.y8a{bottom:636.134667pt;}
.yb1{bottom:638.534667pt;}
.y139{bottom:638.773333pt;}
.yee{bottom:640.490667pt;}
.y116{bottom:642.337333pt;}
.y4c{bottom:644.089867pt;}
.y28{bottom:644.090000pt;}
.yce{bottom:648.106667pt;}
.y5{bottom:651.928000pt;}
.y89{bottom:652.130667pt;}
.yb0{bottom:654.530667pt;}
.y115{bottom:657.001333pt;}
.y138{bottom:658.777333pt;}
.yed{bottom:660.466800pt;}
.y4b{bottom:661.425867pt;}
.y27{bottom:661.426000pt;}
.ycd{bottom:668.110667pt;}
.y88{bottom:668.126667pt;}
.y4{bottom:669.253333pt;}
.yaf{bottom:670.526667pt;}
.y114{bottom:671.665333pt;}
.y133{bottom:671.677333pt;}
.y4a{bottom:678.761867pt;}
.y26{bottom:678.762000pt;}
.yec{bottom:680.470800pt;}
.y87{bottom:684.122667pt;}
.yae{bottom:686.522667pt;}
.ycc{bottom:688.102667pt;}
.y49{bottom:696.097867pt;}
.y25{bottom:696.098000pt;}
.y85{bottom:700.118667pt;}
.y86{bottom:700.190667pt;}
.yeb{bottom:700.474800pt;}
.y132{bottom:701.005333pt;}
.yad{bottom:702.518667pt;}
.y3{bottom:703.925333pt;}
.ycb{bottom:708.106667pt;}
.y48{bottom:713.433867pt;}
.y24{bottom:713.434000pt;}
.y131{bottom:715.669333pt;}
.y84{bottom:716.114667pt;}
.yac{bottom:718.534400pt;}
.yea{bottom:720.478800pt;}
.y2{bottom:721.261333pt;}
.yca{bottom:728.110667pt;}
.y113{bottom:730.333333pt;}
.y47{bottom:730.769867pt;}
.y23{bottom:730.770000pt;}
.y83{bottom:732.110667pt;}
.yab{bottom:734.530400pt;}
.ye9{bottom:740.482800pt;}
.y46{bottom:748.105867pt;}
.y6c{bottom:748.106000pt;}
.yaa{bottom:750.526400pt;}
.ye8{bottom:760.486800pt;}
.y45{bottom:765.441867pt;}
.y22{bottom:765.442000pt;}
.ya9{bottom:766.522400pt;}
.ye7{bottom:780.490800pt;}
.ya8{bottom:782.518400pt;}
.y44{bottom:782.777867pt;}
.y21{bottom:782.778000pt;}
.y18{bottom:790.563467pt;}
.y17{bottom:805.230133pt;}
.y19{bottom:835.215467pt;}
.y43{bottom:838.687600pt;}
.y1f{bottom:838.911067pt;}
.h2{height:33.689311pt;}
.h8{height:40.195312pt;}
.ha{height:40.593750pt;}
.hb{height:40.640625pt;}
.h7{height:49.127604pt;}
.h9{height:49.614583pt;}
.h3{height:49.671875pt;}
.h5{height:56.035312pt;}
.h6{height:56.045979pt;}
.h4{height:56.067313pt;}
.hc{height:907.080000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:642.500000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:76.923867pt;}
.x15{left:77.859467pt;}
.x9{left:88.262267pt;}
.x24{left:89.197867pt;}
.x4{left:90.369200pt;}
.x5{left:93.944800pt;}
.xf{left:95.819733pt;}
.x2{left:104.610533pt;}
.x8{left:107.158667pt;}
.x13{left:114.705200pt;}
.xd{left:120.811733pt;}
.x12{left:126.021200pt;}
.x16{left:131.155467pt;}
.x6{left:132.414667pt;}
.x10{left:136.637067pt;}
.x11{left:150.041333pt;}
.x3{left:168.219867pt;}
.x3c{left:181.133333pt;}
.x3b{left:202.414667pt;}
.xe{left:204.177067pt;}
.x1a{left:209.896000pt;}
.xc{left:215.534667pt;}
.x1f{left:220.524000pt;}
.x1e{left:222.204000pt;}
.x39{left:250.803733pt;}
.x3a{left:262.957867pt;}
.x7{left:272.305333pt;}
.x36{left:273.818667pt;}
.x38{left:279.185333pt;}
.x35{left:286.755733pt;}
.x37{left:288.278667pt;}
.x3d{left:306.144000pt;}
.x23{left:309.072000pt;}
.x20{left:310.392000pt;}
.x3e{left:311.352000pt;}
.x21{left:314.640000pt;}
.x22{left:316.452000pt;}
.x2b{left:323.733333pt;}
.x29{left:325.737333pt;}
.x2a{left:329.361333pt;}
.x27{left:331.381867pt;}
.x28{left:337.245333pt;}
.x34{left:341.028000pt;}
.x25{left:342.013867pt;}
.x31{left:343.772000pt;}
.x2d{left:351.189333pt;}
.x1b{left:352.404000pt;}
.x1c{left:354.058667pt;}
.x33{left:358.040000pt;}
.x26{left:359.353867pt;}
.x32{left:360.488000pt;}
.x30{left:361.724000pt;}
.x18{left:366.052000pt;}
.x19{left:367.504000pt;}
.x17{left:370.180000pt;}
.x2e{left:371.456000pt;}
.x1d{left:373.246667pt;}
.x2c{left:379.509333pt;}
.x2f{left:383.996000pt;}
.x3f{left:394.824000pt;}
.x41{left:400.032000pt;}
.x40{left:403.032000pt;}
.x42{left:425.616000pt;}
.x43{left:432.552000pt;}
.x44{left:481.860000pt;}
.x46{left:487.068000pt;}
.xa{left:488.546267pt;}
.x45{left:490.068000pt;}
.x47{left:512.652000pt;}
.x48{left:519.588000pt;}
.x14{left:546.282667pt;}
.x1{left:547.302667pt;}
}




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