
    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_3556e145a1cc893dbfb8be41.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115000;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_bcf3a8e7c5355b4d2d03817c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_aec7603c308de67702ed984c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.110000;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_336c112f1b5848ee07987dde.woff')format("woff");}.ff4{font-family:ff4;line-height:1.123000;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_f6d2364cde5419cbb9a4853d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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);}
.v1{vertical-align:-19.554600px;}
.v2{vertical-align:-2.006400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.457641px;}
.ls5{letter-spacing:-1.501258px;}
.lse{letter-spacing:-1.215004px;}
.ls10{letter-spacing:-0.851984px;}
.ls24{letter-spacing:-0.740856px;}
.ls1b{letter-spacing:-0.733447px;}
.ls20{letter-spacing:-0.703813px;}
.ls14{letter-spacing:-0.526008px;}
.lsd{letter-spacing:-0.511191px;}
.lsf{letter-spacing:-0.444514px;}
.ls8{letter-spacing:-0.433403px;}
.lsb{letter-spacing:-0.377837px;}
.lsc{letter-spacing:-0.371537px;}
.ls12{letter-spacing:-0.340794px;}
.ls13{letter-spacing:-0.333385px;}
.ls16{letter-spacing:-0.318568px;}
.ls1e{letter-spacing:-0.266708px;}
.ls9{letter-spacing:-0.253374px;}
.lsa{letter-spacing:-0.222257px;}
.ls18{letter-spacing:-0.214848px;}
.ls1d{letter-spacing:-0.177805px;}
.ls1c{letter-spacing:-0.170397px;}
.ls1f{letter-spacing:-0.111128px;}
.ls1a{letter-spacing:-0.059268px;}
.ls15{letter-spacing:-0.044451px;}
.ls21{letter-spacing:-0.037043px;}
.ls17{letter-spacing:-0.029634px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.001200px;}
.ls22{letter-spacing:0.001800px;}
.ls0{letter-spacing:0.004650px;}
.ls1{letter-spacing:0.005250px;}
.ls23{letter-spacing:0.007409px;}
.ls11{letter-spacing:0.014817px;}
.ls19{letter-spacing:0.022226px;}
.ls25{letter-spacing:0.029634px;}
.ls6{letter-spacing:0.066677px;}
.ls4{letter-spacing:0.674430px;}
.ls26{letter-spacing:7.712311px;}
.ls2{letter-spacing:342.905250px;}
.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;}
}
.wsc9{word-spacing:-20.373600px;}
.ws1f{word-spacing:-18.521400px;}
.ws55{word-spacing:-18.343595px;}
.ws3{word-spacing:-17.002737px;}
.ws1c{word-spacing:-16.669350px;}
.ws1e{word-spacing:-15.743100px;}
.ws1d{word-spacing:-15.371563px;}
.ws1{word-spacing:-14.843130px;}
.ws4{word-spacing:-14.817150px;}
.ws0{word-spacing:-14.168700px;}
.ws2{word-spacing:-13.224402px;}
.ws5{word-spacing:-11.093192px;}
.ws3b{word-spacing:-10.742400px;}
.ws6{word-spacing:-8.593950px;}
.ws3c{word-spacing:-4.637759px;}
.ws29{word-spacing:-4.630350px;}
.ws2a{word-spacing:-4.622941px;}
.ws79{word-spacing:-4.467362px;}
.ws45{word-spacing:-4.378459px;}
.ws42{word-spacing:-4.304373px;}
.ws23{word-spacing:-4.167338px;}
.ws24{word-spacing:-4.107328px;}
.ws28{word-spacing:-4.087325px;}
.ws36{word-spacing:-3.985805px;}
.ws70{word-spacing:-3.926537px;}
.ws14{word-spacing:-3.807280px;}
.wsf{word-spacing:-3.640586px;}
.wsa4{word-spacing:-3.630194px;}
.ws52{word-spacing:-3.622786px;}
.ws85{word-spacing:-3.615377px;}
.ws10{word-spacing:-3.513899px;}
.ws6b{word-spacing:-3.467206px;}
.wsa8{word-spacing:-3.385712px;}
.ws39{word-spacing:-3.289401px;}
.wsa7{word-spacing:-2.918973px;}
.ws32{word-spacing:-2.874521px;}
.ws2f{word-spacing:-2.659673px;}
.ws15{word-spacing:-2.613754px;}
.ws9a{word-spacing:-2.541136px;}
.ws27{word-spacing:-2.493735px;}
.ws48{word-spacing:-2.452233px;}
.ws73{word-spacing:-2.418159px;}
.ws34{word-spacing:-2.244794px;}
.wsbc{word-spacing:-2.237385px;}
.ws25{word-spacing:-2.233693px;}
.ws89{word-spacing:-2.163300px;}
.ws38{word-spacing:-2.066988px;}
.ws26{word-spacing:-2.046996px;}
.wsc{word-spacing:-2.026993px;}
.ws82{word-spacing:-1.948451px;}
.wsc4{word-spacing:-1.785463px;}
.ws2e{word-spacing:-1.763237px;}
.ws4b{word-spacing:-1.755829px;}
.ws72{word-spacing:-1.748424px;}
.ws2b{word-spacing:-1.681743px;}
.ws5d{word-spacing:-1.637292px;}
.ws8a{word-spacing:-1.622475px;}
.ws4f{word-spacing:-1.444669px;}
.ws21{word-spacing:-1.433564px;}
.ws7d{word-spacing:-1.340949px;}
.ws46{word-spacing:-1.289089px;}
.ws30{word-spacing:-1.281681px;}
.ws22{word-spacing:-1.220196px;}
.wsb9{word-spacing:-1.180190px;}
.ws4a{word-spacing:-1.140918px;}
.ws33{word-spacing:-1.059424px;}
.ws2c{word-spacing:-1.052016px;}
.ws95{word-spacing:-0.985338px;}
.wsbb{word-spacing:-0.837167px;}
.ws6c{word-spacing:-0.777899px;}
.wsd{word-spacing:-0.746787px;}
.ws17{word-spacing:-0.706780px;}
.ws51{word-spacing:-0.681588px;}
.ws5e{word-spacing:-0.644545px;}
.ws16{word-spacing:-0.533419px;}
.ws80{word-spacing:-0.520084px;}
.wsb{word-spacing:-0.493413px;}
.ws35{word-spacing:-0.407471px;}
.ws3e{word-spacing:-0.385245px;}
.wsa2{word-spacing:-0.348202px;}
.wsaa{word-spacing:-0.240039px;}
.wsd2{word-spacing:-0.162988px;}
.ws8e{word-spacing:-0.140763px;}
.wsab{word-spacing:-0.040006px;}
.ws7{word-spacing:0.000000px;}
.ws5a{word-spacing:0.037043px;}
.ws31{word-spacing:0.074086px;}
.ws7f{word-spacing:0.093348px;}
.ws44{word-spacing:0.133354px;}
.wse{word-spacing:0.146690px;}
.ws43{word-spacing:0.148171px;}
.wsb6{word-spacing:0.153358px;}
.wsca{word-spacing:0.266708px;}
.wscb{word-spacing:0.296342px;}
.ws4c{word-spacing:0.333385px;}
.wsa6{word-spacing:0.385245px;}
.wsa0{word-spacing:0.407471px;}
.wsa5{word-spacing:0.422288px;}
.wsb0{word-spacing:0.433403px;}
.ws37{word-spacing:0.459331px;}
.wsb1{word-spacing:0.460074px;}
.wscc{word-spacing:0.488965px;}
.ws61{word-spacing:0.540825px;}
.ws8d{word-spacing:0.607502px;}
.wsa9{word-spacing:0.614910px;}
.wsb2{word-spacing:0.693445px;}
.ws76{word-spacing:0.703813px;}
.ws78{word-spacing:0.726039px;}
.ws11{word-spacing:0.733451px;}
.ws77{word-spacing:0.755673px;}
.wsa{word-spacing:0.780126px;}
.wsd1{word-spacing:0.785307px;}
.ws41{word-spacing:0.814942px;}
.ws3d{word-spacing:0.822350px;}
.wsc1{word-spacing:0.903844px;}
.wsac{word-spacing:0.930517px;}
.ws7c{word-spacing:1.052016px;}
.ws9d{word-spacing:1.081650px;}
.ws65{word-spacing:1.096467px;}
.ws64{word-spacing:1.140918px;}
.wsd3{word-spacing:1.192778px;}
.ws50{word-spacing:1.207595px;}
.ws8f{word-spacing:1.244638px;}
.ws59{word-spacing:1.252047px;}
.ws94{word-spacing:1.311315px;}
.ws69{word-spacing:1.340949px;}
.ws2d{word-spacing:1.363175px;}
.wsc2{word-spacing:1.413561px;}
.ws91{word-spacing:1.444669px;}
.wsb7{word-spacing:1.526912px;}
.ws5f{word-spacing:1.674335px;}
.ws88{word-spacing:1.689152px;}
.ws74{word-spacing:1.711377px;}
.ws8{word-spacing:1.726945px;}
.ws9c{word-spacing:1.748420px;}
.ws62{word-spacing:1.852140px;}
.ws63{word-spacing:1.859549px;}
.wsaf{word-spacing:1.953648px;}
.ws98{word-spacing:1.966983px;}
.ws13{word-spacing:2.093670px;}
.ws7b{word-spacing:2.163300px;}
.ws54{word-spacing:2.181084px;}
.ws9b{word-spacing:2.185525px;}
.ws19{word-spacing:2.210719px;}
.ws5c{word-spacing:2.244794px;}
.ws53{word-spacing:2.252202px;}
.wsc3{word-spacing:2.393719px;}
.wsb8{word-spacing:2.447061px;}
.ws56{word-spacing:2.459642px;}
.ws87{word-spacing:2.489276px;}
.wsc7{word-spacing:2.567080px;}
.wsb3{word-spacing:2.622630px;}
.ws75{word-spacing:2.652264px;}
.wsbe{word-spacing:2.689307px;}
.ws1a{word-spacing:2.779697px;}
.ws6a{word-spacing:2.800436px;}
.ws57{word-spacing:2.815253px;}
.ws58{word-spacing:2.822661px;}
.wsbf{word-spacing:2.859704px;}
.ws71{word-spacing:2.896747px;}
.ws93{word-spacing:2.933790px;}
.ws4e{word-spacing:2.941198px;}
.ws7a{word-spacing:2.970833px;}
.ws6e{word-spacing:3.030101px;}
.ws96{word-spacing:3.385712px;}
.wsa3{word-spacing:3.415346px;}
.wsc5{word-spacing:3.430163px;}
.wsc6{word-spacing:3.447222px;}
.ws18{word-spacing:3.460557px;}
.wscd{word-spacing:3.778366px;}
.ws99{word-spacing:3.813947px;}
.ws83{word-spacing:3.815408px;}
.ws84{word-spacing:3.941354px;}
.ws9e{word-spacing:4.156202px;}
.ws3f{word-spacing:4.400685px;}
.ws3a{word-spacing:4.415511px;}
.ws66{word-spacing:4.422910px;}
.wsc8{word-spacing:4.447383px;}
.ws6d{word-spacing:4.511813px;}
.ws49{word-spacing:4.578490px;}
.ws97{word-spacing:4.600716px;}
.ws12{word-spacing:4.620744px;}
.ws7e{word-spacing:4.800773px;}
.ws47{word-spacing:4.919284px;}
.ws92{word-spacing:4.934101px;}
.ws9f{word-spacing:4.963735px;}
.ws68{word-spacing:5.015595px;}
.ws9{word-spacing:5.167499px;}
.ws6f{word-spacing:5.348980px;}
.ws40{word-spacing:5.474926px;}
.wsb4{word-spacing:5.949074px;}
.wsae{word-spacing:6.221001px;}
.ws5b{word-spacing:6.230599px;}
.ws90{word-spacing:6.371362px;}
.ws60{word-spacing:6.615844px;}
.wsb5{word-spacing:6.814430px;}
.ws4d{word-spacing:6.875144px;}
.wsbd{word-spacing:7.290023px;}
.wsa1{word-spacing:7.601183px;}
.wsce{word-spacing:7.712311px;}
.wsba{word-spacing:7.838256px;}
.wsad{word-spacing:8.114640px;}
.wsd0{word-spacing:8.119782px;}
.ws86{word-spacing:8.142007px;}
.ws20{word-spacing:8.334675px;}
.ws8b{word-spacing:8.445758px;}
.ws8c{word-spacing:8.453167px;}
.wscf{word-spacing:8.949540px;}
.ws67{word-spacing:9.260700px;}
.ws81{word-spacing:9.853385px;}
.wsc0{word-spacing:10.586832px;}
.ws1b{word-spacing:1592.683641px;}
._6{margin-left:-37.885928px;}
._11{margin-left:-20.203143px;}
._e{margin-left:-19.114085px;}
._9{margin-left:-18.062908px;}
._8{margin-left:-16.687140px;}
._15{margin-left:-8.660607px;}
._4{margin-left:-7.654540px;}
._b{margin-left:-6.074311px;}
._1{margin-left:-4.867424px;}
._d{margin-left:-3.859860px;}
._3{margin-left:-2.790090px;}
._0{margin-left:-1.755829px;}
._2{width:1.022381px;}
._5{width:2.870098px;}
._c{width:5.072643px;}
._13{width:6.275050px;}
._a{width:13.315928px;}
._f{width:32.627364px;}
._12{width:34.861791px;}
._10{width:37.042875px;}
._14{width:38.791299px;}
._7{width:1008.897408px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.375800px;}
.fsb{font-size:42.969600px;}
.fs8{font-size:50.377800px;}
.fs2{font-size:51.860400px;}
.fs6{font-size:56.674800px;}
.fs7{font-size:59.268600px;}
.fsa{font-size:62.972400px;}
.fs0{font-size:66.677400px;}
.fs1{font-size:74.085600px;}
.fsc{font-size:81.494400px;}
.fs5{font-size:88.903200px;}
.fs4{font-size:103.720200px;}
.fs3{font-size:133.354200px;}
.y0{bottom:0.000000px;}
.y3{bottom:83.983200px;}
.y24{bottom:119.900638px;}
.y4d{bottom:119.906645px;}
.yd8{bottom:120.341769px;}
.ybd{bottom:120.637242px;}
.yfe{bottom:120.878190px;}
.y96{bottom:121.112608px;}
.y72{bottom:122.066608px;}
.y4c{bottom:138.985207px;}
.yd7{bottom:139.418850px;}
.y95{bottom:140.189689px;}
.yfd{bottom:140.883077px;}
.y71{bottom:141.143689px;}
.y23{bottom:143.867850px;}
.ybc{bottom:143.974206px;}
.y22{bottom:158.056269px;}
.y4b{bottom:158.063769px;}
.y94{bottom:159.266769px;}
.y70{bottom:160.220769px;}
.yfc{bottom:160.884630px;}
.ybb{bottom:166.755528px;}
.y21{bottom:177.133350px;}
.y4a{bottom:177.140850px;}
.y93{bottom:178.343850px;}
.y6f{bottom:179.297850px;}
.yfb{bottom:180.887850px;}
.yba{bottom:189.538770px;}
.yd6{bottom:201.018630px;}
.yfa{bottom:212.004072px;}
.yb9{bottom:212.320092px;}
.yd5{bottom:221.021850px;}
.y20{bottom:231.561623px;}
.yb8{bottom:235.101414px;}
.yf9{bottom:235.341036px;}
.y49{bottom:236.727330px;}
.y6e{bottom:237.322794px;}
.y92{bottom:237.324120px;}
.y1f{bottom:251.934903px;}
.yd4{bottom:255.842862px;}
.yb7{bottom:257.882736px;}
.yf8{bottom:258.678000px;}
.y48{bottom:260.064294px;}
.y6d{bottom:260.659758px;}
.y91{bottom:260.661084px;}
.y1e{bottom:272.308182px;}
.yd3{bottom:279.179826px;}
.yb6{bottom:280.664058px;}
.y47{bottom:283.401258px;}
.y6c{bottom:283.996722px;}
.y90{bottom:283.998048px;}
.yf7{bottom:302.388210px;}
.yd2{bottom:302.516790px;}
.y1d{bottom:303.181485px;}
.yb5{bottom:303.445380px;}
.y46{bottom:306.738222px;}
.y6b{bottom:307.333686px;}
.y8f{bottom:307.335012px;}
.yf6{bottom:322.391430px;}
.yd1{bottom:325.853754px;}
.yb4{bottom:326.226702px;}
.y45{bottom:330.075186px;}
.y6a{bottom:330.670650px;}
.y8e{bottom:330.671976px;}
.yf5{bottom:342.394650px;}
.yb3{bottom:349.008024px;}
.yd0{bottom:349.190718px;}
.y44{bottom:353.412150px;}
.y69{bottom:354.007836px;}
.y8d{bottom:354.008940px;}
.yb2{bottom:371.789346px;}
.ycf{bottom:372.527682px;}
.y43{bottom:376.749336px;}
.yf4{bottom:377.207457px;}
.y68{bottom:377.344836px;}
.y8c{bottom:377.345904px;}
.y1c{bottom:387.640081px;}
.yb1{bottom:394.570668px;}
.yce{bottom:395.864646px;}
.y42{bottom:400.085984px;}
.yf3{bottom:400.544421px;}
.y67{bottom:400.681800px;}
.y8b{bottom:400.682868px;}
.y1b{bottom:415.889629px;}
.yb0{bottom:417.351990px;}
.ycd{bottom:419.201610px;}
.y41{bottom:423.425188px;}
.yf2{bottom:423.881385px;}
.y8a{bottom:424.019832px;}
.y1a{bottom:436.262908px;}
.yaf{bottom:440.133312px;}
.ycc{bottom:442.538574px;}
.y40{bottom:446.758540px;}
.yf1{bottom:447.218349px;}
.y89{bottom:447.356796px;}
.y66{bottom:447.357090px;}
.y19{bottom:456.636188px;}
.yae{bottom:462.914634px;}
.ycb{bottom:465.875538px;}
.y3f{bottom:470.097356px;}
.yf0{bottom:470.555313px;}
.y88{bottom:470.693760px;}
.y65{bottom:470.694054px;}
.y18{bottom:477.009467px;}
.yad{bottom:485.695956px;}
.yca{bottom:489.212502px;}
.y3e{bottom:493.436172px;}
.yef{bottom:493.892277px;}
.y87{bottom:494.030724px;}
.y17{bottom:497.382747px;}
.yac{bottom:508.477278px;}
.yc9{bottom:512.549466px;}
.y116{bottom:516.341442px;}
.y3d{bottom:516.773136px;}
.yee{bottom:517.229241px;}
.y86{bottom:517.367688px;}
.y16{bottom:517.756026px;}
.yab{bottom:531.258600px;}
.yc8{bottom:535.886430px;}
.y15{bottom:538.129306px;}
.y115{bottom:539.678406px;}
.y3c{bottom:540.110652px;}
.yed{bottom:540.568057px;}
.y85{bottom:540.704652px;}
.y64{bottom:540.704946px;}
.y14{bottom:558.502586px;}
.yc7{bottom:559.223394px;}
.y114{bottom:563.015370px;}
.y3b{bottom:563.447616px;}
.yec{bottom:563.906874px;}
.y84{bottom:564.041616px;}
.y63{bottom:564.041910px;}
.yaa{bottom:572.560590px;}
.y13{bottom:578.875865px;}
.yc6{bottom:582.560358px;}
.y113{bottom:586.352334px;}
.y3a{bottom:586.784580px;}
.yeb{bottom:587.245690px;}
.y83{bottom:587.378580px;}
.y62{bottom:587.378874px;}
.ya9{bottom:592.563810px;}
.y12{bottom:599.249145px;}
.yc5{bottom:605.897322px;}
.y112{bottom:609.689298px;}
.y39{bottom:610.121544px;}
.yea{bottom:610.584506px;}
.y82{bottom:610.715544px;}
.y61{bottom:610.715838px;}
.ya8{bottom:612.567030px;}
.y11{bottom:619.622424px;}
.yc4{bottom:629.234286px;}
.ya7{bottom:632.570250px;}
.y111{bottom:633.026262px;}
.y38{bottom:633.458508px;}
.ye9{bottom:633.923322px;}
.y81{bottom:634.052508px;}
.y60{bottom:634.052802px;}
.y10{bottom:639.995704px;}
.yc3{bottom:652.571250px;}
.y110{bottom:656.363226px;}
.y37{bottom:656.795472px;}
.y80{bottom:657.389472px;}
.y5f{bottom:657.389766px;}
.yf{bottom:660.368983px;}
.ya6{bottom:667.392354px;}
.y10f{bottom:679.700190px;}
.y36{bottom:680.132436px;}
.ye8{bottom:680.597250px;}
.y7f{bottom:680.726436px;}
.y5e{bottom:680.726730px;}
.ye{bottom:680.742263px;}
.ya5{bottom:690.173676px;}
.yc2{bottom:699.245460px;}
.y10e{bottom:703.037154px;}
.y35{bottom:703.469472px;}
.y7e{bottom:704.063436px;}
.y5d{bottom:704.063694px;}
.yd{bottom:711.618900px;}
.ya4{bottom:712.954998px;}
.yc1{bottom:719.248680px;}
.y10d{bottom:726.374118px;}
.y34{bottom:726.806436px;}
.y5c{bottom:727.400658px;}
.ya3{bottom:735.736320px;}
.yc0{bottom:739.251900px;}
.y10c{bottom:749.711082px;}
.y33{bottom:750.143586px;}
.ye7{bottom:750.608100px;}
.y5b{bottom:750.737622px;}
.ya2{bottom:758.517642px;}
.ye6{bottom:770.611320px;}
.y10b{bottom:773.048046px;}
.y32{bottom:773.480550px;}
.y5a{bottom:774.074586px;}
.ybf{bottom:774.075618px;}
.ya1{bottom:781.298964px;}
.ye5{bottom:790.614540px;}
.y10a{bottom:796.385010px;}
.y59{bottom:797.412288px;}
.y7d{bottom:797.412582px;}
.ya0{bottom:804.080286px;}
.ye4{bottom:810.617760px;}
.y109{bottom:819.721974px;}
.y58{bottom:820.749252px;}
.y7c{bottom:820.749546px;}
.ya{bottom:828.374700px;}
.ye3{bottom:830.620980px;}
.y108{bottom:843.058938px;}
.y57{bottom:844.086216px;}
.y7b{bottom:844.086510px;}
.y31{bottom:846.826807px;}
.y9f{bottom:849.642930px;}
.ye2{bottom:850.624200px;}
.y9{bottom:859.555140px;}
.y107{bottom:866.395902px;}
.y56{bottom:867.423180px;}
.y7a{bottom:867.423474px;}
.y30{bottom:875.076354px;}
.ye1{bottom:885.443922px;}
.y106{bottom:889.732866px;}
.y8{bottom:890.671200px;}
.y55{bottom:890.760144px;}
.y79{bottom:890.760438px;}
.y2f{bottom:895.449634px;}
.ye0{bottom:908.780886px;}
.y105{bottom:913.069830px;}
.y54{bottom:914.097108px;}
.y78{bottom:914.097402px;}
.y2e{bottom:915.822913px;}
.y9e{bottom:917.986896px;}
.ydf{bottom:932.117850px;}
.y2d{bottom:936.196193px;}
.y104{bottom:936.406794px;}
.y53{bottom:937.434072px;}
.y77{bottom:937.434366px;}
.y9d{bottom:940.768218px;}
.y7{bottom:946.605870px;}
.y2c{bottom:956.569473px;}
.y103{bottom:959.743758px;}
.y52{bottom:960.771036px;}
.y76{bottom:960.771330px;}
.y9c{bottom:963.549540px;}
.y2b{bottom:976.942752px;}
.yde{bottom:978.793050px;}
.y102{bottom:983.080722px;}
.y51{bottom:984.108000px;}
.y75{bottom:984.108294px;}
.y9b{bottom:986.330862px;}
.y6{bottom:986.612130px;}
.y2a{bottom:997.316032px;}
.ydd{bottom:998.796270px;}
.y101{bottom:1006.417686px;}
.y74{bottom:1007.445258px;}
.y9a{bottom:1009.112184px;}
.y29{bottom:1017.689311px;}
.ydc{bottom:1018.799490px;}
.y5{bottom:1026.618390px;}
.y100{bottom:1029.754650px;}
.y50{bottom:1030.782222px;}
.y99{bottom:1031.893506px;}
.y28{bottom:1038.062591px;}
.ydb{bottom:1038.802710px;}
.y4f{bottom:1054.119186px;}
.y98{bottom:1054.674828px;}
.y27{bottom:1058.435870px;}
.yda{bottom:1058.805930px;}
.y4{bottom:1066.624650px;}
.yff{bottom:1076.428650px;}
.y4e{bottom:1077.456150px;}
.y26{bottom:1078.809150px;}
.yc{bottom:1153.219350px;}
.yd9{bottom:1154.002050px;}
.y2{bottom:1154.002500px;}
.ybe{bottom:1154.503800px;}
.y25{bottom:1154.504100px;}
.y73{bottom:1154.504400px;}
.y1{bottom:1155.059700px;}
.y97{bottom:1155.060000px;}
.yb{bottom:1168.777350px;}
.hb{height:30.290293px;}
.h3{height:43.614596px;}
.h9{height:43.873898px;}
.ha{height:49.844893px;}
.h8{height:56.075693px;}
.h1{height:56.409080px;}
.hf{height:60.298390px;}
.h10{height:60.298990px;}
.hc{height:60.299590px;}
.h2{height:62.305990px;}
.he{height:62.307254px;}
.hd{height:62.313031px;}
.h11{height:68.536790px;}
.h7{height:74.767591px;}
.h6{height:87.228688px;}
.h5{height:95.348253px;}
.h4{height:113.884487px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:110.253900px;}
.xc{left:120.754350px;}
.xb{left:125.070220px;}
.x6{left:144.341100px;}
.xe{left:152.253300px;}
.x7{left:156.226293px;}
.xd{left:162.756300px;}
.x5{left:173.825714px;}
.xf{left:189.006300px;}
.x10{left:199.507950px;}
.x4{left:201.963450px;}
.x8{left:344.607600px;}
.xa{left:346.410600px;}
.x9{left:378.524105px;}
.x3{left:420.797400px;}
.x1{left:746.272500px;}
@media print{
.v1{vertical-align:-17.381867pt;}
.v2{vertical-align:-1.783467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.740125pt;}
.ls5{letter-spacing:-1.334452pt;}
.lse{letter-spacing:-1.080003pt;}
.ls10{letter-spacing:-0.757319pt;}
.ls24{letter-spacing:-0.658539pt;}
.ls1b{letter-spacing:-0.651953pt;}
.ls20{letter-spacing:-0.625612pt;}
.ls14{letter-spacing:-0.467562pt;}
.lsd{letter-spacing:-0.454392pt;}
.lsf{letter-spacing:-0.395123pt;}
.ls8{letter-spacing:-0.385247pt;}
.lsb{letter-spacing:-0.335855pt;}
.lsc{letter-spacing:-0.330255pt;}
.ls12{letter-spacing:-0.302928pt;}
.ls13{letter-spacing:-0.296342pt;}
.ls16{letter-spacing:-0.283172pt;}
.ls1e{letter-spacing:-0.237074pt;}
.ls9{letter-spacing:-0.225221pt;}
.lsa{letter-spacing:-0.197562pt;}
.ls18{letter-spacing:-0.190976pt;}
.ls1d{letter-spacing:-0.158049pt;}
.ls1c{letter-spacing:-0.151464pt;}
.ls1f{letter-spacing:-0.098781pt;}
.ls1a{letter-spacing:-0.052683pt;}
.ls15{letter-spacing:-0.039512pt;}
.ls21{letter-spacing:-0.032927pt;}
.ls17{letter-spacing:-0.026342pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.001067pt;}
.ls22{letter-spacing:0.001600pt;}
.ls0{letter-spacing:0.004133pt;}
.ls1{letter-spacing:0.004667pt;}
.ls23{letter-spacing:0.006585pt;}
.ls11{letter-spacing:0.013171pt;}
.ls19{letter-spacing:0.019756pt;}
.ls25{letter-spacing:0.026342pt;}
.ls6{letter-spacing:0.059269pt;}
.ls4{letter-spacing:0.599493pt;}
.ls26{letter-spacing:6.855388pt;}
.ls2{letter-spacing:304.804667pt;}
.wsc9{word-spacing:-18.109867pt;}
.ws1f{word-spacing:-16.463467pt;}
.ws55{word-spacing:-16.305417pt;}
.ws3{word-spacing:-15.113544pt;}
.ws1c{word-spacing:-14.817200pt;}
.ws1e{word-spacing:-13.993867pt;}
.ws1d{word-spacing:-13.663611pt;}
.ws1{word-spacing:-13.193893pt;}
.ws4{word-spacing:-13.170800pt;}
.ws0{word-spacing:-12.594400pt;}
.ws2{word-spacing:-11.755024pt;}
.ws5{word-spacing:-9.860615pt;}
.ws3b{word-spacing:-9.548800pt;}
.ws6{word-spacing:-7.639067pt;}
.ws3c{word-spacing:-4.122452pt;}
.ws29{word-spacing:-4.115867pt;}
.ws2a{word-spacing:-4.109281pt;}
.ws79{word-spacing:-3.970988pt;}
.ws45{word-spacing:-3.891964pt;}
.ws42{word-spacing:-3.826110pt;}
.ws23{word-spacing:-3.704300pt;}
.ws24{word-spacing:-3.650958pt;}
.ws28{word-spacing:-3.633177pt;}
.ws36{word-spacing:-3.542938pt;}
.ws70{word-spacing:-3.490255pt;}
.ws14{word-spacing:-3.384248pt;}
.wsf{word-spacing:-3.236076pt;}
.wsa4{word-spacing:-3.226839pt;}
.ws52{word-spacing:-3.220254pt;}
.ws85{word-spacing:-3.213669pt;}
.ws10{word-spacing:-3.123466pt;}
.ws6b{word-spacing:-3.081961pt;}
.wsa8{word-spacing:-3.009522pt;}
.ws39{word-spacing:-2.923912pt;}
.wsa7{word-spacing:-2.594642pt;}
.ws32{word-spacing:-2.555130pt;}
.ws2f{word-spacing:-2.364154pt;}
.ws15{word-spacing:-2.323337pt;}
.ws9a{word-spacing:-2.258788pt;}
.ws27{word-spacing:-2.216653pt;}
.ws48{word-spacing:-2.179763pt;}
.ws73{word-spacing:-2.149475pt;}
.ws34{word-spacing:-1.995372pt;}
.wsbc{word-spacing:-1.988787pt;}
.ws25{word-spacing:-1.985505pt;}
.ws89{word-spacing:-1.922933pt;}
.ws38{word-spacing:-1.837323pt;}
.ws26{word-spacing:-1.819552pt;}
.wsc{word-spacing:-1.801772pt;}
.ws82{word-spacing:-1.731957pt;}
.wsc4{word-spacing:-1.587078pt;}
.ws2e{word-spacing:-1.567322pt;}
.ws4b{word-spacing:-1.560737pt;}
.ws72{word-spacing:-1.554154pt;}
.ws2b{word-spacing:-1.494883pt;}
.ws5d{word-spacing:-1.455370pt;}
.ws8a{word-spacing:-1.442200pt;}
.ws4f{word-spacing:-1.284150pt;}
.ws21{word-spacing:-1.274279pt;}
.ws7d{word-spacing:-1.191955pt;}
.ws46{word-spacing:-1.145857pt;}
.ws30{word-spacing:-1.139272pt;}
.ws22{word-spacing:-1.084619pt;}
.wsb9{word-spacing:-1.049058pt;}
.ws4a{word-spacing:-1.014150pt;}
.ws33{word-spacing:-0.941710pt;}
.ws2c{word-spacing:-0.935125pt;}
.ws95{word-spacing:-0.875856pt;}
.wsbb{word-spacing:-0.744149pt;}
.ws6c{word-spacing:-0.691466pt;}
.wsd{word-spacing:-0.663811pt;}
.ws17{word-spacing:-0.628249pt;}
.ws51{word-spacing:-0.605856pt;}
.ws5e{word-spacing:-0.572929pt;}
.ws16{word-spacing:-0.474150pt;}
.ws80{word-spacing:-0.462297pt;}
.wsb{word-spacing:-0.438589pt;}
.ws35{word-spacing:-0.362196pt;}
.ws3e{word-spacing:-0.342440pt;}
.wsa2{word-spacing:-0.309513pt;}
.wsaa{word-spacing:-0.213368pt;}
.wsd2{word-spacing:-0.144879pt;}
.ws8e{word-spacing:-0.125122pt;}
.wsab{word-spacing:-0.035561pt;}
.ws7{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.032927pt;}
.ws31{word-spacing:0.065854pt;}
.ws7f{word-spacing:0.082976pt;}
.ws44{word-spacing:0.118537pt;}
.wse{word-spacing:0.130391pt;}
.ws43{word-spacing:0.131708pt;}
.wsb6{word-spacing:0.136318pt;}
.wsca{word-spacing:0.237074pt;}
.wscb{word-spacing:0.263415pt;}
.ws4c{word-spacing:0.296342pt;}
.wsa6{word-spacing:0.342440pt;}
.wsa0{word-spacing:0.362196pt;}
.wsa5{word-spacing:0.375367pt;}
.wsb0{word-spacing:0.385247pt;}
.ws37{word-spacing:0.408294pt;}
.wsb1{word-spacing:0.408955pt;}
.wscc{word-spacing:0.434636pt;}
.ws61{word-spacing:0.480733pt;}
.ws8d{word-spacing:0.540002pt;}
.wsa9{word-spacing:0.546587pt;}
.wsb2{word-spacing:0.616396pt;}
.ws76{word-spacing:0.625612pt;}
.ws78{word-spacing:0.645368pt;}
.ws11{word-spacing:0.651957pt;}
.ws77{word-spacing:0.671709pt;}
.wsa{word-spacing:0.693445pt;}
.wsd1{word-spacing:0.698051pt;}
.ws41{word-spacing:0.724393pt;}
.ws3d{word-spacing:0.730978pt;}
.wsc1{word-spacing:0.803417pt;}
.wsac{word-spacing:0.827126pt;}
.ws7c{word-spacing:0.935125pt;}
.ws9d{word-spacing:0.961466pt;}
.ws65{word-spacing:0.974637pt;}
.ws64{word-spacing:1.014150pt;}
.wsd3{word-spacing:1.060247pt;}
.ws50{word-spacing:1.073418pt;}
.ws8f{word-spacing:1.106345pt;}
.ws59{word-spacing:1.112930pt;}
.ws94{word-spacing:1.165613pt;}
.ws69{word-spacing:1.191955pt;}
.ws2d{word-spacing:1.211711pt;}
.wsc2{word-spacing:1.256499pt;}
.ws91{word-spacing:1.284150pt;}
.wsb7{word-spacing:1.357256pt;}
.ws5f{word-spacing:1.488297pt;}
.ws88{word-spacing:1.501468pt;}
.ws74{word-spacing:1.521224pt;}
.ws8{word-spacing:1.535062pt;}
.ws9c{word-spacing:1.554151pt;}
.ws62{word-spacing:1.646347pt;}
.ws63{word-spacing:1.652932pt;}
.wsaf{word-spacing:1.736576pt;}
.ws98{word-spacing:1.748430pt;}
.ws13{word-spacing:1.861040pt;}
.ws7b{word-spacing:1.922933pt;}
.ws54{word-spacing:1.938742pt;}
.ws9b{word-spacing:1.942689pt;}
.ws19{word-spacing:1.965083pt;}
.ws5c{word-spacing:1.995372pt;}
.ws53{word-spacing:2.001958pt;}
.wsc3{word-spacing:2.127750pt;}
.wsb8{word-spacing:2.175165pt;}
.ws56{word-spacing:2.186348pt;}
.ws87{word-spacing:2.212690pt;}
.wsc7{word-spacing:2.281849pt;}
.wsb3{word-spacing:2.331227pt;}
.ws75{word-spacing:2.357568pt;}
.wsbe{word-spacing:2.390495pt;}
.ws1a{word-spacing:2.470842pt;}
.ws6a{word-spacing:2.489276pt;}
.ws57{word-spacing:2.502447pt;}
.ws58{word-spacing:2.509032pt;}
.wsbf{word-spacing:2.541959pt;}
.ws71{word-spacing:2.574886pt;}
.ws93{word-spacing:2.607813pt;}
.ws4e{word-spacing:2.614399pt;}
.ws7a{word-spacing:2.640740pt;}
.ws6e{word-spacing:2.693423pt;}
.ws96{word-spacing:3.009522pt;}
.wsa3{word-spacing:3.035863pt;}
.wsc5{word-spacing:3.049034pt;}
.wsc6{word-spacing:3.064197pt;}
.ws18{word-spacing:3.076051pt;}
.wscd{word-spacing:3.358547pt;}
.ws99{word-spacing:3.390175pt;}
.ws83{word-spacing:3.391474pt;}
.ws84{word-spacing:3.503426pt;}
.ws9e{word-spacing:3.694402pt;}
.ws3f{word-spacing:3.911720pt;}
.ws3a{word-spacing:3.924898pt;}
.ws66{word-spacing:3.931476pt;}
.wsc8{word-spacing:3.953229pt;}
.ws6d{word-spacing:4.010500pt;}
.ws49{word-spacing:4.069769pt;}
.ws97{word-spacing:4.089525pt;}
.ws12{word-spacing:4.107328pt;}
.ws7e{word-spacing:4.267354pt;}
.ws47{word-spacing:4.372697pt;}
.ws92{word-spacing:4.385868pt;}
.ws9f{word-spacing:4.412209pt;}
.ws68{word-spacing:4.458307pt;}
.ws9{word-spacing:4.593332pt;}
.ws6f{word-spacing:4.754649pt;}
.ws40{word-spacing:4.866601pt;}
.wsb4{word-spacing:5.288065pt;}
.wsae{word-spacing:5.529779pt;}
.ws5b{word-spacing:5.538310pt;}
.ws90{word-spacing:5.663433pt;}
.ws60{word-spacing:5.880750pt;}
.wsb5{word-spacing:6.057271pt;}
.ws4d{word-spacing:6.111239pt;}
.wsbd{word-spacing:6.480020pt;}
.wsa1{word-spacing:6.756607pt;}
.wsce{word-spacing:6.855388pt;}
.wsba{word-spacing:6.967339pt;}
.wsad{word-spacing:7.213013pt;}
.wsd0{word-spacing:7.217584pt;}
.ws86{word-spacing:7.237340pt;}
.ws20{word-spacing:7.408600pt;}
.ws8b{word-spacing:7.507341pt;}
.ws8c{word-spacing:7.513926pt;}
.wscf{word-spacing:7.955147pt;}
.ws67{word-spacing:8.231733pt;}
.ws81{word-spacing:8.758564pt;}
.wsc0{word-spacing:9.410518pt;}
.ws1b{word-spacing:1415.718792pt;}
._6{margin-left:-33.676381pt;}
._11{margin-left:-17.958349pt;}
._e{margin-left:-16.990298pt;}
._9{margin-left:-16.055918pt;}
._8{margin-left:-14.833013pt;}
._15{margin-left:-7.698317pt;}
._4{margin-left:-6.804035pt;}
._b{margin-left:-5.399388pt;}
._1{margin-left:-4.326599pt;}
._d{margin-left:-3.430986pt;}
._3{margin-left:-2.480080pt;}
._0{margin-left:-1.560737pt;}
._2{width:0.908783pt;}
._5{width:2.551198pt;}
._c{width:4.509016pt;}
._13{width:5.577823pt;}
._a{width:11.836380pt;}
._f{width:29.002102pt;}
._12{width:30.988258pt;}
._10{width:32.927000pt;}
._14{width:34.481154pt;}
._7{width:896.797696pt;}
.fs9{font-size:30.556267pt;}
.fsb{font-size:38.195200pt;}
.fs8{font-size:44.780267pt;}
.fs2{font-size:46.098133pt;}
.fs6{font-size:50.377600pt;}
.fs7{font-size:52.683200pt;}
.fsa{font-size:55.975467pt;}
.fs0{font-size:59.268800pt;}
.fs1{font-size:65.853867pt;}
.fsc{font-size:72.439467pt;}
.fs5{font-size:79.025067pt;}
.fs4{font-size:92.195733pt;}
.fs3{font-size:118.537067pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:74.651733pt;}
.y24{bottom:106.578345pt;}
.y4d{bottom:106.583684pt;}
.yd8{bottom:106.970462pt;}
.ybd{bottom:107.233104pt;}
.yfe{bottom:107.447280pt;}
.y96{bottom:107.655652pt;}
.y72{bottom:108.503652pt;}
.y4c{bottom:123.542406pt;}
.yd7{bottom:123.927867pt;}
.y95{bottom:124.613057pt;}
.yfd{bottom:125.229402pt;}
.y71{bottom:125.461057pt;}
.y23{bottom:127.882533pt;}
.ybc{bottom:127.977072pt;}
.y22{bottom:140.494462pt;}
.y4b{bottom:140.501128pt;}
.y94{bottom:141.570462pt;}
.y70{bottom:142.418462pt;}
.yfc{bottom:143.008560pt;}
.ybb{bottom:148.227136pt;}
.y21{bottom:157.451867pt;}
.y4a{bottom:157.458533pt;}
.y93{bottom:158.527867pt;}
.y6f{bottom:159.375867pt;}
.yfb{bottom:160.789200pt;}
.yba{bottom:168.478907pt;}
.yd6{bottom:178.683227pt;}
.yfa{bottom:188.448064pt;}
.yb9{bottom:188.728971pt;}
.yd5{bottom:196.463867pt;}
.y20{bottom:205.832554pt;}
.yb8{bottom:208.979035pt;}
.yf9{bottom:209.192032pt;}
.y49{bottom:210.424293pt;}
.y6e{bottom:210.953595pt;}
.y92{bottom:210.954773pt;}
.y1f{bottom:223.942136pt;}
.yd4{bottom:227.415877pt;}
.yb7{bottom:229.229099pt;}
.yf8{bottom:229.936000pt;}
.y48{bottom:231.168261pt;}
.y6d{bottom:231.697563pt;}
.y91{bottom:231.698741pt;}
.y1e{bottom:242.051718pt;}
.yd3{bottom:248.159845pt;}
.yb6{bottom:249.479163pt;}
.y47{bottom:251.912229pt;}
.y6c{bottom:252.441531pt;}
.y90{bottom:252.442709pt;}
.yf7{bottom:268.789520pt;}
.yd2{bottom:268.903813pt;}
.y1d{bottom:269.494654pt;}
.yb5{bottom:269.729227pt;}
.y46{bottom:272.656197pt;}
.y6b{bottom:273.185499pt;}
.y8f{bottom:273.186677pt;}
.yf6{bottom:286.570160pt;}
.yd1{bottom:289.647781pt;}
.yb4{bottom:289.979291pt;}
.y45{bottom:293.400165pt;}
.y6a{bottom:293.929467pt;}
.y8e{bottom:293.930645pt;}
.yf5{bottom:304.350800pt;}
.yb3{bottom:310.229355pt;}
.yd0{bottom:310.391749pt;}
.y44{bottom:314.144133pt;}
.y69{bottom:314.673632pt;}
.y8d{bottom:314.674613pt;}
.yb2{bottom:330.479419pt;}
.ycf{bottom:331.135717pt;}
.y43{bottom:334.888299pt;}
.yf4{bottom:335.295518pt;}
.y68{bottom:335.417632pt;}
.y8c{bottom:335.418581pt;}
.y1c{bottom:344.568961pt;}
.yb1{bottom:350.729483pt;}
.yce{bottom:351.879685pt;}
.y42{bottom:355.631986pt;}
.yf3{bottom:356.039486pt;}
.y67{bottom:356.161600pt;}
.y8b{bottom:356.162549pt;}
.y1b{bottom:369.679670pt;}
.yb0{bottom:370.979547pt;}
.ycd{bottom:372.623653pt;}
.y41{bottom:376.377945pt;}
.yf2{bottom:376.783454pt;}
.y8a{bottom:376.906517pt;}
.y1a{bottom:387.789252pt;}
.yaf{bottom:391.229611pt;}
.ycc{bottom:393.367621pt;}
.y40{bottom:397.118702pt;}
.yf1{bottom:397.527422pt;}
.y89{bottom:397.650485pt;}
.y66{bottom:397.650747pt;}
.y19{bottom:405.898834pt;}
.yae{bottom:411.479675pt;}
.ycb{bottom:414.111589pt;}
.y3f{bottom:417.864316pt;}
.yf0{bottom:418.271390pt;}
.y88{bottom:418.394453pt;}
.y65{bottom:418.394715pt;}
.y18{bottom:424.008415pt;}
.yad{bottom:431.729739pt;}
.yca{bottom:434.855557pt;}
.y3e{bottom:438.609931pt;}
.yef{bottom:439.015358pt;}
.y87{bottom:439.138421pt;}
.y17{bottom:442.117997pt;}
.yac{bottom:451.979803pt;}
.yc9{bottom:455.599525pt;}
.y116{bottom:458.970171pt;}
.y3d{bottom:459.353899pt;}
.yee{bottom:459.759326pt;}
.y86{bottom:459.882389pt;}
.y16{bottom:460.227579pt;}
.yab{bottom:472.229867pt;}
.yc8{bottom:476.343493pt;}
.y15{bottom:478.337161pt;}
.y115{bottom:479.714139pt;}
.y3c{bottom:480.098357pt;}
.yed{bottom:480.504940pt;}
.y85{bottom:480.626357pt;}
.y64{bottom:480.626619pt;}
.y14{bottom:496.446743pt;}
.yc7{bottom:497.087461pt;}
.y114{bottom:500.458107pt;}
.y3b{bottom:500.842325pt;}
.yec{bottom:501.250554pt;}
.y84{bottom:501.370325pt;}
.y63{bottom:501.370587pt;}
.yaa{bottom:508.942747pt;}
.y13{bottom:514.556325pt;}
.yc6{bottom:517.831429pt;}
.y113{bottom:521.202075pt;}
.y3a{bottom:521.586293pt;}
.yeb{bottom:521.996169pt;}
.y83{bottom:522.114293pt;}
.y62{bottom:522.114555pt;}
.ya9{bottom:526.723387pt;}
.y12{bottom:532.665906pt;}
.yc5{bottom:538.575397pt;}
.y112{bottom:541.946043pt;}
.y39{bottom:542.330261pt;}
.yea{bottom:542.741783pt;}
.y82{bottom:542.858261pt;}
.y61{bottom:542.858523pt;}
.ya8{bottom:544.504027pt;}
.y11{bottom:550.775488pt;}
.yc4{bottom:559.319365pt;}
.ya7{bottom:562.284667pt;}
.y111{bottom:562.690011pt;}
.y38{bottom:563.074229pt;}
.ye9{bottom:563.487397pt;}
.y81{bottom:563.602229pt;}
.y60{bottom:563.602491pt;}
.y10{bottom:568.885070pt;}
.yc3{bottom:580.063333pt;}
.y110{bottom:583.433979pt;}
.y37{bottom:583.818197pt;}
.y80{bottom:584.346197pt;}
.y5f{bottom:584.346459pt;}
.yf{bottom:586.994652pt;}
.ya6{bottom:593.237648pt;}
.y10f{bottom:604.177947pt;}
.y36{bottom:604.562165pt;}
.ye8{bottom:604.975333pt;}
.y7f{bottom:605.090165pt;}
.y5e{bottom:605.090427pt;}
.ye{bottom:605.104234pt;}
.ya5{bottom:613.487712pt;}
.yc2{bottom:621.551520pt;}
.y10e{bottom:624.921915pt;}
.y35{bottom:625.306197pt;}
.y7e{bottom:625.834165pt;}
.y5d{bottom:625.834395pt;}
.yd{bottom:632.550133pt;}
.ya4{bottom:633.737776pt;}
.yc1{bottom:639.332160pt;}
.y10d{bottom:645.665883pt;}
.y34{bottom:646.050165pt;}
.y5c{bottom:646.578363pt;}
.ya3{bottom:653.987840pt;}
.yc0{bottom:657.112800pt;}
.y10c{bottom:666.409851pt;}
.y33{bottom:666.794299pt;}
.ye7{bottom:667.207200pt;}
.y5b{bottom:667.322331pt;}
.ya2{bottom:674.237904pt;}
.ye6{bottom:684.987840pt;}
.y10b{bottom:687.153819pt;}
.y32{bottom:687.538267pt;}
.y5a{bottom:688.066299pt;}
.ybf{bottom:688.067216pt;}
.ya1{bottom:694.487968pt;}
.ye5{bottom:702.768480pt;}
.y10a{bottom:707.897787pt;}
.y59{bottom:708.810923pt;}
.y7d{bottom:708.811184pt;}
.ya0{bottom:714.738032pt;}
.ye4{bottom:720.549120pt;}
.y109{bottom:728.641755pt;}
.y58{bottom:729.554891pt;}
.y7c{bottom:729.555152pt;}
.ya{bottom:736.333067pt;}
.ye3{bottom:738.329760pt;}
.y108{bottom:749.385723pt;}
.y57{bottom:750.298859pt;}
.y7b{bottom:750.299120pt;}
.y31{bottom:752.734939pt;}
.y9f{bottom:755.238160pt;}
.ye2{bottom:756.110400pt;}
.y9{bottom:764.049013pt;}
.y107{bottom:770.129691pt;}
.y56{bottom:771.042827pt;}
.y7a{bottom:771.043088pt;}
.y30{bottom:777.845648pt;}
.ye1{bottom:787.061264pt;}
.y106{bottom:790.873659pt;}
.y8{bottom:791.707733pt;}
.y55{bottom:791.786795pt;}
.y79{bottom:791.787056pt;}
.y2f{bottom:795.955230pt;}
.ye0{bottom:807.805232pt;}
.y105{bottom:811.617627pt;}
.y54{bottom:812.530763pt;}
.y78{bottom:812.531024pt;}
.y2e{bottom:814.064812pt;}
.y9e{bottom:815.988352pt;}
.ydf{bottom:828.549200pt;}
.y2d{bottom:832.174394pt;}
.y104{bottom:832.361595pt;}
.y53{bottom:833.274731pt;}
.y77{bottom:833.274992pt;}
.y9d{bottom:836.238416pt;}
.y7{bottom:841.427440pt;}
.y2c{bottom:850.283976pt;}
.y103{bottom:853.105563pt;}
.y52{bottom:854.018699pt;}
.y76{bottom:854.018960pt;}
.y9c{bottom:856.488480pt;}
.y2b{bottom:868.393557pt;}
.yde{bottom:870.038267pt;}
.y102{bottom:873.849531pt;}
.y51{bottom:874.762667pt;}
.y75{bottom:874.762928pt;}
.y9b{bottom:876.738544pt;}
.y6{bottom:876.988560pt;}
.y2a{bottom:886.503139pt;}
.ydd{bottom:887.818907pt;}
.y101{bottom:894.593499pt;}
.y74{bottom:895.506896pt;}
.y9a{bottom:896.988608pt;}
.y29{bottom:904.612721pt;}
.ydc{bottom:905.599547pt;}
.y5{bottom:912.549680pt;}
.y100{bottom:915.337467pt;}
.y50{bottom:916.250864pt;}
.y99{bottom:917.238672pt;}
.y28{bottom:922.722303pt;}
.ydb{bottom:923.380187pt;}
.y4f{bottom:936.994832pt;}
.y98{bottom:937.488736pt;}
.y27{bottom:940.831885pt;}
.yda{bottom:941.160827pt;}
.y4{bottom:948.110800pt;}
.yff{bottom:956.825467pt;}
.y4e{bottom:957.738800pt;}
.y26{bottom:958.941467pt;}
.yc{bottom:1025.083867pt;}
.yd9{bottom:1025.779600pt;}
.y2{bottom:1025.780000pt;}
.ybe{bottom:1026.225600pt;}
.y25{bottom:1026.225867pt;}
.y73{bottom:1026.226133pt;}
.y1{bottom:1026.719733pt;}
.y97{bottom:1026.720000pt;}
.yb{bottom:1038.913200pt;}
.hb{height:26.924705pt;}
.h3{height:38.768530pt;}
.h9{height:38.999021pt;}
.ha{height:44.306571pt;}
.h8{height:49.845061pt;}
.h1{height:50.141405pt;}
.hf{height:53.598569pt;}
.h10{height:53.599102pt;}
.hc{height:53.599635pt;}
.h2{height:55.383102pt;}
.he{height:55.384226pt;}
.hd{height:55.389361pt;}
.h11{height:60.921591pt;}
.h7{height:66.460081pt;}
.h6{height:77.536612pt;}
.h5{height:84.754003pt;}
.h4{height:101.230655pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:98.003467pt;}
.xc{left:107.337200pt;}
.xb{left:111.173529pt;}
.x6{left:128.303200pt;}
.xe{left:135.336267pt;}
.x7{left:138.867816pt;}
.xd{left:144.672267pt;}
.x5{left:154.511746pt;}
.xf{left:168.005600pt;}
.x10{left:177.340400pt;}
.x4{left:179.523067pt;}
.x8{left:306.317867pt;}
.xa{left:307.920533pt;}
.x9{left:336.465871pt;}
.x3{left:374.042133pt;}
.x1{left:663.353333pt;}
}

