
    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_9c0facf8721afbbc69c6d789.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0dadcee2d063cb9d1c704940.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c2d47715cf6473a1930623e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_84faa5eee11a18f86945b0da.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6c360ac8fdb8217d27d2a20.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a1350025d046977a4991d49b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6073aa431c5e5c51cdbd1e0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239258;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_5dcdd78b0a6d799b6f8fed47.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_85fb068154cea3c9d5444b38.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6073aa431c5e5c51cdbd1e0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls5b{letter-spacing:-1.235160px;}
.ls4a{letter-spacing:-1.140552px;}
.ls3a{letter-spacing:-1.014408px;}
.ls49{letter-spacing:-0.520344px;}
.ls16{letter-spacing:-0.515088px;}
.ls55{letter-spacing:-0.494064px;}
.ls3e{letter-spacing:-0.483552px;}
.ls5c{letter-spacing:-0.457272px;}
.ls51{letter-spacing:-0.452016px;}
.ls44{letter-spacing:-0.446760px;}
.ls4f{letter-spacing:-0.441504px;}
.ls45{letter-spacing:-0.425736px;}
.ls21{letter-spacing:-0.341640px;}
.ls4e{letter-spacing:-0.325872px;}
.ls11{letter-spacing:-0.319773px;}
.ls43{letter-spacing:-0.315360px;}
.ls54{letter-spacing:-0.310104px;}
.ls5d{letter-spacing:-0.308276px;}
.ls3f{letter-spacing:-0.304848px;}
.ls24{letter-spacing:-0.299592px;}
.ls3c{letter-spacing:-0.294336px;}
.ls1f{letter-spacing:-0.289080px;}
.ls25{letter-spacing:-0.283824px;}
.ls1e{letter-spacing:-0.278568px;}
.ls1a{letter-spacing:-0.273312px;}
.ls18{letter-spacing:-0.268056px;}
.ls1c{letter-spacing:-0.262800px;}
.ls19{letter-spacing:-0.257544px;}
.ls2a{letter-spacing:-0.252288px;}
.ls26{letter-spacing:-0.247032px;}
.ls41{letter-spacing:-0.241776px;}
.ls2b{letter-spacing:-0.236520px;}
.ls3b{letter-spacing:-0.226008px;}
.ls10{letter-spacing:-0.221381px;}
.ls40{letter-spacing:-0.220752px;}
.ls23{letter-spacing:-0.215496px;}
.ls5a{letter-spacing:-0.210240px;}
.ls4d{letter-spacing:-0.204984px;}
.ls59{letter-spacing:-0.199728px;}
.ls58{letter-spacing:-0.189216px;}
.ls57{letter-spacing:-0.183960px;}
.ls42{letter-spacing:-0.178704px;}
.ls15{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.063982px;}
.ls50{letter-spacing:0.069798px;}
.ls3{letter-spacing:0.148284px;}
.ls1{letter-spacing:0.154731px;}
.ls2{letter-spacing:0.161178px;}
.ls13{letter-spacing:0.167625px;}
.ls14{letter-spacing:0.193414px;}
.ls0{letter-spacing:0.199861px;}
.ls36{letter-spacing:0.210240px;}
.ls12{letter-spacing:0.212755px;}
.ls48{letter-spacing:0.236520px;}
.ls2e{letter-spacing:0.241776px;}
.ls2f{letter-spacing:0.252288px;}
.ls4c{letter-spacing:0.273312px;}
.lsb{letter-spacing:0.331128px;}
.ls46{letter-spacing:0.336384px;}
.ls3d{letter-spacing:0.341640px;}
.lse{letter-spacing:0.346896px;}
.ls9{letter-spacing:0.352152px;}
.ls33{letter-spacing:0.357408px;}
.lsc{letter-spacing:0.362664px;}
.ls28{letter-spacing:0.367920px;}
.ls27{letter-spacing:0.373176px;}
.lsd{letter-spacing:0.378432px;}
.lsa{letter-spacing:0.383688px;}
.ls5{letter-spacing:0.388944px;}
.ls6{letter-spacing:0.394200px;}
.ls22{letter-spacing:0.399456px;}
.ls17{letter-spacing:0.404712px;}
.ls7{letter-spacing:0.409968px;}
.ls1b{letter-spacing:0.415224px;}
.ls30{letter-spacing:0.420480px;}
.ls20{letter-spacing:0.425736px;}
.ls56{letter-spacing:0.430422px;}
.ls1d{letter-spacing:0.430992px;}
.ls2c{letter-spacing:0.436239px;}
.ls29{letter-spacing:0.436248px;}
.ls32{letter-spacing:0.441504px;}
.lsf{letter-spacing:0.446760px;}
.ls34{letter-spacing:0.452016px;}
.ls38{letter-spacing:0.462528px;}
.ls37{letter-spacing:0.488808px;}
.ls8{letter-spacing:0.499320px;}
.ls39{letter-spacing:0.515088px;}
.ls4{letter-spacing:0.541368px;}
.ls52{letter-spacing:0.791047px;}
.ls35{letter-spacing:4.141728px;}
.ls47{letter-spacing:9.182232px;}
.ls53{letter-spacing:19.832367px;}
.ls4b{letter-spacing:20.547799px;}
.ls31{letter-spacing:62.310413px;}
.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;}
}
.ws12a{word-spacing:-15.332347px;}
.ws12b{word-spacing:-14.977539px;}
.ws12c{word-spacing:-14.971722px;}
.wsfc{word-spacing:-14.611098px;}
.ws62{word-spacing:-14.541300px;}
.ws133{word-spacing:-14.233024px;}
.ws3{word-spacing:-13.576248px;}
.ws12e{word-spacing:-13.565736px;}
.ws12f{word-spacing:-13.560480px;}
.ws1{word-spacing:-13.555224px;}
.ws0{word-spacing:-13.549968px;}
.ws61{word-spacing:-13.539456px;}
.wsc6{word-spacing:-13.528944px;}
.ws4{word-spacing:-13.523688px;}
.ws6{word-spacing:-13.518432px;}
.ws64{word-spacing:-13.502664px;}
.ws12d{word-spacing:-13.497408px;}
.wsc7{word-spacing:-13.476384px;}
.ws5{word-spacing:-12.892968px;}
.wsfb{word-spacing:-12.887712px;}
.ws132{word-spacing:-12.882456px;}
.ws63{word-spacing:-12.877200px;}
.wsc5{word-spacing:-12.871944px;}
.wsc8{word-spacing:-12.856176px;}
.ws2{word-spacing:-12.850920px;}
.ws131{word-spacing:-12.682728px;}
.ws65{word-spacing:-12.000000px;}
.ws130{word-spacing:-11.904840px;}
.ws89{word-spacing:-0.720072px;}
.wsf9{word-spacing:-0.609696px;}
.ws138{word-spacing:-0.604440px;}
.ws115{word-spacing:-0.599184px;}
.wsef{word-spacing:-0.593928px;}
.ws93{word-spacing:-0.588672px;}
.ws139{word-spacing:-0.583416px;}
.ws2b{word-spacing:-0.578160px;}
.ws13a{word-spacing:-0.570019px;}
.wsde{word-spacing:-0.567648px;}
.ws10d{word-spacing:-0.562392px;}
.wsab{word-spacing:-0.541368px;}
.wsfa{word-spacing:-0.504576px;}
.wsb{word-spacing:-0.477087px;}
.ws128{word-spacing:-0.452016px;}
.wsf{word-spacing:-0.438404px;}
.ws73{word-spacing:-0.420480px;}
.wsf3{word-spacing:-0.415224px;}
.wsc1{word-spacing:-0.388944px;}
.wsa{word-spacing:-0.122495px;}
.wse{word-spacing:-0.103154px;}
.wsd{word-spacing:0.000000px;}
.ws13b{word-spacing:0.005256px;}
.ws13c{word-spacing:0.010512px;}
.ws107{word-spacing:0.026280px;}
.ws13e{word-spacing:0.031536px;}
.ws2c{word-spacing:0.036792px;}
.wse7{word-spacing:0.042048px;}
.ws72{word-spacing:0.047304px;}
.ws68{word-spacing:0.052560px;}
.ws135{word-spacing:0.068328px;}
.ws4e{word-spacing:0.073584px;}
.wsfe{word-spacing:0.078840px;}
.ws44{word-spacing:0.084096px;}
.wsac{word-spacing:0.089352px;}
.ws10c{word-spacing:0.094608px;}
.ws8f{word-spacing:0.099864px;}
.ws81{word-spacing:0.105120px;}
.ws22{word-spacing:0.110376px;}
.ws26{word-spacing:0.115632px;}
.ws136{word-spacing:0.120888px;}
.ws9f{word-spacing:0.126144px;}
.ws134{word-spacing:0.131400px;}
.wsd8{word-spacing:0.136656px;}
.ws11b{word-spacing:0.141912px;}
.ws7b{word-spacing:0.147168px;}
.wsfd{word-spacing:0.152424px;}
.ws126{word-spacing:0.157680px;}
.ws103{word-spacing:0.162936px;}
.wse1{word-spacing:0.168192px;}
.ws129{word-spacing:0.178704px;}
.ws125{word-spacing:0.262800px;}
.ws127{word-spacing:0.273312px;}
.ws74{word-spacing:0.289080px;}
.wsc{word-spacing:0.290120px;}
.ws10{word-spacing:0.296568px;}
.ws11{word-spacing:0.336384px;}
.wsf4{word-spacing:0.341640px;}
.ws8{word-spacing:0.483759px;}
.ws9{word-spacing:0.582150px;}
.ws101{word-spacing:0.720072px;}
.ws13d{word-spacing:0.741096px;}
.wsa3{word-spacing:0.762120px;}
.ws34{word-spacing:0.788400px;}
.ws85{word-spacing:0.793656px;}
.ws5a{word-spacing:0.798912px;}
.ws3f{word-spacing:0.804168px;}
.ws10f{word-spacing:0.809424px;}
.wsb3{word-spacing:0.814680px;}
.ws8e{word-spacing:0.819936px;}
.ws113{word-spacing:0.825192px;}
.wsad{word-spacing:0.830448px;}
.wscb{word-spacing:0.835704px;}
.wsa2{word-spacing:0.846216px;}
.wsb2{word-spacing:0.851472px;}
.wsb5{word-spacing:0.856728px;}
.wsf2{word-spacing:0.861984px;}
.wsd7{word-spacing:0.867240px;}
.ws4f{word-spacing:0.877752px;}
.ws6b{word-spacing:0.898776px;}
.wsc0{word-spacing:0.988128px;}
.ws137{word-spacing:1.035432px;}
.ws102{word-spacing:1.513728px;}
.ws9a{word-spacing:1.518984px;}
.ws1d{word-spacing:1.529496px;}
.ws119{word-spacing:1.534752px;}
.ws50{word-spacing:1.540008px;}
.wscc{word-spacing:1.545264px;}
.ws7a{word-spacing:1.555776px;}
.ws91{word-spacing:1.561032px;}
.wsaf{word-spacing:1.582056px;}
.wse6{word-spacing:1.587312px;}
.ws15{word-spacing:1.592568px;}
.ws32{word-spacing:1.597824px;}
.ws60{word-spacing:1.954351px;}
.wsb9{word-spacing:2.233800px;}
.ws6a{word-spacing:2.239056px;}
.ws71{word-spacing:2.249568px;}
.ws17{word-spacing:2.254824px;}
.ws4d{word-spacing:2.260080px;}
.wsae{word-spacing:2.270592px;}
.wsd5{word-spacing:2.275848px;}
.ws8c{word-spacing:2.291616px;}
.ws45{word-spacing:2.296872px;}
.ws24{word-spacing:2.307384px;}
.ws106{word-spacing:2.312640px;}
.ws80{word-spacing:2.317896px;}
.ws40{word-spacing:2.323152px;}
.wsd4{word-spacing:2.328408px;}
.ws9b{word-spacing:2.354688px;}
.ws109{word-spacing:2.917080px;}
.ws1b{word-spacing:2.959128px;}
.wsf6{word-spacing:2.964384px;}
.ws4b{word-spacing:2.969640px;}
.ws1e{word-spacing:2.974896px;}
.ws46{word-spacing:2.985408px;}
.ws10a{word-spacing:2.990664px;}
.ws82{word-spacing:3.001176px;}
.wsa6{word-spacing:3.016944px;}
.ws110{word-spacing:3.022200px;}
.ws66{word-spacing:3.027456px;}
.ws84{word-spacing:3.032712px;}
.wse0{word-spacing:3.037968px;}
.wsa1{word-spacing:3.043224px;}
.wsa0{word-spacing:3.058992px;}
.wsb8{word-spacing:3.663432px;}
.ws20{word-spacing:3.679200px;}
.ws21{word-spacing:3.684456px;}
.wsba{word-spacing:3.689712px;}
.ws33{word-spacing:3.694968px;}
.ws77{word-spacing:3.700224px;}
.wsdb{word-spacing:3.705480px;}
.ws35{word-spacing:3.710736px;}
.ws3a{word-spacing:3.737016px;}
.wsb1{word-spacing:3.742272px;}
.ws87{word-spacing:3.747528px;}
.ws83{word-spacing:3.752784px;}
.ws1c{word-spacing:3.763296px;}
.ws76{word-spacing:3.800088px;}
.ws59{word-spacing:4.388760px;}
.ws86{word-spacing:4.399272px;}
.wse8{word-spacing:4.404528px;}
.ws18{word-spacing:4.409784px;}
.ws36{word-spacing:4.415040px;}
.ws47{word-spacing:4.420296px;}
.ws116{word-spacing:4.436064px;}
.ws105{word-spacing:4.441320px;}
.ws29{word-spacing:4.451832px;}
.ws11c{word-spacing:4.462344px;}
.ws1a{word-spacing:4.467600px;}
.wsc9{word-spacing:4.472856px;}
.ws37{word-spacing:4.478112px;}
.wsd0{word-spacing:4.483368px;}
.ws48{word-spacing:4.530672px;}
.wsf8{word-spacing:5.119344px;}
.ws2a{word-spacing:5.124600px;}
.ws8d{word-spacing:5.129856px;}
.wsb0{word-spacing:5.135112px;}
.ws6e{word-spacing:5.140368px;}
.ws3b{word-spacing:5.145624px;}
.wsc3{word-spacing:5.150880px;}
.ws79{word-spacing:5.166648px;}
.ws11f{word-spacing:5.177160px;}
.wsf5{word-spacing:5.182416px;}
.ws5f{word-spacing:5.182519px;}
.ws88{word-spacing:5.187672px;}
.ws25{word-spacing:5.192928px;}
.wse5{word-spacing:5.198184px;}
.wse2{word-spacing:5.203440px;}
.ws5d{word-spacing:5.234976px;}
.ws6f{word-spacing:5.786856px;}
.ws8a{word-spacing:5.818392px;}
.wsbf{word-spacing:5.839416px;}
.ws39{word-spacing:5.844672px;}
.ws123{word-spacing:5.849928px;}
.ws5e{word-spacing:5.855184px;}
.ws67{word-spacing:5.860440px;}
.wsf7{word-spacing:5.865696px;}
.ws100{word-spacing:5.891976px;}
.ws4c{word-spacing:5.897232px;}
.ws2e{word-spacing:5.907744px;}
.ws49{word-spacing:5.913000px;}
.ws11a{word-spacing:5.918256px;}
.wsa5{word-spacing:5.923512px;}
.wsc2{word-spacing:6.007608px;}
.wsb7{word-spacing:6.559488px;}
.ws9d{word-spacing:6.570000px;}
.ws8b{word-spacing:6.575256px;}
.ws58{word-spacing:6.580512px;}
.wsa4{word-spacing:6.606792px;}
.wsf1{word-spacing:6.612048px;}
.ws3e{word-spacing:6.617304px;}
.ws9c{word-spacing:6.622560px;}
.ws11d{word-spacing:6.638328px;}
.ws3d{word-spacing:6.648840px;}
.wsa8{word-spacing:7.269048px;}
.ws118{word-spacing:7.290072px;}
.wsf0{word-spacing:7.295328px;}
.wsff{word-spacing:7.300584px;}
.wsa9{word-spacing:7.311096px;}
.ws70{word-spacing:7.316352px;}
.ws43{word-spacing:7.332120px;}
.wsbe{word-spacing:7.342632px;}
.wsa7{word-spacing:7.347888px;}
.wsd3{word-spacing:7.353144px;}
.wsc4{word-spacing:7.358400px;}
.ws96{word-spacing:7.374168px;}
.ws117{word-spacing:7.379424px;}
.ws98{word-spacing:7.384680px;}
.wsea{word-spacing:7.410960px;}
.wscd{word-spacing:7.994376px;}
.wse9{word-spacing:7.999632px;}
.ws51{word-spacing:8.004888px;}
.wsce{word-spacing:8.010144px;}
.ws7e{word-spacing:8.015400px;}
.ws92{word-spacing:8.020656px;}
.ws9e{word-spacing:8.025912px;}
.wseb{word-spacing:8.036424px;}
.ws2d{word-spacing:8.041680px;}
.ws12{word-spacing:8.057448px;}
.wsd1{word-spacing:8.067960px;}
.ws99{word-spacing:8.078472px;}
.ws97{word-spacing:8.225640px;}
.wsbc{word-spacing:8.719704px;}
.ws95{word-spacing:8.724960px;}
.wsda{word-spacing:8.730216px;}
.ws122{word-spacing:8.735472px;}
.wsd2{word-spacing:8.740728px;}
.wsdc{word-spacing:8.745984px;}
.wsbb{word-spacing:8.751240px;}
.ws75{word-spacing:8.756496px;}
.ws41{word-spacing:8.772264px;}
.ws19{word-spacing:8.788032px;}
.ws78{word-spacing:8.798544px;}
.wse4{word-spacing:8.803800px;}
.wsd9{word-spacing:8.835336px;}
.ws57{word-spacing:9.418752px;}
.ws52{word-spacing:9.439776px;}
.ws124{word-spacing:9.445032px;}
.ws16{word-spacing:9.450288px;}
.wsee{word-spacing:9.455544px;}
.wsdd{word-spacing:9.466056px;}
.ws10e{word-spacing:9.502848px;}
.wsd6{word-spacing:9.508104px;}
.wse3{word-spacing:9.513360px;}
.ws56{word-spacing:9.518616px;}
.ws104{word-spacing:9.534384px;}
.wsaa{word-spacing:10.144080px;}
.ws23{word-spacing:10.180872px;}
.ws5c{word-spacing:10.191384px;}
.ws1f{word-spacing:10.238688px;}
.ws42{word-spacing:10.254456px;}
.ws5b{word-spacing:10.874664px;}
.ws108{word-spacing:10.879920px;}
.wsbd{word-spacing:10.885176px;}
.wsb6{word-spacing:10.948248px;}
.wsca{word-spacing:10.953504px;}
.ws14{word-spacing:11.521152px;}
.wsed{word-spacing:11.599992px;}
.ws4a{word-spacing:11.610504px;}
.ws53{word-spacing:11.615760px;}
.ws7f{word-spacing:11.621016px;}
.ws31{word-spacing:11.626272px;}
.ws6d{word-spacing:11.631528px;}
.ws6c{word-spacing:11.678832px;}
.ws30{word-spacing:11.710368px;}
.ws112{word-spacing:12.335832px;}
.ws94{word-spacing:12.341088px;}
.ws120{word-spacing:12.351600px;}
.ws13{word-spacing:12.388392px;}
.ws111{word-spacing:13.034880px;}
.ws69{word-spacing:13.045392px;}
.ws121{word-spacing:13.061160px;}
.ws55{word-spacing:13.134744px;}
.wsec{word-spacing:13.760208px;}
.ws54{word-spacing:13.770720px;}
.ws38{word-spacing:13.775976px;}
.ws11e{word-spacing:13.823280px;}
.ws90{word-spacing:13.828536px;}
.ws10b{word-spacing:14.469768px;}
.wsdf{word-spacing:14.490792px;}
.ws7d{word-spacing:14.574888px;}
.ws7c{word-spacing:15.930936px;}
.ws3c{word-spacing:16.645752px;}
.ws114{word-spacing:16.677288px;}
.wscf{word-spacing:16.682544px;}
.ws28{word-spacing:20.319696px;}
.ws2f{word-spacing:20.976696px;}
.ws27{word-spacing:21.039768px;}
.wsb4{word-spacing:22.401072px;}
.ws7{word-spacing:2524.656000px;}
._b{margin-left:-2922.000000px;}
._6{margin-left:-2461.584000px;}
._d{margin-left:-10.112865px;}
._4{margin-left:-9.044541px;}
._3{margin-left:-3.526575px;}
._0{margin-left:-2.107220px;}
._2{margin-left:-1.004470px;}
._1{width:1.467675px;}
._7{width:3.408643px;}
._c{width:4.703307px;}
._5{width:6.157727px;}
._9{width:8.591886px;}
._8{width:9.751384px;}
._a{width:412.416000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs2{font-size:52.560000px;}
.fs3{font-size:58.165200px;}
.fs1{font-size:64.471200px;}
.fs0{font-size:81.993000px;}
.y0{bottom:0.000000px;}
.y60{bottom:27.420000px;}
.y13e{bottom:161.759106px;}
.y5f{bottom:162.480917px;}
.yd8{bottom:165.714600px;}
.y34{bottom:169.497768px;}
.y9c{bottom:170.218452px;}
.y13d{bottom:177.239340px;}
.y5e{bottom:180.645744px;}
.yd7{bottom:181.014816px;}
.y1a6{bottom:181.019982px;}
.y112{bottom:185.339820px;}
.y16c{bottom:185.694132px;}
.y33{bottom:185.698074px;}
.y9b{bottom:185.698686px;}
.y13c{bottom:192.719574px;}
.yd6{bottom:196.495050px;}
.y1a5{bottom:196.500216px;}
.y5d{bottom:198.106176px;}
.y111{bottom:200.640036px;}
.y16b{bottom:200.994348px;}
.y9a{bottom:200.998902px;}
.y32{bottom:201.718362px;}
.y13b{bottom:208.019790px;}
.y1a4{bottom:211.980450px;}
.y5c{bottom:214.126464px;}
.y16a{bottom:216.474582px;}
.y99{bottom:216.479136px;}
.yd5{bottom:217.734546px;}
.y31{bottom:217.918668px;}
.y110{bottom:221.879532px;}
.y13a{bottom:223.500024px;}
.y5b{bottom:230.326770px;}
.y169{bottom:231.954816px;}
.y98{bottom:231.959370px;}
.yd4{bottom:232.854744px;}
.y1a3{bottom:233.220000px;}
.y30{bottom:233.938956px;}
.y10f{bottom:237.359766px;}
.y139{bottom:238.980258px;}
.y5a{bottom:246.527076px;}
.y168{bottom:247.255032px;}
.y97{bottom:247.259586px;}
.yd3{bottom:248.154960px;}
.y1a2{bottom:248.520216px;}
.y2f{bottom:250.139262px;}
.y10e{bottom:252.840000px;}
.y138{bottom:254.280474px;}
.y59{bottom:262.547364px;}
.y167{bottom:262.735266px;}
.y96{bottom:262.739820px;}
.y1a1{bottom:264.000450px;}
.y2e{bottom:266.339568px;}
.y10d{bottom:268.140216px;}
.y137{bottom:269.400672px;}
.y166{bottom:278.215500px;}
.y95{bottom:278.220054px;}
.yd2{bottom:278.575374px;}
.y58{bottom:278.747670px;}
.y2d{bottom:282.359856px;}
.y10c{bottom:283.620450px;}
.y1a0{bottom:285.240000px;}
.y165{bottom:293.515716px;}
.y94{bottom:293.520270px;}
.y136{bottom:293.520456px;}
.y57{bottom:294.767958px;}
.y2c{bottom:298.560162px;}
.yd1{bottom:299.634852px;}
.y19f{bottom:300.540216px;}
.y10b{bottom:307.019298px;}
.y164{bottom:308.995950px;}
.y135{bottom:309.000690px;}
.y56{bottom:310.968264px;}
.y2b{bottom:314.580450px;}
.y93{bottom:314.759766px;}
.y19e{bottom:316.020450px;}
.yd0{bottom:320.874348px;}
.y10a{bottom:322.499532px;}
.y163{bottom:324.476184px;}
.y55{bottom:326.988552px;}
.y92{bottom:330.240000px;}
.y2a{bottom:331.320450px;}
.ycf{bottom:336.354582px;}
.y109{bottom:337.979766px;}
.y19d{bottom:338.694834px;}
.y134{bottom:339.241086px;}
.y162{bottom:339.776400px;}
.y54{bottom:343.188858px;}
.y91{bottom:345.540216px;}
.y29{bottom:347.694240px;}
.yce{bottom:351.834816px;}
.y108{bottom:353.279982px;}
.y19c{bottom:353.635014px;}
.y133{bottom:354.361284px;}
.y161{bottom:355.256634px;}
.y53{bottom:359.209146px;}
.y90{bottom:361.020450px;}
.ycd{bottom:367.135032px;}
.y107{bottom:368.760216px;}
.y160{bottom:370.736868px;}
.y52{bottom:375.409452px;}
.y13f{bottom:376.140450px;}
.y28{bottom:378.114654px;}
.y19b{bottom:378.114834px;}
.y132{bottom:378.481068px;}
.ycc{bottom:382.615266px;}
.y106{bottom:384.240450px;}
.y8f{bottom:384.599550px;}
.y15f{bottom:386.037084px;}
.y51{bottom:391.429740px;}
.y19a{bottom:393.595068px;}
.ycb{bottom:397.915482px;}
.y27{bottom:399.174132px;}
.y8e{bottom:399.899766px;}
.y15e{bottom:401.517318px;}
.y131{bottom:402.780870px;}
.y50{bottom:407.630046px;}
.y105{bottom:407.638848px;}
.y199{bottom:409.075302px;}
.yca{bottom:413.395716px;}
.y26{bottom:414.654366px;}
.y8d{bottom:415.380000px;}
.y15d{bottom:416.997552px;}
.y104{bottom:423.119082px;}
.y4f{bottom:423.830352px;}
.y198{bottom:424.375518px;}
.y130{bottom:427.260690px;}
.yc9{bottom:428.875950px;}
.y25{bottom:430.134600px;}
.y8c{bottom:430.680216px;}
.y15c{bottom:432.297768px;}
.y103{bottom:438.419298px;}
.y12f{bottom:439.500600px;}
.y4e{bottom:439.850640px;}
.y197{bottom:439.855752px;}
.yc8{bottom:444.176166px;}
.y24{bottom:445.434816px;}
.y8b{bottom:446.160450px;}
.y15b{bottom:447.778002px;}
.y102{bottom:453.899532px;}
.y196{bottom:455.335986px;}
.y4d{bottom:456.050946px;}
.yc7{bottom:459.656400px;}
.y15a{bottom:463.258236px;}
.y101{bottom:469.379766px;}
.y8a{bottom:469.740150px;}
.y195{bottom:470.636202px;}
.y4c{bottom:472.071234px;}
.y23{bottom:475.135158px;}
.yc6{bottom:475.136634px;}
.y159{bottom:478.558452px;}
.y100{bottom:484.679982px;}
.y89{bottom:485.040366px;}
.y194{bottom:486.116436px;}
.y4b{bottom:488.271540px;}
.yc5{bottom:490.436850px;}
.y22{bottom:491.155446px;}
.y158{bottom:494.038686px;}
.yff{bottom:500.160216px;}
.y88{bottom:500.520600px;}
.y193{bottom:501.596670px;}
.y4a{bottom:504.291828px;}
.yc4{bottom:505.917084px;}
.y21{bottom:507.355752px;}
.y157{bottom:509.518920px;}
.yfe{bottom:515.640450px;}
.y192{bottom:516.896886px;}
.y87{bottom:518.151342px;}
.y49{bottom:520.492134px;}
.yc3{bottom:521.397318px;}
.y20{bottom:523.376040px;}
.y156{bottom:524.819136px;}
.y191{bottom:532.377120px;}
.y86{bottom:533.631576px;}
.y1e2{bottom:534.000450px;}
.y48{bottom:536.512422px;}
.yc2{bottom:536.697534px;}
.yfd{bottom:539.039316px;}
.y1f{bottom:539.576346px;}
.y155{bottom:540.299370px;}
.y190{bottom:547.857354px;}
.y85{bottom:548.931792px;}
.yc1{bottom:552.177768px;}
.y47{bottom:552.712728px;}
.yfc{bottom:554.519550px;}
.y1e{bottom:555.596634px;}
.y154{bottom:555.599586px;}
.y1c9{bottom:561.539622px;}
.y18f{bottom:563.157570px;}
.y84{bottom:564.412026px;}
.yc0{bottom:567.658002px;}
.y46{bottom:568.733016px;}
.yfb{bottom:569.819766px;}
.y153{bottom:571.079820px;}
.y1d{bottom:571.796940px;}
.y1e1{bottom:575.039766px;}
.y1c8{bottom:578.460000px;}
.y18e{bottom:578.637804px;}
.y83{bottom:579.892260px;}
.ybf{bottom:582.958218px;}
.y45{bottom:584.933322px;}
.yfa{bottom:585.300000px;}
.y152{bottom:586.560054px;}
.y1c{bottom:587.997246px;}
.y1c7{bottom:593.940234px;}
.y18d{bottom:594.118038px;}
.y1e0{bottom:594.839118px;}
.y82{bottom:595.192476px;}
.ybe{bottom:598.438452px;}
.yf9{bottom:600.780234px;}
.y44{bottom:601.133628px;}
.y151{bottom:601.860270px;}
.y1b{bottom:604.017534px;}
.y1c6{bottom:609.240450px;}
.y18c{bottom:609.418254px;}
.y81{bottom:610.672710px;}
.ybd{bottom:613.918686px;}
.y1df{bottom:614.638470px;}
.yf8{bottom:616.080450px;}
.y43{bottom:617.153916px;}
.y1a{bottom:620.217840px;}
.y150{bottom:623.099766px;}
.y18b{bottom:624.898488px;}
.y80{bottom:626.152944px;}
.ybc{bottom:629.218902px;}
.y1c5{bottom:630.479532px;}
.y42{bottom:633.354222px;}
.y1de{bottom:634.259118px;}
.y19{bottom:636.238128px;}
.y14f{bottom:638.580000px;}
.yf7{bottom:639.655608px;}
.y18a{bottom:640.378722px;}
.y7f{bottom:641.453160px;}
.ybb{bottom:644.699136px;}
.y1c4{bottom:645.959766px;}
.y41{bottom:649.374510px;}
.y18{bottom:652.438434px;}
.y1dd{bottom:654.059784px;}
.y14e{bottom:654.060234px;}
.y189{bottom:655.678938px;}
.y7e{bottom:656.933394px;}
.yba{bottom:660.179370px;}
.yf6{bottom:660.715086px;}
.y1c3{bottom:661.259982px;}
.y40{bottom:665.574816px;}
.y17{bottom:668.458722px;}
.y14d{bottom:669.360450px;}
.y188{bottom:671.159172px;}
.y7d{bottom:672.413628px;}
.y1dc{bottom:673.860450px;}
.yb9{bottom:675.479586px;}
.y1c2{bottom:676.740216px;}
.y12e{bottom:678.179172px;}
.y3f{bottom:681.595104px;}
.yf5{bottom:681.954582px;}
.y16{bottom:684.659028px;}
.y7c{bottom:687.713844px;}
.yb8{bottom:690.959820px;}
.y1c1{bottom:692.220450px;}
.y187{bottom:692.398668px;}
.y14c{bottom:692.939766px;}
.y1db{bottom:694.020450px;}
.yf4{bottom:697.434816px;}
.y3e{bottom:697.795410px;}
.y12d{bottom:699.418668px;}
.y15{bottom:700.679316px;}
.y7b{bottom:703.194078px;}
.yb7{bottom:706.440054px;}
.y186{bottom:707.338848px;}
.y14b{bottom:708.239982px;}
.yf3{bottom:712.915050px;}
.y1c0{bottom:713.279532px;}
.y3d{bottom:713.815698px;}
.y12c{bottom:714.718884px;}
.y1da{bottom:715.260450px;}
.y14{bottom:716.879622px;}
.y7a{bottom:718.674312px;}
.yb6{bottom:721.740270px;}
.y14a{bottom:723.720216px;}
.yf2{bottom:728.215266px;}
.y1bf{bottom:728.759766px;}
.y3c{bottom:730.016004px;}
.y12b{bottom:730.199118px;}
.y185{bottom:731.998686px;}
.y13{bottom:732.899910px;}
.y79{bottom:733.974528px;}
.y1d9{bottom:736.500450px;}
.yb5{bottom:737.220504px;}
.y149{bottom:739.200450px;}
.yf1{bottom:743.695500px;}
.y1be{bottom:744.240000px;}
.y12a{bottom:745.679352px;}
.y3b{bottom:746.036292px;}
.y184{bottom:747.298902px;}
.y12{bottom:749.100216px;}
.y78{bottom:749.454762px;}
.y1d8{bottom:757.740450px;}
.yb4{bottom:758.460000px;}
.yf0{bottom:759.175734px;}
.y1bd{bottom:759.540216px;}
.y3a{bottom:762.236598px;}
.y148{bottom:762.600216px;}
.y183{bottom:762.779136px;}
.y77{bottom:764.934996px;}
.y11{bottom:765.300522px;}
.y129{bottom:766.738830px;}
.yb3{bottom:773.760216px;}
.yef{bottom:774.475950px;}
.y1bc{bottom:775.020450px;}
.y147{bottom:778.080450px;}
.y182{bottom:778.259370px;}
.y39{bottom:778.436904px;}
.y1d7{bottom:778.800450px;}
.y76{bottom:779.875176px;}
.y10{bottom:781.320810px;}
.y128{bottom:787.978326px;}
.yb2{bottom:789.240450px;}
.yee{bottom:789.956184px;}
.y181{bottom:793.559586px;}
.y38{bottom:794.457192px;}
.y146{bottom:795.715446px;}
.y1bb{bottom:796.259550px;}
.yf{bottom:797.521116px;}
.y1d6{bottom:800.040600px;}
.y127{bottom:803.458560px;}
.y75{bottom:804.174978px;}
.yed{bottom:805.256400px;}
.y180{bottom:809.039820px;}
.y37{bottom:810.657498px;}
.y145{bottom:811.195680px;}
.y1ba{bottom:811.739784px;}
.yb1{bottom:812.639982px;}
.ye{bottom:818.580594px;}
.y126{bottom:818.758776px;}
.y74{bottom:819.475194px;}
.yec{bottom:820.736634px;}
.y1d5{bottom:821.280450px;}
.y17f{bottom:824.520054px;}
.y144{bottom:826.495896px;}
.y36{bottom:826.677786px;}
.y1b9{bottom:827.040000px;}
.yb0{bottom:828.120216px;}
.yd{bottom:833.700792px;}
.y125{bottom:834.239010px;}
.yeb{bottom:836.216868px;}
.y17e{bottom:839.820270px;}
.y143{bottom:841.976130px;}
.y1b8{bottom:842.520234px;}
.y1d4{bottom:842.520450px;}
.y35{bottom:842.878092px;}
.yaf{bottom:843.600450px;}
.y73{bottom:844.675086px;}
.y124{bottom:849.719244px;}
.yea{bottom:851.517084px;}
.y142{bottom:857.456364px;}
.y1b7{bottom:857.820450px;}
.y72{bottom:860.875392px;}
.y17d{bottom:861.059766px;}
.y1d3{bottom:863.760450px;}
.yc{bottom:864.121206px;}
.y123{bottom:865.019460px;}
.yae{bottom:866.995860px;}
.ye9{bottom:866.997318px;}
.y141{bottom:872.756580px;}
.y17c{bottom:876.540000px;}
.y71{bottom:877.075698px;}
.y1b6{bottom:879.060216px;}
.y122{bottom:880.499694px;}
.yad{bottom:882.476094px;}
.ye8{bottom:882.477552px;}
.y1d2{bottom:884.819532px;}
.yb{bottom:885.180684px;}
.y140{bottom:888.236814px;}
.y17b{bottom:891.840216px;}
.y70{bottom:893.095986px;}
.y1b5{bottom:894.540450px;}
.yac{bottom:897.776310px;}
.y1d1{bottom:900.299766px;}
.y121{bottom:901.739190px;}
.ye7{bottom:903.717048px;}
.ya{bottom:906.420180px;}
.y17a{bottom:907.320450px;}
.y6f{bottom:909.296292px;}
.yab{bottom:913.256544px;}
.y1d0{bottom:915.780000px;}
.y1b4{bottom:915.780234px;}
.ye6{bottom:919.017264px;}
.y9{bottom:922.260838px;}
.y120{bottom:922.978686px;}
.y6e{bottom:925.316580px;}
.yaa{bottom:928.736778px;}
.y179{bottom:930.720216px;}
.y1cf{bottom:931.080216px;}
.y1b3{bottom:931.080450px;}
.ye5{bottom:934.497498px;}
.y11f{bottom:938.278902px;}
.y8{bottom:941.160570px;}
.y6d{bottom:941.516886px;}
.ya9{bottom:944.036994px;}
.y178{bottom:946.200450px;}
.y1ce{bottom:946.560450px;}
.ye4{bottom:949.797714px;}
.y1b2{bottom:952.319766px;}
.y11e{bottom:953.759136px;}
.y6c{bottom:957.537174px;}
.ya8{bottom:959.517228px;}
.y7{bottom:960.240822px;}
.ye3{bottom:965.277948px;}
.y1b1{bottom:967.800000px;}
.y11d{bottom:969.239370px;}
.y177{bottom:969.599982px;}
.y6b{bottom:973.737480px;}
.ya7{bottom:974.997462px;}
.ye2{bottom:980.758182px;}
.y1b0{bottom:983.100216px;}
.y11c{bottom:984.539586px;}
.y176{bottom:985.080216px;}
.y6{bottom:988.140734px;}
.y6a{bottom:989.757768px;}
.ya6{bottom:990.297678px;}
.ye1{bottom:996.058398px;}
.y1af{bottom:998.580450px;}
.y11b{bottom:1000.019820px;}
.y175{bottom:1000.560450px;}
.ya5{bottom:1005.777912px;}
.y69{bottom:1005.958074px;}
.y5{bottom:1007.040466px;}
.ye0{bottom:1011.538632px;}
.y11a{bottom:1015.320036px;}
.y174{bottom:1018.193286px;}
.y1ae{bottom:1019.819766px;}
.y1cd{bottom:1019.820000px;}
.ya4{bottom:1021.258146px;}
.y68{bottom:1021.978362px;}
.y4{bottom:1025.940198px;}
.ydf{bottom:1027.018866px;}
.y119{bottom:1030.800270px;}
.y173{bottom:1033.673520px;}
.y1ad{bottom:1035.119982px;}
.y1cc{bottom:1035.120216px;}
.ya3{bottom:1036.558362px;}
.y67{bottom:1038.178668px;}
.yde{bottom:1042.319082px;}
.y3{bottom:1045.020450px;}
.y118{bottom:1046.280504px;}
.y172{bottom:1048.973736px;}
.y1ac{bottom:1050.600216px;}
.y1cb{bottom:1050.600450px;}
.y66{bottom:1054.378974px;}
.ya2{bottom:1057.797858px;}
.ydd{bottom:1057.799316px;}
.y117{bottom:1061.580720px;}
.y171{bottom:1064.453970px;}
.y1ab{bottom:1066.080450px;}
.y65{bottom:1070.399262px;}
.y1ca{bottom:1071.839532px;}
.ya1{bottom:1073.278092px;}
.ydc{bottom:1073.279550px;}
.y116{bottom:1077.060954px;}
.y170{bottom:1079.934204px;}
.y2{bottom:1082.639775px;}
.y64{bottom:1086.599568px;}
.y1aa{bottom:1087.319766px;}
.ya0{bottom:1088.578308px;}
.ydb{bottom:1088.579766px;}
.y16f{bottom:1094.874384px;}
.y115{bottom:1098.300450px;}
.y63{bottom:1102.619856px;}
.y1a9{bottom:1102.619982px;}
.y9f{bottom:1104.058542px;}
.yda{bottom:1104.060000px;}
.y1{bottom:1106.940450px;}
.y1a8{bottom:1118.100216px;}
.y62{bottom:1118.820162px;}
.y16e{bottom:1119.534222px;}
.y9e{bottom:1119.538776px;}
.y114{bottom:1119.539946px;}
.yd9{bottom:1119.540234px;}
.y1a7{bottom:1133.580450px;}
.y16d{bottom:1134.834438px;}
.y9d{bottom:1134.838992px;}
.y113{bottom:1134.840162px;}
.y61{bottom:1134.840450px;}
.h8{height:47.109375px;}
.h4{height:51.584766px;}
.h5{height:52.970625px;}
.ha{height:54.818438px;}
.h6{height:57.085963px;}
.h7{height:57.144787px;}
.hb{height:58.622928px;}
.h9{height:59.784660px;}
.h3{height:64.974881px;}
.h2{height:67.241447px;}
.h1{height:85.516137px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:78.721170px;}
.x1{left:87.360900px;}
.x2{left:103.921436px;}
.x12{left:105.000900px;}
.xf{left:137.580216px;}
.x10{left:141.180576px;}
.x4{left:191.940982px;}
.x8{left:194.100767px;}
.xc{left:204.000558px;}
.xe{left:229.428000px;}
.xb{left:240.541584px;}
.x11{left:273.480666px;}
.x3{left:349.440900px;}
.x5{left:382.561367px;}
.x7{left:388.681296px;}
.x1d{left:446.820900px;}
.x6{left:455.281657px;}
.xa{left:459.241116px;}
.xd{left:476.702592px;}
.x13{left:502.980900px;}
.x18{left:513.600972px;}
.x19{left:515.221134px;}
.x1a{left:529.440900px;}
.x14{left:551.223096px;}
.x15{left:596.223654px;}
.x1b{left:603.780468px;}
.x1c{left:609.361026px;}
.x17{left:671.280972px;}
.x16{left:801.960900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5b{letter-spacing:-1.097920pt;}
.ls4a{letter-spacing:-1.013824pt;}
.ls3a{letter-spacing:-0.901696pt;}
.ls49{letter-spacing:-0.462528pt;}
.ls16{letter-spacing:-0.457856pt;}
.ls55{letter-spacing:-0.439168pt;}
.ls3e{letter-spacing:-0.429824pt;}
.ls5c{letter-spacing:-0.406464pt;}
.ls51{letter-spacing:-0.401792pt;}
.ls44{letter-spacing:-0.397120pt;}
.ls4f{letter-spacing:-0.392448pt;}
.ls45{letter-spacing:-0.378432pt;}
.ls21{letter-spacing:-0.303680pt;}
.ls4e{letter-spacing:-0.289664pt;}
.ls11{letter-spacing:-0.284242pt;}
.ls43{letter-spacing:-0.280320pt;}
.ls54{letter-spacing:-0.275648pt;}
.ls5d{letter-spacing:-0.274023pt;}
.ls3f{letter-spacing:-0.270976pt;}
.ls24{letter-spacing:-0.266304pt;}
.ls3c{letter-spacing:-0.261632pt;}
.ls1f{letter-spacing:-0.256960pt;}
.ls25{letter-spacing:-0.252288pt;}
.ls1e{letter-spacing:-0.247616pt;}
.ls1a{letter-spacing:-0.242944pt;}
.ls18{letter-spacing:-0.238272pt;}
.ls1c{letter-spacing:-0.233600pt;}
.ls19{letter-spacing:-0.228928pt;}
.ls2a{letter-spacing:-0.224256pt;}
.ls26{letter-spacing:-0.219584pt;}
.ls41{letter-spacing:-0.214912pt;}
.ls2b{letter-spacing:-0.210240pt;}
.ls3b{letter-spacing:-0.200896pt;}
.ls10{letter-spacing:-0.196783pt;}
.ls40{letter-spacing:-0.196224pt;}
.ls23{letter-spacing:-0.191552pt;}
.ls5a{letter-spacing:-0.186880pt;}
.ls4d{letter-spacing:-0.182208pt;}
.ls59{letter-spacing:-0.177536pt;}
.ls58{letter-spacing:-0.168192pt;}
.ls57{letter-spacing:-0.163520pt;}
.ls42{letter-spacing:-0.158848pt;}
.ls15{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.056873pt;}
.ls50{letter-spacing:0.062043pt;}
.ls3{letter-spacing:0.131808pt;}
.ls1{letter-spacing:0.137539pt;}
.ls2{letter-spacing:0.143269pt;}
.ls13{letter-spacing:0.149000pt;}
.ls14{letter-spacing:0.171923pt;}
.ls0{letter-spacing:0.177654pt;}
.ls36{letter-spacing:0.186880pt;}
.ls12{letter-spacing:0.189116pt;}
.ls48{letter-spacing:0.210240pt;}
.ls2e{letter-spacing:0.214912pt;}
.ls2f{letter-spacing:0.224256pt;}
.ls4c{letter-spacing:0.242944pt;}
.lsb{letter-spacing:0.294336pt;}
.ls46{letter-spacing:0.299008pt;}
.ls3d{letter-spacing:0.303680pt;}
.lse{letter-spacing:0.308352pt;}
.ls9{letter-spacing:0.313024pt;}
.ls33{letter-spacing:0.317696pt;}
.lsc{letter-spacing:0.322368pt;}
.ls28{letter-spacing:0.327040pt;}
.ls27{letter-spacing:0.331712pt;}
.lsd{letter-spacing:0.336384pt;}
.lsa{letter-spacing:0.341056pt;}
.ls5{letter-spacing:0.345728pt;}
.ls6{letter-spacing:0.350400pt;}
.ls22{letter-spacing:0.355072pt;}
.ls17{letter-spacing:0.359744pt;}
.ls7{letter-spacing:0.364416pt;}
.ls1b{letter-spacing:0.369088pt;}
.ls30{letter-spacing:0.373760pt;}
.ls20{letter-spacing:0.378432pt;}
.ls56{letter-spacing:0.382598pt;}
.ls1d{letter-spacing:0.383104pt;}
.ls2c{letter-spacing:0.387768pt;}
.ls29{letter-spacing:0.387776pt;}
.ls32{letter-spacing:0.392448pt;}
.lsf{letter-spacing:0.397120pt;}
.ls34{letter-spacing:0.401792pt;}
.ls38{letter-spacing:0.411136pt;}
.ls37{letter-spacing:0.434496pt;}
.ls8{letter-spacing:0.443840pt;}
.ls39{letter-spacing:0.457856pt;}
.ls4{letter-spacing:0.481216pt;}
.ls52{letter-spacing:0.703153pt;}
.ls35{letter-spacing:3.681536pt;}
.ls47{letter-spacing:8.161984pt;}
.ls53{letter-spacing:17.628771pt;}
.ls4b{letter-spacing:18.264710pt;}
.ls31{letter-spacing:55.387034pt;}
.ws12a{word-spacing:-13.628753pt;}
.ws12b{word-spacing:-13.313368pt;}
.ws12c{word-spacing:-13.308198pt;}
.wsfc{word-spacing:-12.987643pt;}
.ws62{word-spacing:-12.925600pt;}
.ws133{word-spacing:-12.651577pt;}
.ws3{word-spacing:-12.067776pt;}
.ws12e{word-spacing:-12.058432pt;}
.ws12f{word-spacing:-12.053760pt;}
.ws1{word-spacing:-12.049088pt;}
.ws0{word-spacing:-12.044416pt;}
.ws61{word-spacing:-12.035072pt;}
.wsc6{word-spacing:-12.025728pt;}
.ws4{word-spacing:-12.021056pt;}
.ws6{word-spacing:-12.016384pt;}
.ws64{word-spacing:-12.002368pt;}
.ws12d{word-spacing:-11.997696pt;}
.wsc7{word-spacing:-11.979008pt;}
.ws5{word-spacing:-11.460416pt;}
.wsfb{word-spacing:-11.455744pt;}
.ws132{word-spacing:-11.451072pt;}
.ws63{word-spacing:-11.446400pt;}
.wsc5{word-spacing:-11.441728pt;}
.wsc8{word-spacing:-11.427712pt;}
.ws2{word-spacing:-11.423040pt;}
.ws131{word-spacing:-11.273536pt;}
.ws65{word-spacing:-10.666667pt;}
.ws130{word-spacing:-10.582080pt;}
.ws89{word-spacing:-0.640064pt;}
.wsf9{word-spacing:-0.541952pt;}
.ws138{word-spacing:-0.537280pt;}
.ws115{word-spacing:-0.532608pt;}
.wsef{word-spacing:-0.527936pt;}
.ws93{word-spacing:-0.523264pt;}
.ws139{word-spacing:-0.518592pt;}
.ws2b{word-spacing:-0.513920pt;}
.ws13a{word-spacing:-0.506684pt;}
.wsde{word-spacing:-0.504576pt;}
.ws10d{word-spacing:-0.499904pt;}
.wsab{word-spacing:-0.481216pt;}
.wsfa{word-spacing:-0.448512pt;}
.wsb{word-spacing:-0.424077pt;}
.ws128{word-spacing:-0.401792pt;}
.wsf{word-spacing:-0.389693pt;}
.ws73{word-spacing:-0.373760pt;}
.wsf3{word-spacing:-0.369088pt;}
.wsc1{word-spacing:-0.345728pt;}
.wsa{word-spacing:-0.108885pt;}
.wse{word-spacing:-0.091692pt;}
.wsd{word-spacing:0.000000pt;}
.ws13b{word-spacing:0.004672pt;}
.ws13c{word-spacing:0.009344pt;}
.ws107{word-spacing:0.023360pt;}
.ws13e{word-spacing:0.028032pt;}
.ws2c{word-spacing:0.032704pt;}
.wse7{word-spacing:0.037376pt;}
.ws72{word-spacing:0.042048pt;}
.ws68{word-spacing:0.046720pt;}
.ws135{word-spacing:0.060736pt;}
.ws4e{word-spacing:0.065408pt;}
.wsfe{word-spacing:0.070080pt;}
.ws44{word-spacing:0.074752pt;}
.wsac{word-spacing:0.079424pt;}
.ws10c{word-spacing:0.084096pt;}
.ws8f{word-spacing:0.088768pt;}
.ws81{word-spacing:0.093440pt;}
.ws22{word-spacing:0.098112pt;}
.ws26{word-spacing:0.102784pt;}
.ws136{word-spacing:0.107456pt;}
.ws9f{word-spacing:0.112128pt;}
.ws134{word-spacing:0.116800pt;}
.wsd8{word-spacing:0.121472pt;}
.ws11b{word-spacing:0.126144pt;}
.ws7b{word-spacing:0.130816pt;}
.wsfd{word-spacing:0.135488pt;}
.ws126{word-spacing:0.140160pt;}
.ws103{word-spacing:0.144832pt;}
.wse1{word-spacing:0.149504pt;}
.ws129{word-spacing:0.158848pt;}
.ws125{word-spacing:0.233600pt;}
.ws127{word-spacing:0.242944pt;}
.ws74{word-spacing:0.256960pt;}
.wsc{word-spacing:0.257885pt;}
.ws10{word-spacing:0.263616pt;}
.ws11{word-spacing:0.299008pt;}
.wsf4{word-spacing:0.303680pt;}
.ws8{word-spacing:0.430008pt;}
.ws9{word-spacing:0.517467pt;}
.ws101{word-spacing:0.640064pt;}
.ws13d{word-spacing:0.658752pt;}
.wsa3{word-spacing:0.677440pt;}
.ws34{word-spacing:0.700800pt;}
.ws85{word-spacing:0.705472pt;}
.ws5a{word-spacing:0.710144pt;}
.ws3f{word-spacing:0.714816pt;}
.ws10f{word-spacing:0.719488pt;}
.wsb3{word-spacing:0.724160pt;}
.ws8e{word-spacing:0.728832pt;}
.ws113{word-spacing:0.733504pt;}
.wsad{word-spacing:0.738176pt;}
.wscb{word-spacing:0.742848pt;}
.wsa2{word-spacing:0.752192pt;}
.wsb2{word-spacing:0.756864pt;}
.wsb5{word-spacing:0.761536pt;}
.wsf2{word-spacing:0.766208pt;}
.wsd7{word-spacing:0.770880pt;}
.ws4f{word-spacing:0.780224pt;}
.ws6b{word-spacing:0.798912pt;}
.wsc0{word-spacing:0.878336pt;}
.ws137{word-spacing:0.920384pt;}
.ws102{word-spacing:1.345536pt;}
.ws9a{word-spacing:1.350208pt;}
.ws1d{word-spacing:1.359552pt;}
.ws119{word-spacing:1.364224pt;}
.ws50{word-spacing:1.368896pt;}
.wscc{word-spacing:1.373568pt;}
.ws7a{word-spacing:1.382912pt;}
.ws91{word-spacing:1.387584pt;}
.wsaf{word-spacing:1.406272pt;}
.wse6{word-spacing:1.410944pt;}
.ws15{word-spacing:1.415616pt;}
.ws32{word-spacing:1.420288pt;}
.ws60{word-spacing:1.737201pt;}
.wsb9{word-spacing:1.985600pt;}
.ws6a{word-spacing:1.990272pt;}
.ws71{word-spacing:1.999616pt;}
.ws17{word-spacing:2.004288pt;}
.ws4d{word-spacing:2.008960pt;}
.wsae{word-spacing:2.018304pt;}
.wsd5{word-spacing:2.022976pt;}
.ws8c{word-spacing:2.036992pt;}
.ws45{word-spacing:2.041664pt;}
.ws24{word-spacing:2.051008pt;}
.ws106{word-spacing:2.055680pt;}
.ws80{word-spacing:2.060352pt;}
.ws40{word-spacing:2.065024pt;}
.wsd4{word-spacing:2.069696pt;}
.ws9b{word-spacing:2.093056pt;}
.ws109{word-spacing:2.592960pt;}
.ws1b{word-spacing:2.630336pt;}
.wsf6{word-spacing:2.635008pt;}
.ws4b{word-spacing:2.639680pt;}
.ws1e{word-spacing:2.644352pt;}
.ws46{word-spacing:2.653696pt;}
.ws10a{word-spacing:2.658368pt;}
.ws82{word-spacing:2.667712pt;}
.wsa6{word-spacing:2.681728pt;}
.ws110{word-spacing:2.686400pt;}
.ws66{word-spacing:2.691072pt;}
.ws84{word-spacing:2.695744pt;}
.wse0{word-spacing:2.700416pt;}
.wsa1{word-spacing:2.705088pt;}
.wsa0{word-spacing:2.719104pt;}
.wsb8{word-spacing:3.256384pt;}
.ws20{word-spacing:3.270400pt;}
.ws21{word-spacing:3.275072pt;}
.wsba{word-spacing:3.279744pt;}
.ws33{word-spacing:3.284416pt;}
.ws77{word-spacing:3.289088pt;}
.wsdb{word-spacing:3.293760pt;}
.ws35{word-spacing:3.298432pt;}
.ws3a{word-spacing:3.321792pt;}
.wsb1{word-spacing:3.326464pt;}
.ws87{word-spacing:3.331136pt;}
.ws83{word-spacing:3.335808pt;}
.ws1c{word-spacing:3.345152pt;}
.ws76{word-spacing:3.377856pt;}
.ws59{word-spacing:3.901120pt;}
.ws86{word-spacing:3.910464pt;}
.wse8{word-spacing:3.915136pt;}
.ws18{word-spacing:3.919808pt;}
.ws36{word-spacing:3.924480pt;}
.ws47{word-spacing:3.929152pt;}
.ws116{word-spacing:3.943168pt;}
.ws105{word-spacing:3.947840pt;}
.ws29{word-spacing:3.957184pt;}
.ws11c{word-spacing:3.966528pt;}
.ws1a{word-spacing:3.971200pt;}
.wsc9{word-spacing:3.975872pt;}
.ws37{word-spacing:3.980544pt;}
.wsd0{word-spacing:3.985216pt;}
.ws48{word-spacing:4.027264pt;}
.wsf8{word-spacing:4.550528pt;}
.ws2a{word-spacing:4.555200pt;}
.ws8d{word-spacing:4.559872pt;}
.wsb0{word-spacing:4.564544pt;}
.ws6e{word-spacing:4.569216pt;}
.ws3b{word-spacing:4.573888pt;}
.wsc3{word-spacing:4.578560pt;}
.ws79{word-spacing:4.592576pt;}
.ws11f{word-spacing:4.601920pt;}
.wsf5{word-spacing:4.606592pt;}
.ws5f{word-spacing:4.606684pt;}
.ws88{word-spacing:4.611264pt;}
.ws25{word-spacing:4.615936pt;}
.wse5{word-spacing:4.620608pt;}
.wse2{word-spacing:4.625280pt;}
.ws5d{word-spacing:4.653312pt;}
.ws6f{word-spacing:5.143872pt;}
.ws8a{word-spacing:5.171904pt;}
.wsbf{word-spacing:5.190592pt;}
.ws39{word-spacing:5.195264pt;}
.ws123{word-spacing:5.199936pt;}
.ws5e{word-spacing:5.204608pt;}
.ws67{word-spacing:5.209280pt;}
.wsf7{word-spacing:5.213952pt;}
.ws100{word-spacing:5.237312pt;}
.ws4c{word-spacing:5.241984pt;}
.ws2e{word-spacing:5.251328pt;}
.ws49{word-spacing:5.256000pt;}
.ws11a{word-spacing:5.260672pt;}
.wsa5{word-spacing:5.265344pt;}
.wsc2{word-spacing:5.340096pt;}
.wsb7{word-spacing:5.830656pt;}
.ws9d{word-spacing:5.840000pt;}
.ws8b{word-spacing:5.844672pt;}
.ws58{word-spacing:5.849344pt;}
.wsa4{word-spacing:5.872704pt;}
.wsf1{word-spacing:5.877376pt;}
.ws3e{word-spacing:5.882048pt;}
.ws9c{word-spacing:5.886720pt;}
.ws11d{word-spacing:5.900736pt;}
.ws3d{word-spacing:5.910080pt;}
.wsa8{word-spacing:6.461376pt;}
.ws118{word-spacing:6.480064pt;}
.wsf0{word-spacing:6.484736pt;}
.wsff{word-spacing:6.489408pt;}
.wsa9{word-spacing:6.498752pt;}
.ws70{word-spacing:6.503424pt;}
.ws43{word-spacing:6.517440pt;}
.wsbe{word-spacing:6.526784pt;}
.wsa7{word-spacing:6.531456pt;}
.wsd3{word-spacing:6.536128pt;}
.wsc4{word-spacing:6.540800pt;}
.ws96{word-spacing:6.554816pt;}
.ws117{word-spacing:6.559488pt;}
.ws98{word-spacing:6.564160pt;}
.wsea{word-spacing:6.587520pt;}
.wscd{word-spacing:7.106112pt;}
.wse9{word-spacing:7.110784pt;}
.ws51{word-spacing:7.115456pt;}
.wsce{word-spacing:7.120128pt;}
.ws7e{word-spacing:7.124800pt;}
.ws92{word-spacing:7.129472pt;}
.ws9e{word-spacing:7.134144pt;}
.wseb{word-spacing:7.143488pt;}
.ws2d{word-spacing:7.148160pt;}
.ws12{word-spacing:7.162176pt;}
.wsd1{word-spacing:7.171520pt;}
.ws99{word-spacing:7.180864pt;}
.ws97{word-spacing:7.311680pt;}
.wsbc{word-spacing:7.750848pt;}
.ws95{word-spacing:7.755520pt;}
.wsda{word-spacing:7.760192pt;}
.ws122{word-spacing:7.764864pt;}
.wsd2{word-spacing:7.769536pt;}
.wsdc{word-spacing:7.774208pt;}
.wsbb{word-spacing:7.778880pt;}
.ws75{word-spacing:7.783552pt;}
.ws41{word-spacing:7.797568pt;}
.ws19{word-spacing:7.811584pt;}
.ws78{word-spacing:7.820928pt;}
.wse4{word-spacing:7.825600pt;}
.wsd9{word-spacing:7.853632pt;}
.ws57{word-spacing:8.372224pt;}
.ws52{word-spacing:8.390912pt;}
.ws124{word-spacing:8.395584pt;}
.ws16{word-spacing:8.400256pt;}
.wsee{word-spacing:8.404928pt;}
.wsdd{word-spacing:8.414272pt;}
.ws10e{word-spacing:8.446976pt;}
.wsd6{word-spacing:8.451648pt;}
.wse3{word-spacing:8.456320pt;}
.ws56{word-spacing:8.460992pt;}
.ws104{word-spacing:8.475008pt;}
.wsaa{word-spacing:9.016960pt;}
.ws23{word-spacing:9.049664pt;}
.ws5c{word-spacing:9.059008pt;}
.ws1f{word-spacing:9.101056pt;}
.ws42{word-spacing:9.115072pt;}
.ws5b{word-spacing:9.666368pt;}
.ws108{word-spacing:9.671040pt;}
.wsbd{word-spacing:9.675712pt;}
.wsb6{word-spacing:9.731776pt;}
.wsca{word-spacing:9.736448pt;}
.ws14{word-spacing:10.241024pt;}
.wsed{word-spacing:10.311104pt;}
.ws4a{word-spacing:10.320448pt;}
.ws53{word-spacing:10.325120pt;}
.ws7f{word-spacing:10.329792pt;}
.ws31{word-spacing:10.334464pt;}
.ws6d{word-spacing:10.339136pt;}
.ws6c{word-spacing:10.381184pt;}
.ws30{word-spacing:10.409216pt;}
.ws112{word-spacing:10.965184pt;}
.ws94{word-spacing:10.969856pt;}
.ws120{word-spacing:10.979200pt;}
.ws13{word-spacing:11.011904pt;}
.ws111{word-spacing:11.586560pt;}
.ws69{word-spacing:11.595904pt;}
.ws121{word-spacing:11.609920pt;}
.ws55{word-spacing:11.675328pt;}
.wsec{word-spacing:12.231296pt;}
.ws54{word-spacing:12.240640pt;}
.ws38{word-spacing:12.245312pt;}
.ws11e{word-spacing:12.287360pt;}
.ws90{word-spacing:12.292032pt;}
.ws10b{word-spacing:12.862016pt;}
.wsdf{word-spacing:12.880704pt;}
.ws7d{word-spacing:12.955456pt;}
.ws7c{word-spacing:14.160832pt;}
.ws3c{word-spacing:14.796224pt;}
.ws114{word-spacing:14.824256pt;}
.wscf{word-spacing:14.828928pt;}
.ws28{word-spacing:18.061952pt;}
.ws2f{word-spacing:18.645952pt;}
.ws27{word-spacing:18.702016pt;}
.wsb4{word-spacing:19.912064pt;}
.ws7{word-spacing:2244.138667pt;}
._b{margin-left:-2597.333333pt;}
._6{margin-left:-2188.074667pt;}
._d{margin-left:-8.989214pt;}
._4{margin-left:-8.039592pt;}
._3{margin-left:-3.134733pt;}
._0{margin-left:-1.873085pt;}
._2{margin-left:-0.892862pt;}
._1{width:1.304600pt;}
._7{width:3.029905pt;}
._c{width:4.180717pt;}
._5{width:5.473535pt;}
._9{width:7.637232pt;}
._8{width:8.667897pt;}
._a{width:366.592000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:46.720000pt;}
.fs3{font-size:51.702400pt;}
.fs1{font-size:57.307733pt;}
.fs0{font-size:72.882667pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:24.373333pt;}
.y13e{bottom:143.785872pt;}
.y5f{bottom:144.427482pt;}
.yd8{bottom:147.301867pt;}
.y34{bottom:150.664683pt;}
.y9c{bottom:151.305291pt;}
.y13d{bottom:157.546080pt;}
.y5e{bottom:160.573995pt;}
.yd7{bottom:160.902059pt;}
.y1a6{bottom:160.906651pt;}
.y112{bottom:164.746507pt;}
.y16c{bottom:165.061451pt;}
.y33{bottom:165.064955pt;}
.y9b{bottom:165.065499pt;}
.y13c{bottom:171.306288pt;}
.yd6{bottom:174.662267pt;}
.y1a5{bottom:174.666859pt;}
.y5d{bottom:176.094379pt;}
.y111{bottom:178.346699pt;}
.y16b{bottom:178.661643pt;}
.y9a{bottom:178.665691pt;}
.y32{bottom:179.305211pt;}
.y13b{bottom:184.906480pt;}
.y1a4{bottom:188.427067pt;}
.y5c{bottom:190.334635pt;}
.y16a{bottom:192.421851pt;}
.y99{bottom:192.425899pt;}
.yd5{bottom:193.541819pt;}
.y31{bottom:193.705483pt;}
.y110{bottom:197.226251pt;}
.y13a{bottom:198.666688pt;}
.y5b{bottom:204.734907pt;}
.y169{bottom:206.182059pt;}
.y98{bottom:206.186107pt;}
.yd4{bottom:206.981995pt;}
.y1a3{bottom:207.306667pt;}
.y30{bottom:207.945739pt;}
.y10f{bottom:210.986459pt;}
.y139{bottom:212.426896pt;}
.y5a{bottom:219.135179pt;}
.y168{bottom:219.782251pt;}
.y97{bottom:219.786299pt;}
.yd3{bottom:220.582187pt;}
.y1a2{bottom:220.906859pt;}
.y2f{bottom:222.346011pt;}
.y10e{bottom:224.746667pt;}
.y138{bottom:226.027088pt;}
.y59{bottom:233.375435pt;}
.y167{bottom:233.542459pt;}
.y96{bottom:233.546507pt;}
.y1a1{bottom:234.667067pt;}
.y2e{bottom:236.746283pt;}
.y10d{bottom:238.346859pt;}
.y137{bottom:239.467264pt;}
.y166{bottom:247.302667pt;}
.y95{bottom:247.306715pt;}
.yd2{bottom:247.622555pt;}
.y58{bottom:247.775707pt;}
.y2d{bottom:250.986539pt;}
.y10c{bottom:252.107067pt;}
.y1a0{bottom:253.546667pt;}
.y165{bottom:260.902859pt;}
.y94{bottom:260.906907pt;}
.y136{bottom:260.907072pt;}
.y57{bottom:262.015963pt;}
.y2c{bottom:265.386811pt;}
.yd1{bottom:266.342091pt;}
.y19f{bottom:267.146859pt;}
.y10b{bottom:272.906043pt;}
.y164{bottom:274.663067pt;}
.y135{bottom:274.667280pt;}
.y56{bottom:276.416235pt;}
.y2b{bottom:279.627067pt;}
.y93{bottom:279.786459pt;}
.y19e{bottom:280.907067pt;}
.yd0{bottom:285.221643pt;}
.y10a{bottom:286.666251pt;}
.y163{bottom:288.423275pt;}
.y55{bottom:290.656491pt;}
.y92{bottom:293.546667pt;}
.y2a{bottom:294.507067pt;}
.ycf{bottom:298.981851pt;}
.y109{bottom:300.426459pt;}
.y19d{bottom:301.062075pt;}
.y134{bottom:301.547632pt;}
.y162{bottom:302.023467pt;}
.y54{bottom:305.056763pt;}
.y91{bottom:307.146859pt;}
.y29{bottom:309.061547pt;}
.yce{bottom:312.742059pt;}
.y108{bottom:314.026651pt;}
.y19c{bottom:314.342235pt;}
.y133{bottom:314.987808pt;}
.y161{bottom:315.783675pt;}
.y53{bottom:319.297019pt;}
.y90{bottom:320.907067pt;}
.ycd{bottom:326.342251pt;}
.y107{bottom:327.786859pt;}
.y160{bottom:329.543883pt;}
.y52{bottom:333.697291pt;}
.y13f{bottom:334.347067pt;}
.y28{bottom:336.101915pt;}
.y19b{bottom:336.102075pt;}
.y132{bottom:336.427616pt;}
.ycc{bottom:340.102459pt;}
.y106{bottom:341.547067pt;}
.y8f{bottom:341.866267pt;}
.y15f{bottom:343.144075pt;}
.y51{bottom:347.937547pt;}
.y19a{bottom:349.862283pt;}
.ycb{bottom:353.702651pt;}
.y27{bottom:354.821451pt;}
.y8e{bottom:355.466459pt;}
.y15e{bottom:356.904283pt;}
.y131{bottom:358.027440pt;}
.y50{bottom:362.337819pt;}
.y105{bottom:362.345643pt;}
.y199{bottom:363.622491pt;}
.yca{bottom:367.462859pt;}
.y26{bottom:368.581659pt;}
.y8d{bottom:369.226667pt;}
.y15d{bottom:370.664491pt;}
.y104{bottom:376.105851pt;}
.y4f{bottom:376.738091pt;}
.y198{bottom:377.222683pt;}
.y130{bottom:379.787280pt;}
.yc9{bottom:381.223067pt;}
.y25{bottom:382.341867pt;}
.y8c{bottom:382.826859pt;}
.y15c{bottom:384.264683pt;}
.y103{bottom:389.706043pt;}
.y12f{bottom:390.667200pt;}
.y4e{bottom:390.978347pt;}
.y197{bottom:390.982891pt;}
.yc8{bottom:394.823259pt;}
.y24{bottom:395.942059pt;}
.y8b{bottom:396.587067pt;}
.y15b{bottom:398.024891pt;}
.y102{bottom:403.466251pt;}
.y196{bottom:404.743099pt;}
.y4d{bottom:405.378619pt;}
.yc7{bottom:408.583467pt;}
.y15a{bottom:411.785099pt;}
.y101{bottom:417.226459pt;}
.y8a{bottom:417.546800pt;}
.y195{bottom:418.343291pt;}
.y4c{bottom:419.618875pt;}
.y23{bottom:422.342363pt;}
.yc6{bottom:422.343675pt;}
.y159{bottom:425.385291pt;}
.y100{bottom:430.826651pt;}
.y89{bottom:431.146992pt;}
.y194{bottom:432.103499pt;}
.y4b{bottom:434.019147pt;}
.yc5{bottom:435.943867pt;}
.y22{bottom:436.582619pt;}
.y158{bottom:439.145499pt;}
.yff{bottom:444.586859pt;}
.y88{bottom:444.907200pt;}
.y193{bottom:445.863707pt;}
.y4a{bottom:448.259403pt;}
.yc4{bottom:449.704075pt;}
.y21{bottom:450.982891pt;}
.y157{bottom:452.905707pt;}
.yfe{bottom:458.347067pt;}
.y192{bottom:459.463899pt;}
.y87{bottom:460.578971pt;}
.y49{bottom:462.659675pt;}
.yc3{bottom:463.464283pt;}
.y20{bottom:465.223147pt;}
.y156{bottom:466.505899pt;}
.y191{bottom:473.224107pt;}
.y86{bottom:474.339179pt;}
.y1e2{bottom:474.667067pt;}
.y48{bottom:476.899931pt;}
.yc2{bottom:477.064475pt;}
.yfd{bottom:479.146059pt;}
.y1f{bottom:479.623419pt;}
.y155{bottom:480.266107pt;}
.y190{bottom:486.984315pt;}
.y85{bottom:487.939371pt;}
.yc1{bottom:490.824683pt;}
.y47{bottom:491.300203pt;}
.yfc{bottom:492.906267pt;}
.y1e{bottom:493.863675pt;}
.y154{bottom:493.866299pt;}
.y1c9{bottom:499.146331pt;}
.y18f{bottom:500.584507pt;}
.y84{bottom:501.699579pt;}
.yc0{bottom:504.584891pt;}
.y46{bottom:505.540459pt;}
.yfb{bottom:506.506459pt;}
.y153{bottom:507.626507pt;}
.y1d{bottom:508.263947pt;}
.y1e1{bottom:511.146459pt;}
.y1c8{bottom:514.186667pt;}
.y18e{bottom:514.344715pt;}
.y83{bottom:515.459787pt;}
.ybf{bottom:518.185083pt;}
.y45{bottom:519.940731pt;}
.yfa{bottom:520.266667pt;}
.y152{bottom:521.386715pt;}
.y1c{bottom:522.664219pt;}
.y1c7{bottom:527.946875pt;}
.y18d{bottom:528.104923pt;}
.y1e0{bottom:528.745883pt;}
.y82{bottom:529.059979pt;}
.ybe{bottom:531.945291pt;}
.yf9{bottom:534.026875pt;}
.y44{bottom:534.341003pt;}
.y151{bottom:534.986907pt;}
.y1b{bottom:536.904475pt;}
.y1c6{bottom:541.547067pt;}
.y18c{bottom:541.705115pt;}
.y81{bottom:542.820187pt;}
.ybd{bottom:545.705499pt;}
.y1df{bottom:546.345307pt;}
.yf8{bottom:547.627067pt;}
.y43{bottom:548.581259pt;}
.y1a{bottom:551.304747pt;}
.y150{bottom:553.866459pt;}
.y18b{bottom:555.465323pt;}
.y80{bottom:556.580395pt;}
.ybc{bottom:559.305691pt;}
.y1c5{bottom:560.426251pt;}
.y42{bottom:562.981531pt;}
.y1de{bottom:563.785883pt;}
.y19{bottom:565.545003pt;}
.y14f{bottom:567.626667pt;}
.yf7{bottom:568.582763pt;}
.y18a{bottom:569.225531pt;}
.y7f{bottom:570.180587pt;}
.ybb{bottom:573.065899pt;}
.y1c4{bottom:574.186459pt;}
.y41{bottom:577.221787pt;}
.y18{bottom:579.945275pt;}
.y1dd{bottom:581.386475pt;}
.y14e{bottom:581.386875pt;}
.y189{bottom:582.825723pt;}
.y7e{bottom:583.940795pt;}
.yba{bottom:586.826107pt;}
.yf6{bottom:587.302299pt;}
.y1c3{bottom:587.786651pt;}
.y40{bottom:591.622059pt;}
.y17{bottom:594.185531pt;}
.y14d{bottom:594.987067pt;}
.y188{bottom:596.585931pt;}
.y7d{bottom:597.701003pt;}
.y1dc{bottom:598.987067pt;}
.yb9{bottom:600.426299pt;}
.y1c2{bottom:601.546859pt;}
.y12e{bottom:602.825931pt;}
.y3f{bottom:605.862315pt;}
.yf5{bottom:606.181851pt;}
.y16{bottom:608.585803pt;}
.y7c{bottom:611.301195pt;}
.yb8{bottom:614.186507pt;}
.y1c1{bottom:615.307067pt;}
.y187{bottom:615.465483pt;}
.y14c{bottom:615.946459pt;}
.y1db{bottom:616.907067pt;}
.yf4{bottom:619.942059pt;}
.y3e{bottom:620.262587pt;}
.y12d{bottom:621.705483pt;}
.y15{bottom:622.826059pt;}
.y7b{bottom:625.061403pt;}
.yb7{bottom:627.946715pt;}
.y186{bottom:628.745643pt;}
.y14b{bottom:629.546651pt;}
.yf3{bottom:633.702267pt;}
.y1c0{bottom:634.026251pt;}
.y3d{bottom:634.502843pt;}
.y12c{bottom:635.305675pt;}
.y1da{bottom:635.787067pt;}
.y14{bottom:637.226331pt;}
.y7a{bottom:638.821611pt;}
.yb6{bottom:641.546907pt;}
.y14a{bottom:643.306859pt;}
.yf2{bottom:647.302459pt;}
.y1bf{bottom:647.786459pt;}
.y3c{bottom:648.903115pt;}
.y12b{bottom:649.065883pt;}
.y185{bottom:650.665499pt;}
.y13{bottom:651.466587pt;}
.y79{bottom:652.421803pt;}
.y1d9{bottom:654.667067pt;}
.yb5{bottom:655.307115pt;}
.y149{bottom:657.067067pt;}
.yf1{bottom:661.062667pt;}
.y1be{bottom:661.546667pt;}
.y12a{bottom:662.826091pt;}
.y3b{bottom:663.143371pt;}
.y184{bottom:664.265691pt;}
.y12{bottom:665.866859pt;}
.y78{bottom:666.182011pt;}
.y1d8{bottom:673.547067pt;}
.yb4{bottom:674.186667pt;}
.yf0{bottom:674.822875pt;}
.y1bd{bottom:675.146859pt;}
.y3a{bottom:677.543643pt;}
.y148{bottom:677.866859pt;}
.y183{bottom:678.025899pt;}
.y77{bottom:679.942219pt;}
.y11{bottom:680.267131pt;}
.y129{bottom:681.545627pt;}
.yb3{bottom:687.786859pt;}
.yef{bottom:688.423067pt;}
.y1bc{bottom:688.907067pt;}
.y147{bottom:691.627067pt;}
.y182{bottom:691.786107pt;}
.y39{bottom:691.943915pt;}
.y1d7{bottom:692.267067pt;}
.y76{bottom:693.222379pt;}
.y10{bottom:694.507387pt;}
.y128{bottom:700.425179pt;}
.yb2{bottom:701.547067pt;}
.yee{bottom:702.183275pt;}
.y181{bottom:705.386299pt;}
.y38{bottom:706.184171pt;}
.y146{bottom:707.302619pt;}
.y1bb{bottom:707.786267pt;}
.yf{bottom:708.907659pt;}
.y1d6{bottom:711.147200pt;}
.y127{bottom:714.185387pt;}
.y75{bottom:714.822203pt;}
.yed{bottom:715.783467pt;}
.y180{bottom:719.146507pt;}
.y37{bottom:720.584443pt;}
.y145{bottom:721.062827pt;}
.y1ba{bottom:721.546475pt;}
.yb1{bottom:722.346651pt;}
.ye{bottom:727.627195pt;}
.y126{bottom:727.785579pt;}
.y74{bottom:728.422395pt;}
.yec{bottom:729.543675pt;}
.y1d5{bottom:730.027067pt;}
.y17f{bottom:732.906715pt;}
.y144{bottom:734.663019pt;}
.y36{bottom:734.824699pt;}
.y1b9{bottom:735.146667pt;}
.yb0{bottom:736.106859pt;}
.yd{bottom:741.067371pt;}
.y125{bottom:741.545787pt;}
.yeb{bottom:743.303883pt;}
.y17e{bottom:746.506907pt;}
.y143{bottom:748.423227pt;}
.y1b8{bottom:748.906875pt;}
.y1d4{bottom:748.907067pt;}
.y35{bottom:749.224971pt;}
.yaf{bottom:749.867067pt;}
.y73{bottom:750.822299pt;}
.y124{bottom:755.305995pt;}
.yea{bottom:756.904075pt;}
.y142{bottom:762.183435pt;}
.y1b7{bottom:762.507067pt;}
.y72{bottom:765.222571pt;}
.y17d{bottom:765.386459pt;}
.y1d3{bottom:767.787067pt;}
.yc{bottom:768.107739pt;}
.y123{bottom:768.906187pt;}
.yae{bottom:770.662987pt;}
.ye9{bottom:770.664283pt;}
.y141{bottom:775.783627pt;}
.y17c{bottom:779.146667pt;}
.y71{bottom:779.622843pt;}
.y1b6{bottom:781.386859pt;}
.y122{bottom:782.666395pt;}
.yad{bottom:784.423195pt;}
.ye8{bottom:784.424491pt;}
.y1d2{bottom:786.506251pt;}
.yb{bottom:786.827275pt;}
.y140{bottom:789.543835pt;}
.y17b{bottom:792.746859pt;}
.y70{bottom:793.863099pt;}
.y1b5{bottom:795.147067pt;}
.yac{bottom:798.023387pt;}
.y1d1{bottom:800.266459pt;}
.y121{bottom:801.545947pt;}
.ye7{bottom:803.304043pt;}
.ya{bottom:805.706827pt;}
.y17a{bottom:806.507067pt;}
.y6f{bottom:808.263371pt;}
.yab{bottom:811.783595pt;}
.y1d0{bottom:814.026667pt;}
.y1b4{bottom:814.026875pt;}
.ye6{bottom:816.904235pt;}
.y9{bottom:819.787412pt;}
.y120{bottom:820.425499pt;}
.y6e{bottom:822.503627pt;}
.yaa{bottom:825.543803pt;}
.y179{bottom:827.306859pt;}
.y1cf{bottom:827.626859pt;}
.y1b3{bottom:827.627067pt;}
.ye5{bottom:830.664443pt;}
.y11f{bottom:834.025691pt;}
.y8{bottom:836.587174pt;}
.y6d{bottom:836.903899pt;}
.ya9{bottom:839.143995pt;}
.y178{bottom:841.067067pt;}
.y1ce{bottom:841.387067pt;}
.ye4{bottom:844.264635pt;}
.y1b2{bottom:846.506459pt;}
.y11e{bottom:847.785899pt;}
.y6c{bottom:851.144155pt;}
.ya8{bottom:852.904203pt;}
.y7{bottom:853.547397pt;}
.ye3{bottom:858.024843pt;}
.y1b1{bottom:860.266667pt;}
.y11d{bottom:861.546107pt;}
.y177{bottom:861.866651pt;}
.y6b{bottom:865.544427pt;}
.ya7{bottom:866.664411pt;}
.ye2{bottom:871.785051pt;}
.y1b0{bottom:873.866859pt;}
.y11c{bottom:875.146299pt;}
.y176{bottom:875.626859pt;}
.y6{bottom:878.347319pt;}
.y6a{bottom:879.784683pt;}
.ya6{bottom:880.264603pt;}
.ye1{bottom:885.385243pt;}
.y1af{bottom:887.627067pt;}
.y11b{bottom:888.906507pt;}
.y175{bottom:889.387067pt;}
.ya5{bottom:894.024811pt;}
.y69{bottom:894.184955pt;}
.y5{bottom:895.147081pt;}
.ye0{bottom:899.145451pt;}
.y11a{bottom:902.506699pt;}
.y174{bottom:905.060699pt;}
.y1ae{bottom:906.506459pt;}
.y1cd{bottom:906.506667pt;}
.ya4{bottom:907.785019pt;}
.y68{bottom:908.425211pt;}
.y4{bottom:911.946843pt;}
.ydf{bottom:912.905659pt;}
.y119{bottom:916.266907pt;}
.y173{bottom:918.820907pt;}
.y1ad{bottom:920.106651pt;}
.y1cc{bottom:920.106859pt;}
.ya3{bottom:921.385211pt;}
.y67{bottom:922.825483pt;}
.yde{bottom:926.505851pt;}
.y3{bottom:928.907067pt;}
.y118{bottom:930.027115pt;}
.y172{bottom:932.421099pt;}
.y1ac{bottom:933.866859pt;}
.y1cb{bottom:933.867067pt;}
.y66{bottom:937.225755pt;}
.ya2{bottom:940.264763pt;}
.ydd{bottom:940.266059pt;}
.y117{bottom:943.627307pt;}
.y171{bottom:946.181307pt;}
.y1ab{bottom:947.627067pt;}
.y65{bottom:951.466011pt;}
.y1ca{bottom:952.746251pt;}
.ya1{bottom:954.024971pt;}
.ydc{bottom:954.026267pt;}
.y116{bottom:957.387515pt;}
.y170{bottom:959.941515pt;}
.y2{bottom:962.346466pt;}
.y64{bottom:965.866283pt;}
.y1aa{bottom:966.506459pt;}
.ya0{bottom:967.625163pt;}
.ydb{bottom:967.626459pt;}
.y16f{bottom:973.221675pt;}
.y115{bottom:976.267067pt;}
.y63{bottom:980.106539pt;}
.y1a9{bottom:980.106651pt;}
.y9f{bottom:981.385371pt;}
.yda{bottom:981.386667pt;}
.y1{bottom:983.947067pt;}
.y1a8{bottom:993.866859pt;}
.y62{bottom:994.506811pt;}
.y16e{bottom:995.141531pt;}
.y9e{bottom:995.145579pt;}
.y114{bottom:995.146619pt;}
.yd9{bottom:995.146875pt;}
.y1a7{bottom:1007.627067pt;}
.y16d{bottom:1008.741723pt;}
.y9d{bottom:1008.745771pt;}
.y113{bottom:1008.746811pt;}
.y61{bottom:1008.747067pt;}
.h8{height:41.875000pt;}
.h4{height:45.853125pt;}
.h5{height:47.085000pt;}
.ha{height:48.727500pt;}
.h6{height:50.743078pt;}
.h7{height:50.795366pt;}
.hb{height:52.109269pt;}
.h9{height:53.141920pt;}
.h3{height:57.755450pt;}
.h2{height:59.770175pt;}
.h1{height:76.014344pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:69.974373pt;}
.x1{left:77.654133pt;}
.x2{left:92.374610pt;}
.x12{left:93.334133pt;}
.xf{left:122.293525pt;}
.x10{left:125.493845pt;}
.x4{left:170.614206pt;}
.x8{left:172.534015pt;}
.xc{left:181.333829pt;}
.xe{left:203.936000pt;}
.xb{left:213.814741pt;}
.x11{left:243.093925pt;}
.x3{left:310.614133pt;}
.x5{left:340.054549pt;}
.x7{left:345.494485pt;}
.x1d{left:397.174133pt;}
.x6{left:404.694806pt;}
.xa{left:408.214325pt;}
.xd{left:423.735637pt;}
.x13{left:447.094133pt;}
.x18{left:456.534197pt;}
.x19{left:457.974341pt;}
.x1a{left:470.614133pt;}
.x14{left:489.976085pt;}
.x15{left:529.976581pt;}
.x1b{left:536.693749pt;}
.x1c{left:541.654245pt;}
.x17{left:596.694197pt;}
.x16{left:712.854133pt;}
}




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