
    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_e1fce485a25cefbc1fb557d5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0c65e290ac118f370beef295.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ca42ae13738d663065aafe81.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dbc9f8502aaffd67a74a1bc9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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_e689eb8b1261426413a18a53.woff')format("woff");}.ff5{font-family:ff5;line-height:1.330566;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_99dabe31c6dff4ac521d58da.woff')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-4.320000px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:4.320000px;}
.v1{vertical-align:17.280420px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:26.708626px;}
.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;}
}
.ws2f{word-spacing:0.000000px;}
.wsd5{word-spacing:0.536032px;}
.ws7d{word-spacing:0.698032px;}
.ws5d{word-spacing:3.822667px;}
.ws43{word-spacing:3.851868px;}
.wsbd{word-spacing:5.896068px;}
.wsce{word-spacing:5.954470px;}
.ws9a{word-spacing:5.997702px;}
.ws14{word-spacing:6.577128px;}
.ws78{word-spacing:6.577170px;}
.ws24{word-spacing:6.985178px;}
.ws18{word-spacing:7.080250px;}
.wsa4{word-spacing:7.080304px;}
.wsb2{word-spacing:7.844837px;}
.ws9b{word-spacing:8.144404px;}
.ws71{word-spacing:8.172738px;}
.wscc{word-spacing:8.389171px;}
.ws7c{word-spacing:8.505637px;}
.ws97{word-spacing:8.637704px;}
.ws60{word-spacing:8.638571px;}
.ws1c{word-spacing:8.647416px;}
.ws44{word-spacing:8.675871px;}
.ws17{word-spacing:8.675884px;}
.ws19{word-spacing:8.762575px;}
.ws83{word-spacing:8.933438px;}
.wsdd{word-spacing:9.145605px;}
.ws13{word-spacing:9.188739px;}
.ws41{word-spacing:9.188838px;}
.ws33{word-spacing:9.768306px;}
.ws1{word-spacing:10.233250px;}
.ws95{word-spacing:10.233272px;}
.wsd6{word-spacing:10.234139px;}
.ws46{word-spacing:10.271439px;}
.ws2b{word-spacing:10.271452px;}
.wsbc{word-spacing:10.515638px;}
.ws31{word-spacing:10.529006px;}
.ws0{word-spacing:10.784373px;}
.ws35{word-spacing:10.784406px;}
.ws69{word-spacing:10.812740px;}
.wsbb{word-spacing:11.334673px;}
.ws63{word-spacing:11.363874px;}
.ws68{word-spacing:11.828840px;}
.ws7b{word-spacing:11.838673px;}
.ws39{word-spacing:11.867007px;}
.wsc6{word-spacing:12.336741px;}
.ws6f{word-spacing:12.341807px;}
.ws3c{word-spacing:12.379974px;}
.wsc{word-spacing:12.380008px;}
.ws58{word-spacing:12.408308px;}
.ws48{word-spacing:12.892940px;}
.ws5e{word-spacing:12.959441px;}
.ws26{word-spacing:12.959532px;}
.wsc7{word-spacing:13.175875px;}
.ws2e{word-spacing:13.395984px;}
.wsa7{word-spacing:13.396074px;}
.ws5{word-spacing:13.434186px;}
.ws4c{word-spacing:13.434241px;}
.ws29{word-spacing:13.434252px;}
.ws32{word-spacing:13.462575px;}
.wsd{word-spacing:13.462654px;}
.wsc8{word-spacing:13.932309px;}
.wsf{word-spacing:13.937307px;}
.ws23{word-spacing:13.937374px;}
.ws34{word-spacing:13.975542px;}
.ws4{word-spacing:13.975575px;}
.ws88{word-spacing:14.450341px;}
.ws3a{word-spacing:14.488508px;}
.wsa1{word-spacing:14.526675px;}
.wse1{word-spacing:14.551041px;}
.ws49{word-spacing:14.555009px;}
.ws9{word-spacing:14.555167px;}
.ws94{word-spacing:14.953475px;}
.wsa0{word-spacing:14.991642px;}
.wsc9{word-spacing:15.020843px;}
.ws6b{word-spacing:15.029809px;}
.ws54{word-spacing:15.058143px;}
.ws21{word-spacing:15.058222px;}
.ws16{word-spacing:15.058288px;}
.ws64{word-spacing:15.532942px;}
.ws38{word-spacing:15.571109px;}
.ws22{word-spacing:15.571143px;}
.ws42{word-spacing:15.727042px;}
.ws5f{word-spacing:16.045909px;}
.wsa2{word-spacing:16.074243px;}
.ws3d{word-spacing:16.084076px;}
.ws15{word-spacing:16.084131px;}
.wsab{word-spacing:16.122243px;}
.ws9d{word-spacing:16.150577px;}
.ws1f{word-spacing:16.150735px;}
.ws1d{word-spacing:16.483462px;}
.ws77{word-spacing:16.549043px;}
.ws73{word-spacing:16.587210px;}
.ws57{word-spacing:16.625377px;}
.ws5a{word-spacing:16.653711px;}
.wsde{word-spacing:16.865810px;}
.wsba{word-spacing:16.897910px;}
.wsc5{word-spacing:16.903043px;}
.ws86{word-spacing:17.100176px;}
.ws91{word-spacing:17.128510px;}
.ws4a{word-spacing:17.166677px;}
.ws27{word-spacing:17.166778px;}
.ws80{word-spacing:17.603310px;}
.ws6a{word-spacing:17.641477px;}
.wsa8{word-spacing:17.669811px;}
.ws45{word-spacing:17.679644px;}
.ws9f{word-spacing:17.717811px;}
.wsc1{word-spacing:17.746145px;}
.wsb4{word-spacing:17.959545px;}
.wsb0{word-spacing:18.182777px;}
.wscb{word-spacing:18.211978px;}
.ws65{word-spacing:18.220945px;}
.ws36{word-spacing:18.249279px;}
.wsd4{word-spacing:18.660543px;}
.ws4d{word-spacing:18.667410px;}
.ws59{word-spacing:18.724078px;}
.ws50{word-spacing:18.762245px;}
.ws12{word-spacing:18.762345px;}
.ws2c{word-spacing:18.762412px;}
.wsb6{word-spacing:19.198878px;}
.ws7a{word-spacing:19.208711px;}
.ws3b{word-spacing:19.275212px;}
.ws6{word-spacing:19.275267px;}
.wse{word-spacing:19.275333px;}
.ws70{word-spacing:19.740178px;}
.wsdc{word-spacing:19.799312px;}
.ws61{word-spacing:19.816512px;}
.wsc4{word-spacing:20.056946px;}
.wsa5{word-spacing:20.281479px;}
.ws96{word-spacing:20.291312px;}
.ws5c{word-spacing:20.357813px;}
.ws6d{word-spacing:20.609380px;}
.ws72{word-spacing:20.794445px;}
.ws9e{word-spacing:20.804278px;}
.ws40{word-spacing:20.832613px;}
.ws76{word-spacing:20.860947px;}
.ws3e{word-spacing:20.870780px;}
.ws28{word-spacing:20.870835px;}
.ws10{word-spacing:20.870901px;}
.wsc3{word-spacing:21.145480px;}
.wsb5{word-spacing:21.335746px;}
.ws87{word-spacing:21.373913px;}
.ws3{word-spacing:21.383822px;}
.ws5b{word-spacing:21.412080px;}
.wscd{word-spacing:21.777214px;}
.ws98{word-spacing:21.915214px;}
.ws75{word-spacing:21.925047px;}
.ws4f{word-spacing:21.953381px;}
.wsd7{word-spacing:22.109313px;}
.ws4b{word-spacing:22.399846px;}
.ws66{word-spacing:22.428180px;}
.ws8d{word-spacing:22.466348px;}
.ws8{word-spacing:22.466469px;}
.wsa{word-spacing:22.466535px;}
.ws7{word-spacing:22.893187px;}
.ws56{word-spacing:22.931314px;}
.ws37{word-spacing:22.969481px;}
.wsd0{word-spacing:22.998682px;}
.wsd3{word-spacing:23.248082px;}
.wsb8{word-spacing:23.425779px;}
.wsa3{word-spacing:23.444281px;}
.wsc0{word-spacing:23.548949px;}
.wsac{word-spacing:23.919080px;}
.wsbe{word-spacing:24.023748px;}
.ws3f{word-spacing:24.061915px;}
.ws2d{word-spacing:24.062103px;}
.ws6e{word-spacing:24.526882px;}
.wsb7{word-spacing:24.536715px;}
.ws52{word-spacing:24.565049px;}
.ws90{word-spacing:25.049681px;}
.ws92{word-spacing:25.078015px;}
.ws62{word-spacing:25.116183px;}
.ws8c{word-spacing:25.196580px;}
.ws1b{word-spacing:25.269521px;}
.ws8a{word-spacing:25.590982px;}
.wsc2{word-spacing:25.657483px;}
.ws47{word-spacing:26.673583px;}
.ws25{word-spacing:26.673714px;}
.ws2{word-spacing:26.673781px;}
.ws67{word-spacing:26.740085px;}
.wsdf{word-spacing:27.012482px;}
.ws7e{word-spacing:27.253051px;}
.ws55{word-spacing:27.671182px;}
.ws2a{word-spacing:28.240880px;}
.wsd8{word-spacing:28.661752px;}
.ws93{word-spacing:28.782118px;}
.ws84{word-spacing:28.810452px;}
.wsbf{word-spacing:29.361586px;}
.wsaf{word-spacing:29.731717px;}
.ws99{word-spacing:30.244683px;}
.wsb9{word-spacing:30.339519px;}
.ws8f{word-spacing:30.444187px;}
.ws79{word-spacing:30.747817px;}
.wsb1{word-spacing:31.441786px;}
.ws6c{word-spacing:31.963421px;}
.wscf{word-spacing:32.991656px;}
.ws8e{word-spacing:33.407485px;}
.ws1a{word-spacing:33.754226px;}
.wsaa{word-spacing:34.176623px;}
.wsda{word-spacing:34.587224px;}
.wsd2{word-spacing:35.622056px;}
.ws74{word-spacing:35.649022px;}
.wse0{word-spacing:36.116087px;}
.ws4e{word-spacing:36.318720px;}
.ws51{word-spacing:36.693456px;}
.wsad{word-spacing:37.168255px;}
.ws1e{word-spacing:40.677758px;}
.ws7f{word-spacing:41.308990px;}
.ws89{word-spacing:41.375491px;}
.wsca{word-spacing:41.730223px;}
.ws9c{word-spacing:42.196693px;}
.wsae{word-spacing:42.382923px;}
.ws85{word-spacing:42.506093px;}
.wsb{word-spacing:42.709844px;}
.wsdb{word-spacing:44.173159px;}
.wsa9{word-spacing:48.089727px;}
.wsa6{word-spacing:48.902260px;}
.ws81{word-spacing:52.743970px;}
.wsd9{word-spacing:54.951565px;}
.ws20{word-spacing:59.962824px;}
.wsd1{word-spacing:60.370003px;}
.ws53{word-spacing:64.720873px;}
.ws11{word-spacing:71.448559px;}
.ws8b{word-spacing:72.849674px;}
.ws30{word-spacing:972.265861px;}
.wsb3{word-spacing:973.861429px;}
.ws82{word-spacing:975.456997px;}
._48{width:3.848230px;}
._47{width:15.105405px;}
._3c{width:16.694758px;}
._2f{width:19.759786px;}
._46{width:20.873865px;}
._2d{width:22.659488px;}
._6{width:24.342099px;}
._2a{width:25.358076px;}
._3{width:26.488857px;}
._10{width:28.056023px;}
._18{width:29.248030px;}
._27{width:30.501469px;}
._25{width:31.760080px;}
._1c{width:32.871261px;}
._f{width:34.400225px;}
._c{width:35.995793px;}
._23{width:37.301632px;}
._15{width:38.626139px;}
._2c{width:40.113187px;}
._16{width:41.257283px;}
._29{width:42.263593px;}
._1e{width:43.993365px;}
._1b{width:45.512529px;}
._b{width:46.518839px;}
._17{width:47.544615px;}
._0{width:48.560658px;}
._37{width:49.647727px;}
._4{width:50.659414px;}
._28{width:51.685190px;}
._12{width:52.815905px;}
._20{width:53.825863px;}
._26{width:55.488101px;}
._14{width:57.089886px;}
._13{width:58.319255px;}
._1a{width:59.458706px;}
._1{width:60.475746px;}
._33{width:61.895325px;}
._e{width:63.030486px;}
._11{width:64.065198px;}
._5{width:65.950628px;}
._30{width:67.166615px;}
._9{width:68.443918px;}
._d{width:69.692953px;}
._1f{width:71.696570px;}
._39{width:72.699298px;}
._21{width:74.033538px;}
._a{width:75.069048px;}
._7{width:76.616681px;}
._41{width:77.698816px;}
._34{width:78.820242px;}
._2{width:80.111061px;}
._3a{width:81.206925px;}
._2b{width:82.387443px;}
._2e{width:83.943171px;}
._3f{width:85.126066px;}
._40{width:86.425163px;}
._19{width:87.738918px;}
._3b{width:88.931524px;}
._24{width:90.092717px;}
._32{width:91.489115px;}
._3e{width:92.998693px;}
._1d{width:94.031537px;}
._31{width:95.882214px;}
._38{width:97.700974px;}
._45{width:98.816961px;}
._35{width:99.914335px;}
._4b{width:101.285533px;}
._22{width:102.459276px;}
._44{width:103.734103px;}
._4c{width:105.464579px;}
._42{width:107.038327px;}
._8{width:108.185752px;}
._36{width:113.928112px;}
._3d{width:115.440690px;}
._4a{width:116.571913px;}
._49{width:127.429897px;}
._4d{width:885.350493px;}
._43{width:887.454426px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs1{font-size:30.000900px;}
.fs7{font-size:42.000034px;}
.fs4{font-size:42.001260px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:48.000038px;}
.fs0{font-size:48.001440px;}
.fs8{font-size:54.000043px;}
.fs3{font-size:66.001980px;}
.fs2{font-size:90.002700px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.899964px;}
.y3a{bottom:15.899964px;}
.y10e{bottom:115.200000px;}
.y125{bottom:115.560000px;}
.y1d2{bottom:115.920000px;}
.yeb{bottom:116.280000px;}
.y1ac{bottom:116.640000px;}
.yc4{bottom:117.720000px;}
.y6a{bottom:119.160000px;}
.y92{bottom:120.240000px;}
.y181{bottom:124.560000px;}
.y157{bottom:125.280000px;}
.y38{bottom:125.642880px;}
.y1f{bottom:126.002880px;}
.y10d{bottom:131.040000px;}
.y124{bottom:131.400000px;}
.yea{bottom:132.480000px;}
.y1ab{bottom:132.840000px;}
.yc3{bottom:133.920000px;}
.y69{bottom:135.720000px;}
.y91{bottom:136.800000px;}
.y180{bottom:141.480000px;}
.y156{bottom:141.840000px;}
.y37{bottom:142.563270px;}
.y1e{bottom:142.923270px;}
.y1d1{bottom:145.800000px;}
.y123{bottom:147.600000px;}
.y10c{bottom:147.960000px;}
.ye9{bottom:149.400000px;}
.yc2{bottom:150.120000px;}
.y68{bottom:152.280000px;}
.y90{bottom:153.000000px;}
.y17f{bottom:157.680000px;}
.y36{bottom:158.043615px;}
.y155{bottom:158.400000px;}
.y1d{bottom:158.403630px;}
.y1d0{bottom:160.920000px;}
.y10b{bottom:163.440000px;}
.y122{bottom:164.520000px;}
.ye8{bottom:165.240000px;}
.y1aa{bottom:165.960000px;}
.yc1{bottom:167.040000px;}
.y67{bottom:168.480000px;}
.y8f{bottom:170.280000px;}
.y17e{bottom:173.880000px;}
.y35{bottom:174.243990px;}
.y154{bottom:174.600000px;}
.y1c{bottom:174.603990px;}
.y1cf{bottom:176.760000px;}
.y10a{bottom:180.360000px;}
.ye7{bottom:181.440000px;}
.y1a9{bottom:182.520000px;}
.yc0{bottom:182.880000px;}
.y66{bottom:185.400000px;}
.y8e{bottom:186.120000px;}
.y17d{bottom:190.440000px;}
.y1ce{bottom:190.800000px;}
.y1b{bottom:191.164380px;}
.y153{bottom:191.520000px;}
.y109{bottom:196.920000px;}
.y121{bottom:197.280000px;}
.ye6{bottom:198.360000px;}
.ybf{bottom:199.440000px;}
.y65{bottom:201.600000px;}
.y8d{bottom:202.680000px;}
.y1cd{bottom:206.280000px;}
.y17c{bottom:206.640000px;}
.y1a{bottom:207.724755px;}
.y152{bottom:208.080000px;}
.y108{bottom:213.120000px;}
.y120{bottom:213.840000px;}
.ye5{bottom:214.200000px;}
.ybe{bottom:216.000000px;}
.y64{bottom:218.160000px;}
.y8c{bottom:219.600000px;}
.y1cc{bottom:220.320000px;}
.y17b{bottom:223.200000px;}
.y34{bottom:223.565115px;}
.y151{bottom:223.920000px;}
.y19{bottom:223.925130px;}
.y107{bottom:230.040000px;}
.y11f{bottom:230.400000px;}
.ye4{bottom:230.760000px;}
.y1a8{bottom:231.840000px;}
.ybd{bottom:232.560000px;}
.y63{bottom:235.080000px;}
.y8b{bottom:235.800000px;}
.y17a{bottom:239.400000px;}
.y33{bottom:240.125490px;}
.y150{bottom:240.480000px;}
.y18{bottom:242.645550px;}
.y106{bottom:246.600000px;}
.y11e{bottom:246.960000px;}
.ye3{bottom:247.320000px;}
.ybc{bottom:248.400000px;}
.y1cb{bottom:250.560000px;}
.y62{bottom:251.640000px;}
.y8a{bottom:252.360000px;}
.y14f{bottom:256.320000px;}
.y32{bottom:256.325865px;}
.y17{bottom:257.045880px;}
.y105{bottom:263.160000px;}
.ye2{bottom:263.520000px;}
.ybb{bottom:264.960000px;}
.y1a7{bottom:265.320000px;}
.y1ca{bottom:265.680000px;}
.y61{bottom:267.840000px;}
.y89{bottom:268.560000px;}
.y179{bottom:272.520000px;}
.y31{bottom:272.886240px;}
.y14e{bottom:273.240000px;}
.y16{bottom:273.606255px;}
.y104{bottom:279.360000px;}
.ye1{bottom:280.440000px;}
.yba{bottom:281.520000px;}
.y60{bottom:284.760000px;}
.y88{bottom:285.120000px;}
.y178{bottom:289.080000px;}
.y15{bottom:289.806630px;}
.y14d{bottom:291.960000px;}
.y1c9{bottom:295.560000px;}
.y11d{bottom:296.640000px;}
.y103{bottom:297.000000px;}
.yb9{bottom:297.720000px;}
.y1a6{bottom:298.440000px;}
.y5f{bottom:300.960000px;}
.y87{bottom:301.680000px;}
.y14c{bottom:305.640000px;}
.y177{bottom:306.000000px;}
.y14{bottom:306.007005px;}
.y30{bottom:306.367005px;}
.y1c8{bottom:310.680000px;}
.y102{bottom:313.200000px;}
.ye0{bottom:313.560000px;}
.yb8{bottom:314.640000px;}
.y5e{bottom:317.520000px;}
.y86{bottom:318.960000px;}
.y176{bottom:321.840000px;}
.y14b{bottom:322.560000px;}
.y13{bottom:322.927395px;}
.y2f{bottom:323.287395px;}
.y1c7{bottom:325.800000px;}
.ydf{bottom:329.760000px;}
.y101{bottom:330.120000px;}
.yb7{bottom:330.480000px;}
.y1a5{bottom:332.280000px;}
.y5d{bottom:334.080000px;}
.y85{bottom:334.440000px;}
.y175{bottom:338.400000px;}
.y14a{bottom:338.760000px;}
.y12{bottom:339.127755px;}
.y2e{bottom:339.487770px;}
.y100{bottom:345.600000px;}
.y11c{bottom:345.960000px;}
.yb6{bottom:346.680000px;}
.y1a4{bottom:347.760000px;}
.y5c{bottom:350.280000px;}
.y84{bottom:351.720000px;}
.y174{bottom:354.600000px;}
.y149{bottom:354.960000px;}
.y11{bottom:354.968130px;}
.y2d{bottom:355.328130px;}
.y1c6{bottom:356.760000px;}
.yff{bottom:361.800000px;}
.yb5{bottom:362.880000px;}
.y1a3{bottom:363.960000px;}
.y5b{bottom:366.840000px;}
.y83{bottom:367.560000px;}
.y173{bottom:370.800000px;}
.y148{bottom:371.160000px;}
.y10{bottom:371.168490px;}
.y2c{bottom:371.528505px;}
.yfe{bottom:378.360000px;}
.y11b{bottom:378.720000px;}
.yde{bottom:379.080000px;}
.yb4{bottom:379.440000px;}
.y1a2{bottom:380.880000px;}
.y5a{bottom:383.760000px;}
.y82{bottom:384.120000px;}
.y172{bottom:387.360000px;}
.y147{bottom:387.720000px;}
.yf{bottom:387.728880px;}
.y2b{bottom:388.448895px;}
.yfd{bottom:394.920000px;}
.ydd{bottom:395.640000px;}
.yb3{bottom:396.000000px;}
.y1a1{bottom:397.440000px;}
.y59{bottom:399.960000px;}
.y81{bottom:400.320000px;}
.y171{bottom:403.920000px;}
.ye{bottom:403.929240px;}
.y146{bottom:404.280000px;}
.y2a{bottom:404.649255px;}
.y1c5{bottom:410.760000px;}
.y11a{bottom:411.480000px;}
.ydc{bottom:411.840000px;}
.yb2{bottom:412.560000px;}
.y1a0{bottom:413.640000px;}
.y58{bottom:416.160000px;}
.y80{bottom:416.520000px;}
.y145{bottom:420.480000px;}
.yd{bottom:420.489630px;}
.y29{bottom:421.209645px;}
.y1c4{bottom:427.320000px;}
.yfc{bottom:428.040000px;}
.ydb{bottom:428.400000px;}
.yb1{bottom:428.760000px;}
.y19f{bottom:430.200000px;}
.y119{bottom:430.560000px;}
.y57{bottom:432.720000px;}
.y7f{bottom:433.080000px;}
.y144{bottom:437.040000px;}
.yc{bottom:437.050005px;}
.y28{bottom:437.770020px;}
.y1c3{bottom:444.240000px;}
.yda{bottom:444.600000px;}
.y118{bottom:444.960000px;}
.yb0{bottom:445.320000px;}
.y19e{bottom:446.400000px;}
.y56{bottom:449.280000px;}
.y7e{bottom:450.360000px;}
.y170{bottom:453.240000px;}
.y143{bottom:453.600000px;}
.yb{bottom:453.970395px;}
.y1c2{bottom:460.080000px;}
.yd9{bottom:461.160000px;}
.yaf{bottom:462.240000px;}
.y19d{bottom:462.960000px;}
.y7d{bottom:466.200000px;}
.y16f{bottom:469.800000px;}
.y142{bottom:470.160000px;}
.ya{bottom:470.530770px;}
.y27{bottom:470.890785px;}
.y1c1{bottom:476.640000px;}
.yd8{bottom:477.360000px;}
.yae{bottom:477.720000px;}
.y19c{bottom:479.160000px;}
.y55{bottom:482.400000px;}
.y7c{bottom:482.760000px;}
.y141{bottom:486.000000px;}
.y9{bottom:486.371130px;}
.y26{bottom:487.091145px;}
.y1c0{bottom:492.840000px;}
.yd7{bottom:493.920000px;}
.yad{bottom:494.280000px;}
.y19b{bottom:495.720000px;}
.y7b{bottom:498.960000px;}
.y140{bottom:502.560000px;}
.y8{bottom:502.931505px;}
.y1bf{bottom:509.400000px;}
.yd6{bottom:510.480000px;}
.yac{bottom:510.840000px;}
.y117{bottom:511.200000px;}
.y19a{bottom:512.280000px;}
.y7a{bottom:515.160000px;}
.y16e{bottom:518.760000px;}
.y7{bottom:519.131880px;}
.y13f{bottom:519.480000px;}
.y25{bottom:519.851895px;}
.y1be{bottom:525.960000px;}
.yd5{bottom:527.040000px;}
.y116{bottom:527.760000px;}
.y199{bottom:528.840000px;}
.yab{bottom:529.560000px;}
.y79{bottom:532.440000px;}
.y54{bottom:532.800000px;}
.y13e{bottom:534.960000px;}
.y16d{bottom:535.320000px;}
.y6{bottom:536.052270px;}
.y1bd{bottom:542.520000px;}
.yaa{bottom:543.600000px;}
.y115{bottom:543.960000px;}
.y198{bottom:545.400000px;}
.yd4{bottom:546.480000px;}
.y53{bottom:548.280000px;}
.y13d{bottom:551.520000px;}
.y16c{bottom:551.880000px;}
.y5{bottom:552.612645px;}
.y1bc{bottom:559.080000px;}
.yfb{bottom:559.800000px;}
.ya9{bottom:560.160000px;}
.y197{bottom:562.320000px;}
.y52{bottom:564.480000px;}
.y78{bottom:565.200000px;}
.y13c{bottom:568.080000px;}
.y16b{bottom:568.800000px;}
.y4{bottom:569.173020px;}
.y1bb{bottom:576.000000px;}
.yd3{bottom:576.360000px;}
.ya8{bottom:576.720000px;}
.yfa{bottom:577.080000px;}
.y196{bottom:578.160000px;}
.y77{bottom:581.040000px;}
.y51{bottom:581.400000px;}
.y13b{bottom:584.280000px;}
.y16a{bottom:584.640000px;}
.y3{bottom:585.013395px;}
.y24{bottom:586.093410px;}
.y1ba{bottom:591.840000px;}
.yf9{bottom:592.560000px;}
.yd2{bottom:592.920000px;}
.ya7{bottom:593.280000px;}
.y195{bottom:595.440000px;}
.y50{bottom:597.600000px;}
.y13a{bottom:601.200000px;}
.y169{bottom:601.560000px;}
.y2{bottom:601.933770px;}
.y1b9{bottom:608.760000px;}
.yd1{bottom:609.120000px;}
.ya6{bottom:609.480000px;}
.y194{bottom:612.000000px;}
.y76{bottom:614.160000px;}
.y4f{bottom:614.520000px;}
.y168{bottom:617.400000px;}
.y1{bottom:617.414130px;}
.y139{bottom:618.120000px;}
.y23{bottom:618.854160px;}
.ya5{bottom:625.680000px;}
.y114{bottom:626.040000px;}
.y193{bottom:628.200000px;}
.y4e{bottom:630.720000px;}
.y138{bottom:634.320000px;}
.y113{bottom:641.880000px;}
.ya4{bottom:642.240000px;}
.yd0{bottom:642.600000px;}
.y192{bottom:644.400000px;}
.y4d{bottom:646.920000px;}
.y137{bottom:650.520000px;}
.y167{bottom:650.880000px;}
.y1b8{bottom:657.720000px;}
.ya3{bottom:658.440000px;}
.y112{bottom:658.800000px;}
.yf8{bottom:659.520000px;}
.y191{bottom:660.960000px;}
.y75{bottom:663.120000px;}
.y4c{bottom:663.480000px;}
.y136{bottom:666.720000px;}
.y166{bottom:669.600000px;}
.y1b7{bottom:674.280000px;}
.ycf{bottom:674.640000px;}
.ya2{bottom:675.360000px;}
.y190{bottom:677.160000px;}
.y4b{bottom:680.040000px;}
.y74{bottom:680.400000px;}
.y135{bottom:683.640000px;}
.y165{bottom:684.000000px;}
.y1b6{bottom:690.480000px;}
.ya1{bottom:691.200000px;}
.yce{bottom:691.560000px;}
.y18f{bottom:693.360000px;}
.yf7{bottom:694.440000px;}
.y73{bottom:696.600000px;}
.y4a{bottom:696.960000px;}
.y134{bottom:699.840000px;}
.y164{bottom:701.280000px;}
.y1b5{bottom:707.040000px;}
.ya0{bottom:707.760000px;}
.yf6{bottom:708.120000px;}
.y18e{bottom:709.920000px;}
.y49{bottom:713.520000px;}
.y133{bottom:715.680000px;}
.y163{bottom:716.400000px;}
.y1b4{bottom:723.240000px;}
.ycd{bottom:724.320000px;}
.y9f{bottom:724.680000px;}
.yf5{bottom:725.400000px;}
.y18d{bottom:726.840000px;}
.y48{bottom:729.720000px;}
.y132{bottom:732.240000px;}
.y162{bottom:733.320000px;}
.y1b3{bottom:739.800000px;}
.y9e{bottom:740.880000px;}
.yf4{bottom:741.600000px;}
.y18c{bottom:743.040000px;}
.y72{bottom:745.920000px;}
.y47{bottom:746.280000px;}
.y131{bottom:748.440000px;}
.y161{bottom:749.160000px;}
.y1b2{bottom:756.360000px;}
.y9d{bottom:757.080000px;}
.ycc{bottom:757.440000px;}
.yf3{bottom:757.800000px;}
.y18b{bottom:760.320000px;}
.y71{bottom:762.480000px;}
.y46{bottom:763.200000px;}
.y130{bottom:765.000000px;}
.y160{bottom:766.080000px;}
.y9c{bottom:774.000000px;}
.y111{bottom:774.360000px;}
.yf2{bottom:775.440000px;}
.ycb{bottom:776.520000px;}
.y70{bottom:778.680000px;}
.y45{bottom:779.400000px;}
.y12f{bottom:782.280000px;}
.y1b1{bottom:789.480000px;}
.yca{bottom:790.560000px;}
.y9b{bottom:790.920000px;}
.y18a{bottom:793.080000px;}
.y44{bottom:795.960000px;}
.y12e{bottom:797.760000px;}
.y15f{bottom:798.480000px;}
.y9a{bottom:806.760000px;}
.yc9{bottom:807.120000px;}
.yf1{bottom:807.840000px;}
.y189{bottom:809.280000px;}
.y6f{bottom:811.800000px;}
.y43{bottom:812.160000px;}
.y12d{bottom:814.320000px;}
.y15e{bottom:815.040000px;}
.y99{bottom:823.320000px;}
.yf0{bottom:823.680000px;}
.y188{bottom:825.840000px;}
.y6e{bottom:828.720000px;}
.y42{bottom:829.440000px;}
.y12c{bottom:830.520000px;}
.y15d{bottom:831.240000px;}
.y22{bottom:833.419080px;}
.y98{bottom:839.520000px;}
.yc8{bottom:839.880000px;}
.yef{bottom:840.240000px;}
.y1b0{bottom:841.680000px;}
.y187{bottom:842.400000px;}
.y41{bottom:845.280000px;}
.y12b{bottom:848.160000px;}
.y15c{bottom:848.880000px;}
.y1d7{bottom:852.120000px;}
.y1da{bottom:853.200000px;}
.y21{bottom:854.659560px;}
.y110{bottom:856.080000px;}
.yc7{bottom:856.440000px;}
.y97{bottom:856.800000px;}
.y1af{bottom:857.880000px;}
.y186{bottom:858.960000px;}
.y6d{bottom:861.480000px;}
.y40{bottom:861.840000px;}
.y12a{bottom:864.000000px;}
.y15b{bottom:865.080000px;}
.y1d9{bottom:867.240000px;}
.y1d6{bottom:867.600000px;}
.y10f{bottom:872.640000px;}
.y96{bottom:873.000000px;}
.y1ae{bottom:874.440000px;}
.y185{bottom:876.240000px;}
.y6c{bottom:878.040000px;}
.y3f{bottom:879.480000px;}
.y129{bottom:880.560000px;}
.y15a{bottom:880.920000px;}
.y1d5{bottom:882.360000px;}
.y95{bottom:889.200000px;}
.yc6{bottom:889.560000px;}
.yee{bottom:889.920000px;}
.y1ad{bottom:891.360000px;}
.y184{bottom:892.800000px;}
.y6b{bottom:894.600000px;}
.y3e{bottom:894.960000px;}
.y128{bottom:897.120000px;}
.y159{bottom:897.480000px;}
.y1d4{bottom:897.840000px;}
.y94{bottom:905.760000px;}
.yc5{bottom:906.120000px;}
.yed{bottom:906.840000px;}
.y183{bottom:908.280000px;}
.y20{bottom:908.300790px;}
.y3d{bottom:912.600000px;}
.y127{bottom:914.040000px;}
.y158{bottom:914.760000px;}
.y1d8{bottom:915.120000px;}
.y39{bottom:941.100036px;}
.y93{bottom:945.000000px;}
.yec{bottom:946.800000px;}
.y182{bottom:948.600000px;}
.y1d3{bottom:950.760000px;}
.y3c{bottom:951.840000px;}
.y126{bottom:952.920000px;}
.h6{height:27.971925px;}
.h13{height:41.200228px;}
.hd{height:41.220736px;}
.h5{height:41.221940px;}
.ha{height:42.328159px;}
.h12{height:44.100736px;}
.hf{height:45.540736px;}
.h2{height:47.087350px;}
.h9{height:47.109413px;}
.h1{height:47.110788px;}
.h7{height:48.281250px;}
.hc{height:49.989413px;}
.h11{height:52.998089px;}
.h4{height:64.777334px;}
.h3{height:90.705846px;}
.hb{height:1017.000000px;}
.h8{height:1020.000000px;}
.h0{height:1023.000000px;}
.h10{height:1027.500000px;}
.he{height:1035.000000px;}
.w1{width:536.867980px;}
.w3{width:901.500000px;}
.w2{width:906.000000px;}
.w0{width:907.500000px;}
.w6{width:912.000000px;}
.w5{width:915.000000px;}
.w4{width:921.000000px;}
.x0{left:0.000000px;}
.x2f{left:132.840000px;}
.x25{left:136.800000px;}
.x1a{left:137.880000px;}
.x1c{left:138.960000px;}
.x1{left:140.403210px;}
.x3{left:141.843240px;}
.x5{left:142.923270px;}
.x6{left:144.003300px;}
.x10{left:150.000000px;}
.x1b{left:151.200000px;}
.x1d{left:152.640000px;}
.x2{left:154.803540px;}
.x4{left:156.243570px;}
.x22{left:176.040000px;}
.x11{left:177.480000px;}
.x13{left:178.560000px;}
.x23{left:189.360000px;}
.x12{left:190.800000px;}
.x14{left:192.240000px;}
.x28{left:193.320000px;}
.x27{left:205.200000px;}
.x2e{left:344.160000px;}
.x19{left:349.560000px;}
.x7{left:401.769195px;}
.x31{left:435.600000px;}
.x1e{left:440.640000px;}
.x20{left:441.720000px;}
.x21{left:442.800000px;}
.xb{left:443.890155px;}
.xc{left:444.970185px;}
.xd{left:446.050215px;}
.xf{left:447.130230px;}
.x30{left:452.160000px;}
.x26{left:453.960000px;}
.x1f{left:455.040000px;}
.xa{left:457.570470px;}
.xe{left:459.370515px;}
.x15{left:478.800000px;}
.x17{left:479.880000px;}
.x18{left:480.960000px;}
.x24{left:491.400000px;}
.x16{left:492.480000px;}
.x29{left:493.920000px;}
.x2d{left:495.000000px;}
.x2b{left:496.080000px;}
.x2a{left:507.240000px;}
.x2c{left:511.560000px;}
.x9{left:564.132915px;}
.x8{left:577.093215px;}
@media print{
.v4{vertical-align:-3.840000pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:3.840000pt;}
.v1{vertical-align:15.360373pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:23.741000pt;}
.ws2f{word-spacing:0.000000pt;}
.wsd5{word-spacing:0.476473pt;}
.ws7d{word-spacing:0.620473pt;}
.ws5d{word-spacing:3.397926pt;}
.ws43{word-spacing:3.423882pt;}
.wsbd{word-spacing:5.240949pt;}
.wsce{word-spacing:5.292862pt;}
.ws9a{word-spacing:5.331291pt;}
.ws14{word-spacing:5.846336pt;}
.ws78{word-spacing:5.846373pt;}
.ws24{word-spacing:6.209047pt;}
.ws18{word-spacing:6.293555pt;}
.wsa4{word-spacing:6.293603pt;}
.wsb2{word-spacing:6.973188pt;}
.ws9b{word-spacing:7.239470pt;}
.ws71{word-spacing:7.264656pt;}
.wscc{word-spacing:7.457041pt;}
.ws7c{word-spacing:7.560566pt;}
.ws97{word-spacing:7.677959pt;}
.ws60{word-spacing:7.678730pt;}
.ws1c{word-spacing:7.686592pt;}
.ws44{word-spacing:7.711886pt;}
.ws17{word-spacing:7.711897pt;}
.ws19{word-spacing:7.788956pt;}
.ws83{word-spacing:7.940834pt;}
.wsdd{word-spacing:8.129427pt;}
.ws13{word-spacing:8.167768pt;}
.ws41{word-spacing:8.167856pt;}
.ws33{word-spacing:8.682938pt;}
.ws1{word-spacing:9.096222pt;}
.ws95{word-spacing:9.096242pt;}
.wsd6{word-spacing:9.097013pt;}
.ws46{word-spacing:9.130168pt;}
.ws2b{word-spacing:9.130179pt;}
.wsbc{word-spacing:9.347234pt;}
.ws31{word-spacing:9.359117pt;}
.ws0{word-spacing:9.586109pt;}
.ws35{word-spacing:9.586139pt;}
.ws69{word-spacing:9.611324pt;}
.wsbb{word-spacing:10.075265pt;}
.ws63{word-spacing:10.101221pt;}
.ws68{word-spacing:10.514525pt;}
.ws7b{word-spacing:10.523265pt;}
.ws39{word-spacing:10.548451pt;}
.wsc6{word-spacing:10.965992pt;}
.ws6f{word-spacing:10.970495pt;}
.ws3c{word-spacing:11.004421pt;}
.wsc{word-spacing:11.004451pt;}
.ws58{word-spacing:11.029607pt;}
.ws48{word-spacing:11.460391pt;}
.ws5e{word-spacing:11.519504pt;}
.ws26{word-spacing:11.519584pt;}
.wsc7{word-spacing:11.711889pt;}
.ws2e{word-spacing:11.907541pt;}
.wsa7{word-spacing:11.907621pt;}
.ws5{word-spacing:11.941498pt;}
.ws4c{word-spacing:11.941548pt;}
.ws29{word-spacing:11.941557pt;}
.ws32{word-spacing:11.966733pt;}
.wsd{word-spacing:11.966804pt;}
.wsc8{word-spacing:12.384275pt;}
.wsf{word-spacing:12.388718pt;}
.ws23{word-spacing:12.388777pt;}
.ws34{word-spacing:12.422704pt;}
.ws4{word-spacing:12.422734pt;}
.ws88{word-spacing:12.844748pt;}
.ws3a{word-spacing:12.878674pt;}
.wsa1{word-spacing:12.912600pt;}
.wse1{word-spacing:12.934259pt;}
.ws49{word-spacing:12.937786pt;}
.ws9{word-spacing:12.937926pt;}
.ws94{word-spacing:13.291977pt;}
.wsa0{word-spacing:13.325904pt;}
.wsc9{word-spacing:13.351860pt;}
.ws6b{word-spacing:13.359830pt;}
.ws54{word-spacing:13.385016pt;}
.ws21{word-spacing:13.385086pt;}
.ws16{word-spacing:13.385145pt;}
.ws64{word-spacing:13.807060pt;}
.ws38{word-spacing:13.840986pt;}
.ws22{word-spacing:13.841016pt;}
.ws42{word-spacing:13.979593pt;}
.ws5f{word-spacing:14.263030pt;}
.wsa2{word-spacing:14.288216pt;}
.ws3d{word-spacing:14.296956pt;}
.ws15{word-spacing:14.297005pt;}
.wsab{word-spacing:14.330883pt;}
.ws9d{word-spacing:14.356069pt;}
.ws1f{word-spacing:14.356209pt;}
.ws1d{word-spacing:14.651967pt;}
.ws77{word-spacing:14.710260pt;}
.ws73{word-spacing:14.744186pt;}
.ws57{word-spacing:14.778113pt;}
.ws5a{word-spacing:14.803298pt;}
.wsde{word-spacing:14.991831pt;}
.wsba{word-spacing:15.020364pt;}
.wsc5{word-spacing:15.024927pt;}
.ws86{word-spacing:15.200157pt;}
.ws91{word-spacing:15.225342pt;}
.ws4a{word-spacing:15.259269pt;}
.ws27{word-spacing:15.259358pt;}
.ws80{word-spacing:15.647386pt;}
.ws6a{word-spacing:15.681313pt;}
.wsa8{word-spacing:15.706499pt;}
.ws45{word-spacing:15.715239pt;}
.ws9f{word-spacing:15.749165pt;}
.wsc1{word-spacing:15.774351pt;}
.wsb4{word-spacing:15.964040pt;}
.wsb0{word-spacing:16.162469pt;}
.wscb{word-spacing:16.188425pt;}
.ws65{word-spacing:16.196395pt;}
.ws36{word-spacing:16.221581pt;}
.wsd4{word-spacing:16.587149pt;}
.ws4d{word-spacing:16.593253pt;}
.ws59{word-spacing:16.643625pt;}
.ws50{word-spacing:16.677551pt;}
.ws12{word-spacing:16.677640pt;}
.ws2c{word-spacing:16.677700pt;}
.wsb6{word-spacing:17.065669pt;}
.ws7a{word-spacing:17.074409pt;}
.ws3b{word-spacing:17.133522pt;}
.ws6{word-spacing:17.133570pt;}
.wse{word-spacing:17.133630pt;}
.ws70{word-spacing:17.546825pt;}
.wsdc{word-spacing:17.599388pt;}
.ws61{word-spacing:17.614678pt;}
.wsc4{word-spacing:17.828396pt;}
.wsa5{word-spacing:18.027981pt;}
.ws96{word-spacing:18.036722pt;}
.ws5c{word-spacing:18.095834pt;}
.ws6d{word-spacing:18.319449pt;}
.ws72{word-spacing:18.483952pt;}
.ws9e{word-spacing:18.492692pt;}
.ws40{word-spacing:18.517878pt;}
.ws76{word-spacing:18.543064pt;}
.ws3e{word-spacing:18.551804pt;}
.ws28{word-spacing:18.551853pt;}
.ws10{word-spacing:18.551912pt;}
.wsc3{word-spacing:18.795982pt;}
.wsb5{word-spacing:18.965108pt;}
.ws87{word-spacing:18.999034pt;}
.ws3{word-spacing:19.007842pt;}
.ws5b{word-spacing:19.032960pt;}
.wscd{word-spacing:19.357523pt;}
.ws98{word-spacing:19.480190pt;}
.ws75{word-spacing:19.488931pt;}
.ws4f{word-spacing:19.514116pt;}
.wsd7{word-spacing:19.652723pt;}
.ws4b{word-spacing:19.910974pt;}
.ws66{word-spacing:19.936160pt;}
.ws8d{word-spacing:19.970087pt;}
.ws8{word-spacing:19.970195pt;}
.wsa{word-spacing:19.970254pt;}
.ws7{word-spacing:20.349500pt;}
.ws56{word-spacing:20.383390pt;}
.ws37{word-spacing:20.417317pt;}
.wsd0{word-spacing:20.443273pt;}
.wsd3{word-spacing:20.664962pt;}
.wsb8{word-spacing:20.822915pt;}
.wsa3{word-spacing:20.839360pt;}
.wsc0{word-spacing:20.932399pt;}
.wsac{word-spacing:21.261404pt;}
.wsbe{word-spacing:21.354443pt;}
.ws3f{word-spacing:21.388369pt;}
.ws2d{word-spacing:21.388536pt;}
.ws6e{word-spacing:21.801673pt;}
.wsb7{word-spacing:21.810413pt;}
.ws52{word-spacing:21.835599pt;}
.ws90{word-spacing:22.266383pt;}
.ws92{word-spacing:22.291569pt;}
.ws62{word-spacing:22.325496pt;}
.ws8c{word-spacing:22.396960pt;}
.ws1b{word-spacing:22.461797pt;}
.ws8a{word-spacing:22.747540pt;}
.wsc2{word-spacing:22.806652pt;}
.ws47{word-spacing:23.709852pt;}
.ws25{word-spacing:23.709968pt;}
.ws2{word-spacing:23.710027pt;}
.ws67{word-spacing:23.768964pt;}
.wsdf{word-spacing:24.011095pt;}
.ws7e{word-spacing:24.224934pt;}
.ws55{word-spacing:24.596607pt;}
.ws2a{word-spacing:25.103004pt;}
.wsd8{word-spacing:25.477113pt;}
.ws93{word-spacing:25.584105pt;}
.ws84{word-spacing:25.609291pt;}
.wsbf{word-spacing:26.099187pt;}
.wsaf{word-spacing:26.428193pt;}
.ws99{word-spacing:26.884163pt;}
.wsb9{word-spacing:26.968461pt;}
.ws8f{word-spacing:27.061499pt;}
.ws79{word-spacing:27.331393pt;}
.wsb1{word-spacing:27.948254pt;}
.ws6c{word-spacing:28.411929pt;}
.wscf{word-spacing:29.325917pt;}
.ws8e{word-spacing:29.695542pt;}
.ws1a{word-spacing:30.003757pt;}
.wsaa{word-spacing:30.379221pt;}
.wsda{word-spacing:30.744199pt;}
.wsd2{word-spacing:31.664049pt;}
.ws74{word-spacing:31.688019pt;}
.wse0{word-spacing:32.103189pt;}
.ws4e{word-spacing:32.283306pt;}
.ws51{word-spacing:32.616405pt;}
.wsad{word-spacing:33.038449pt;}
.ws1e{word-spacing:36.158007pt;}
.ws7f{word-spacing:36.719102pt;}
.ws89{word-spacing:36.778214pt;}
.wsca{word-spacing:37.093531pt;}
.ws9c{word-spacing:37.508171pt;}
.wsae{word-spacing:37.673709pt;}
.ws85{word-spacing:37.783193pt;}
.wsb{word-spacing:37.964306pt;}
.wsdb{word-spacing:39.265031pt;}
.wsa9{word-spacing:42.746424pt;}
.wsa6{word-spacing:43.468676pt;}
.ws81{word-spacing:46.883529pt;}
.wsd9{word-spacing:48.845836pt;}
.ws20{word-spacing:53.300288pt;}
.wsd1{word-spacing:53.662225pt;}
.ws53{word-spacing:57.529665pt;}
.ws11{word-spacing:63.509830pt;}
.ws8b{word-spacing:64.755266pt;}
.ws30{word-spacing:864.236321pt;}
.wsb3{word-spacing:865.654603pt;}
.ws82{word-spacing:867.072886pt;}
._48{width:3.420649pt;}
._47{width:13.427027pt;}
._3c{width:14.839785pt;}
._2f{width:17.564254pt;}
._46{width:18.554547pt;}
._2d{width:20.141767pt;}
._6{width:21.637422pt;}
._2a{width:22.540512pt;}
._3{width:23.545650pt;}
._10{width:24.938687pt;}
._18{width:25.998249pt;}
._27{width:27.112417pt;}
._25{width:28.231182pt;}
._1c{width:29.218899pt;}
._f{width:30.577978pt;}
._c{width:31.996261pt;}
._23{width:33.157006pt;}
._15{width:34.334346pt;}
._2c{width:35.656166pt;}
._16{width:36.673140pt;}
._29{width:37.567638pt;}
._1e{width:39.105213pt;}
._1b{width:40.455582pt;}
._b{width:41.350079pt;}
._17{width:42.261880pt;}
._0{width:43.165029pt;}
._37{width:44.131313pt;}
._4{width:45.030590pt;}
._28{width:45.942391pt;}
._12{width:46.947471pt;}
._20{width:47.845212pt;}
._26{width:49.322756pt;}
._14{width:50.746566pt;}
._13{width:51.839338pt;}
._1a{width:52.852183pt;}
._1{width:53.756218pt;}
._33{width:55.018067pt;}
._e{width:56.027099pt;}
._11{width:56.946842pt;}
._5{width:58.622780pt;}
._30{width:59.703657pt;}
._9{width:60.839039pt;}
._d{width:61.949292pt;}
._1f{width:63.730285pt;}
._39{width:64.621598pt;}
._21{width:65.807590pt;}
._a{width:66.728043pt;}
._7{width:68.103716pt;}
._41{width:69.065614pt;}
._34{width:70.062437pt;}
._2{width:71.209832pt;}
._3a{width:72.183933pt;}
._2b{width:73.233283pt;}
._2e{width:74.616152pt;}
._3f{width:75.667614pt;}
._40{width:76.822367pt;}
._19{width:77.990149pt;}
._3b{width:79.050243pt;}
._24{width:80.082415pt;}
._32{width:81.323657pt;}
._3e{width:82.665505pt;}
._1d{width:83.583588pt;}
._31{width:85.228635pt;}
._38{width:86.845310pt;}
._45{width:87.837299pt;}
._35{width:88.812742pt;}
._4b{width:90.031585pt;}
._22{width:91.074912pt;}
._44{width:92.208091pt;}
._4c{width:93.746292pt;}
._42{width:95.145180pt;}
._8{width:96.165113pt;}
._36{width:101.269433pt;}
._3d{width:102.613946pt;}
._4a{width:103.619478pt;}
._49{width:113.271019pt;}
._4d{width:786.978216pt;}
._43{width:788.848379pt;}
.fs1{font-size:26.667467pt;}
.fs7{font-size:37.333363pt;}
.fs4{font-size:37.334453pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:42.666701pt;}
.fs0{font-size:42.667947pt;}
.fs8{font-size:48.000038pt;}
.fs3{font-size:58.668427pt;}
.fs2{font-size:80.002400pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:3.466635pt;}
.y3a{bottom:14.133301pt;}
.y10e{bottom:102.400000pt;}
.y125{bottom:102.720000pt;}
.y1d2{bottom:103.040000pt;}
.yeb{bottom:103.360000pt;}
.y1ac{bottom:103.680000pt;}
.yc4{bottom:104.640000pt;}
.y6a{bottom:105.920000pt;}
.y92{bottom:106.880000pt;}
.y181{bottom:110.720000pt;}
.y157{bottom:111.360000pt;}
.y38{bottom:111.682560pt;}
.y1f{bottom:112.002560pt;}
.y10d{bottom:116.480000pt;}
.y124{bottom:116.800000pt;}
.yea{bottom:117.760000pt;}
.y1ab{bottom:118.080000pt;}
.yc3{bottom:119.040000pt;}
.y69{bottom:120.640000pt;}
.y91{bottom:121.600000pt;}
.y180{bottom:125.760000pt;}
.y156{bottom:126.080000pt;}
.y37{bottom:126.722907pt;}
.y1e{bottom:127.042907pt;}
.y1d1{bottom:129.600000pt;}
.y123{bottom:131.200000pt;}
.y10c{bottom:131.520000pt;}
.ye9{bottom:132.800000pt;}
.yc2{bottom:133.440000pt;}
.y68{bottom:135.360000pt;}
.y90{bottom:136.000000pt;}
.y17f{bottom:140.160000pt;}
.y36{bottom:140.483213pt;}
.y155{bottom:140.800000pt;}
.y1d{bottom:140.803227pt;}
.y1d0{bottom:143.040000pt;}
.y10b{bottom:145.280000pt;}
.y122{bottom:146.240000pt;}
.ye8{bottom:146.880000pt;}
.y1aa{bottom:147.520000pt;}
.yc1{bottom:148.480000pt;}
.y67{bottom:149.760000pt;}
.y8f{bottom:151.360000pt;}
.y17e{bottom:154.560000pt;}
.y35{bottom:154.883547pt;}
.y154{bottom:155.200000pt;}
.y1c{bottom:155.203547pt;}
.y1cf{bottom:157.120000pt;}
.y10a{bottom:160.320000pt;}
.ye7{bottom:161.280000pt;}
.y1a9{bottom:162.240000pt;}
.yc0{bottom:162.560000pt;}
.y66{bottom:164.800000pt;}
.y8e{bottom:165.440000pt;}
.y17d{bottom:169.280000pt;}
.y1ce{bottom:169.600000pt;}
.y1b{bottom:169.923893pt;}
.y153{bottom:170.240000pt;}
.y109{bottom:175.040000pt;}
.y121{bottom:175.360000pt;}
.ye6{bottom:176.320000pt;}
.ybf{bottom:177.280000pt;}
.y65{bottom:179.200000pt;}
.y8d{bottom:180.160000pt;}
.y1cd{bottom:183.360000pt;}
.y17c{bottom:183.680000pt;}
.y1a{bottom:184.644227pt;}
.y152{bottom:184.960000pt;}
.y108{bottom:189.440000pt;}
.y120{bottom:190.080000pt;}
.ye5{bottom:190.400000pt;}
.ybe{bottom:192.000000pt;}
.y64{bottom:193.920000pt;}
.y8c{bottom:195.200000pt;}
.y1cc{bottom:195.840000pt;}
.y17b{bottom:198.400000pt;}
.y34{bottom:198.724547pt;}
.y151{bottom:199.040000pt;}
.y19{bottom:199.044560pt;}
.y107{bottom:204.480000pt;}
.y11f{bottom:204.800000pt;}
.ye4{bottom:205.120000pt;}
.y1a8{bottom:206.080000pt;}
.ybd{bottom:206.720000pt;}
.y63{bottom:208.960000pt;}
.y8b{bottom:209.600000pt;}
.y17a{bottom:212.800000pt;}
.y33{bottom:213.444880pt;}
.y150{bottom:213.760000pt;}
.y18{bottom:215.684933pt;}
.y106{bottom:219.200000pt;}
.y11e{bottom:219.520000pt;}
.ye3{bottom:219.840000pt;}
.ybc{bottom:220.800000pt;}
.y1cb{bottom:222.720000pt;}
.y62{bottom:223.680000pt;}
.y8a{bottom:224.320000pt;}
.y14f{bottom:227.840000pt;}
.y32{bottom:227.845213pt;}
.y17{bottom:228.485227pt;}
.y105{bottom:233.920000pt;}
.ye2{bottom:234.240000pt;}
.ybb{bottom:235.520000pt;}
.y1a7{bottom:235.840000pt;}
.y1ca{bottom:236.160000pt;}
.y61{bottom:238.080000pt;}
.y89{bottom:238.720000pt;}
.y179{bottom:242.240000pt;}
.y31{bottom:242.565547pt;}
.y14e{bottom:242.880000pt;}
.y16{bottom:243.205560pt;}
.y104{bottom:248.320000pt;}
.ye1{bottom:249.280000pt;}
.yba{bottom:250.240000pt;}
.y60{bottom:253.120000pt;}
.y88{bottom:253.440000pt;}
.y178{bottom:256.960000pt;}
.y15{bottom:257.605893pt;}
.y14d{bottom:259.520000pt;}
.y1c9{bottom:262.720000pt;}
.y11d{bottom:263.680000pt;}
.y103{bottom:264.000000pt;}
.yb9{bottom:264.640000pt;}
.y1a6{bottom:265.280000pt;}
.y5f{bottom:267.520000pt;}
.y87{bottom:268.160000pt;}
.y14c{bottom:271.680000pt;}
.y177{bottom:272.000000pt;}
.y14{bottom:272.006227pt;}
.y30{bottom:272.326227pt;}
.y1c8{bottom:276.160000pt;}
.y102{bottom:278.400000pt;}
.ye0{bottom:278.720000pt;}
.yb8{bottom:279.680000pt;}
.y5e{bottom:282.240000pt;}
.y86{bottom:283.520000pt;}
.y176{bottom:286.080000pt;}
.y14b{bottom:286.720000pt;}
.y13{bottom:287.046573pt;}
.y2f{bottom:287.366573pt;}
.y1c7{bottom:289.600000pt;}
.ydf{bottom:293.120000pt;}
.y101{bottom:293.440000pt;}
.yb7{bottom:293.760000pt;}
.y1a5{bottom:295.360000pt;}
.y5d{bottom:296.960000pt;}
.y85{bottom:297.280000pt;}
.y175{bottom:300.800000pt;}
.y14a{bottom:301.120000pt;}
.y12{bottom:301.446893pt;}
.y2e{bottom:301.766907pt;}
.y100{bottom:307.200000pt;}
.y11c{bottom:307.520000pt;}
.yb6{bottom:308.160000pt;}
.y1a4{bottom:309.120000pt;}
.y5c{bottom:311.360000pt;}
.y84{bottom:312.640000pt;}
.y174{bottom:315.200000pt;}
.y149{bottom:315.520000pt;}
.y11{bottom:315.527227pt;}
.y2d{bottom:315.847227pt;}
.y1c6{bottom:317.120000pt;}
.yff{bottom:321.600000pt;}
.yb5{bottom:322.560000pt;}
.y1a3{bottom:323.520000pt;}
.y5b{bottom:326.080000pt;}
.y83{bottom:326.720000pt;}
.y173{bottom:329.600000pt;}
.y148{bottom:329.920000pt;}
.y10{bottom:329.927547pt;}
.y2c{bottom:330.247560pt;}
.yfe{bottom:336.320000pt;}
.y11b{bottom:336.640000pt;}
.yde{bottom:336.960000pt;}
.yb4{bottom:337.280000pt;}
.y1a2{bottom:338.560000pt;}
.y5a{bottom:341.120000pt;}
.y82{bottom:341.440000pt;}
.y172{bottom:344.320000pt;}
.y147{bottom:344.640000pt;}
.yf{bottom:344.647893pt;}
.y2b{bottom:345.287907pt;}
.yfd{bottom:351.040000pt;}
.ydd{bottom:351.680000pt;}
.yb3{bottom:352.000000pt;}
.y1a1{bottom:353.280000pt;}
.y59{bottom:355.520000pt;}
.y81{bottom:355.840000pt;}
.y171{bottom:359.040000pt;}
.ye{bottom:359.048213pt;}
.y146{bottom:359.360000pt;}
.y2a{bottom:359.688227pt;}
.y1c5{bottom:365.120000pt;}
.y11a{bottom:365.760000pt;}
.ydc{bottom:366.080000pt;}
.yb2{bottom:366.720000pt;}
.y1a0{bottom:367.680000pt;}
.y58{bottom:369.920000pt;}
.y80{bottom:370.240000pt;}
.y145{bottom:373.760000pt;}
.yd{bottom:373.768560pt;}
.y29{bottom:374.408573pt;}
.y1c4{bottom:379.840000pt;}
.yfc{bottom:380.480000pt;}
.ydb{bottom:380.800000pt;}
.yb1{bottom:381.120000pt;}
.y19f{bottom:382.400000pt;}
.y119{bottom:382.720000pt;}
.y57{bottom:384.640000pt;}
.y7f{bottom:384.960000pt;}
.y144{bottom:388.480000pt;}
.yc{bottom:388.488893pt;}
.y28{bottom:389.128907pt;}
.y1c3{bottom:394.880000pt;}
.yda{bottom:395.200000pt;}
.y118{bottom:395.520000pt;}
.yb0{bottom:395.840000pt;}
.y19e{bottom:396.800000pt;}
.y56{bottom:399.360000pt;}
.y7e{bottom:400.320000pt;}
.y170{bottom:402.880000pt;}
.y143{bottom:403.200000pt;}
.yb{bottom:403.529240pt;}
.y1c2{bottom:408.960000pt;}
.yd9{bottom:409.920000pt;}
.yaf{bottom:410.880000pt;}
.y19d{bottom:411.520000pt;}
.y7d{bottom:414.400000pt;}
.y16f{bottom:417.600000pt;}
.y142{bottom:417.920000pt;}
.ya{bottom:418.249573pt;}
.y27{bottom:418.569587pt;}
.y1c1{bottom:423.680000pt;}
.yd8{bottom:424.320000pt;}
.yae{bottom:424.640000pt;}
.y19c{bottom:425.920000pt;}
.y55{bottom:428.800000pt;}
.y7c{bottom:429.120000pt;}
.y141{bottom:432.000000pt;}
.y9{bottom:432.329893pt;}
.y26{bottom:432.969907pt;}
.y1c0{bottom:438.080000pt;}
.yd7{bottom:439.040000pt;}
.yad{bottom:439.360000pt;}
.y19b{bottom:440.640000pt;}
.y7b{bottom:443.520000pt;}
.y140{bottom:446.720000pt;}
.y8{bottom:447.050227pt;}
.y1bf{bottom:452.800000pt;}
.yd6{bottom:453.760000pt;}
.yac{bottom:454.080000pt;}
.y117{bottom:454.400000pt;}
.y19a{bottom:455.360000pt;}
.y7a{bottom:457.920000pt;}
.y16e{bottom:461.120000pt;}
.y7{bottom:461.450560pt;}
.y13f{bottom:461.760000pt;}
.y25{bottom:462.090573pt;}
.y1be{bottom:467.520000pt;}
.yd5{bottom:468.480000pt;}
.y116{bottom:469.120000pt;}
.y199{bottom:470.080000pt;}
.yab{bottom:470.720000pt;}
.y79{bottom:473.280000pt;}
.y54{bottom:473.600000pt;}
.y13e{bottom:475.520000pt;}
.y16d{bottom:475.840000pt;}
.y6{bottom:476.490907pt;}
.y1bd{bottom:482.240000pt;}
.yaa{bottom:483.200000pt;}
.y115{bottom:483.520000pt;}
.y198{bottom:484.800000pt;}
.yd4{bottom:485.760000pt;}
.y53{bottom:487.360000pt;}
.y13d{bottom:490.240000pt;}
.y16c{bottom:490.560000pt;}
.y5{bottom:491.211240pt;}
.y1bc{bottom:496.960000pt;}
.yfb{bottom:497.600000pt;}
.ya9{bottom:497.920000pt;}
.y197{bottom:499.840000pt;}
.y52{bottom:501.760000pt;}
.y78{bottom:502.400000pt;}
.y13c{bottom:504.960000pt;}
.y16b{bottom:505.600000pt;}
.y4{bottom:505.931573pt;}
.y1bb{bottom:512.000000pt;}
.yd3{bottom:512.320000pt;}
.ya8{bottom:512.640000pt;}
.yfa{bottom:512.960000pt;}
.y196{bottom:513.920000pt;}
.y77{bottom:516.480000pt;}
.y51{bottom:516.800000pt;}
.y13b{bottom:519.360000pt;}
.y16a{bottom:519.680000pt;}
.y3{bottom:520.011907pt;}
.y24{bottom:520.971920pt;}
.y1ba{bottom:526.080000pt;}
.yf9{bottom:526.720000pt;}
.yd2{bottom:527.040000pt;}
.ya7{bottom:527.360000pt;}
.y195{bottom:529.280000pt;}
.y50{bottom:531.200000pt;}
.y13a{bottom:534.400000pt;}
.y169{bottom:534.720000pt;}
.y2{bottom:535.052240pt;}
.y1b9{bottom:541.120000pt;}
.yd1{bottom:541.440000pt;}
.ya6{bottom:541.760000pt;}
.y194{bottom:544.000000pt;}
.y76{bottom:545.920000pt;}
.y4f{bottom:546.240000pt;}
.y168{bottom:548.800000pt;}
.y1{bottom:548.812560pt;}
.y139{bottom:549.440000pt;}
.y23{bottom:550.092587pt;}
.ya5{bottom:556.160000pt;}
.y114{bottom:556.480000pt;}
.y193{bottom:558.400000pt;}
.y4e{bottom:560.640000pt;}
.y138{bottom:563.840000pt;}
.y113{bottom:570.560000pt;}
.ya4{bottom:570.880000pt;}
.yd0{bottom:571.200000pt;}
.y192{bottom:572.800000pt;}
.y4d{bottom:575.040000pt;}
.y137{bottom:578.240000pt;}
.y167{bottom:578.560000pt;}
.y1b8{bottom:584.640000pt;}
.ya3{bottom:585.280000pt;}
.y112{bottom:585.600000pt;}
.yf8{bottom:586.240000pt;}
.y191{bottom:587.520000pt;}
.y75{bottom:589.440000pt;}
.y4c{bottom:589.760000pt;}
.y136{bottom:592.640000pt;}
.y166{bottom:595.200000pt;}
.y1b7{bottom:599.360000pt;}
.ycf{bottom:599.680000pt;}
.ya2{bottom:600.320000pt;}
.y190{bottom:601.920000pt;}
.y4b{bottom:604.480000pt;}
.y74{bottom:604.800000pt;}
.y135{bottom:607.680000pt;}
.y165{bottom:608.000000pt;}
.y1b6{bottom:613.760000pt;}
.ya1{bottom:614.400000pt;}
.yce{bottom:614.720000pt;}
.y18f{bottom:616.320000pt;}
.yf7{bottom:617.280000pt;}
.y73{bottom:619.200000pt;}
.y4a{bottom:619.520000pt;}
.y134{bottom:622.080000pt;}
.y164{bottom:623.360000pt;}
.y1b5{bottom:628.480000pt;}
.ya0{bottom:629.120000pt;}
.yf6{bottom:629.440000pt;}
.y18e{bottom:631.040000pt;}
.y49{bottom:634.240000pt;}
.y133{bottom:636.160000pt;}
.y163{bottom:636.800000pt;}
.y1b4{bottom:642.880000pt;}
.ycd{bottom:643.840000pt;}
.y9f{bottom:644.160000pt;}
.yf5{bottom:644.800000pt;}
.y18d{bottom:646.080000pt;}
.y48{bottom:648.640000pt;}
.y132{bottom:650.880000pt;}
.y162{bottom:651.840000pt;}
.y1b3{bottom:657.600000pt;}
.y9e{bottom:658.560000pt;}
.yf4{bottom:659.200000pt;}
.y18c{bottom:660.480000pt;}
.y72{bottom:663.040000pt;}
.y47{bottom:663.360000pt;}
.y131{bottom:665.280000pt;}
.y161{bottom:665.920000pt;}
.y1b2{bottom:672.320000pt;}
.y9d{bottom:672.960000pt;}
.ycc{bottom:673.280000pt;}
.yf3{bottom:673.600000pt;}
.y18b{bottom:675.840000pt;}
.y71{bottom:677.760000pt;}
.y46{bottom:678.400000pt;}
.y130{bottom:680.000000pt;}
.y160{bottom:680.960000pt;}
.y9c{bottom:688.000000pt;}
.y111{bottom:688.320000pt;}
.yf2{bottom:689.280000pt;}
.ycb{bottom:690.240000pt;}
.y70{bottom:692.160000pt;}
.y45{bottom:692.800000pt;}
.y12f{bottom:695.360000pt;}
.y1b1{bottom:701.760000pt;}
.yca{bottom:702.720000pt;}
.y9b{bottom:703.040000pt;}
.y18a{bottom:704.960000pt;}
.y44{bottom:707.520000pt;}
.y12e{bottom:709.120000pt;}
.y15f{bottom:709.760000pt;}
.y9a{bottom:717.120000pt;}
.yc9{bottom:717.440000pt;}
.yf1{bottom:718.080000pt;}
.y189{bottom:719.360000pt;}
.y6f{bottom:721.600000pt;}
.y43{bottom:721.920000pt;}
.y12d{bottom:723.840000pt;}
.y15e{bottom:724.480000pt;}
.y99{bottom:731.840000pt;}
.yf0{bottom:732.160000pt;}
.y188{bottom:734.080000pt;}
.y6e{bottom:736.640000pt;}
.y42{bottom:737.280000pt;}
.y12c{bottom:738.240000pt;}
.y15d{bottom:738.880000pt;}
.y22{bottom:740.816960pt;}
.y98{bottom:746.240000pt;}
.yc8{bottom:746.560000pt;}
.yef{bottom:746.880000pt;}
.y1b0{bottom:748.160000pt;}
.y187{bottom:748.800000pt;}
.y41{bottom:751.360000pt;}
.y12b{bottom:753.920000pt;}
.y15c{bottom:754.560000pt;}
.y1d7{bottom:757.440000pt;}
.y1da{bottom:758.400000pt;}
.y21{bottom:759.697387pt;}
.y110{bottom:760.960000pt;}
.yc7{bottom:761.280000pt;}
.y97{bottom:761.600000pt;}
.y1af{bottom:762.560000pt;}
.y186{bottom:763.520000pt;}
.y6d{bottom:765.760000pt;}
.y40{bottom:766.080000pt;}
.y12a{bottom:768.000000pt;}
.y15b{bottom:768.960000pt;}
.y1d9{bottom:770.880000pt;}
.y1d6{bottom:771.200000pt;}
.y10f{bottom:775.680000pt;}
.y96{bottom:776.000000pt;}
.y1ae{bottom:777.280000pt;}
.y185{bottom:778.880000pt;}
.y6c{bottom:780.480000pt;}
.y3f{bottom:781.760000pt;}
.y129{bottom:782.720000pt;}
.y15a{bottom:783.040000pt;}
.y1d5{bottom:784.320000pt;}
.y95{bottom:790.400000pt;}
.yc6{bottom:790.720000pt;}
.yee{bottom:791.040000pt;}
.y1ad{bottom:792.320000pt;}
.y184{bottom:793.600000pt;}
.y6b{bottom:795.200000pt;}
.y3e{bottom:795.520000pt;}
.y128{bottom:797.440000pt;}
.y159{bottom:797.760000pt;}
.y1d4{bottom:798.080000pt;}
.y94{bottom:805.120000pt;}
.yc5{bottom:805.440000pt;}
.yed{bottom:806.080000pt;}
.y183{bottom:807.360000pt;}
.y20{bottom:807.378480pt;}
.y3d{bottom:811.200000pt;}
.y127{bottom:812.480000pt;}
.y158{bottom:813.120000pt;}
.y1d8{bottom:813.440000pt;}
.y39{bottom:836.533365pt;}
.y93{bottom:840.000000pt;}
.yec{bottom:841.600000pt;}
.y182{bottom:843.200000pt;}
.y1d3{bottom:845.120000pt;}
.y3c{bottom:846.080000pt;}
.y126{bottom:847.040000pt;}
.h6{height:24.863933pt;}
.h13{height:36.622425pt;}
.hd{height:36.640654pt;}
.h5{height:36.641724pt;}
.ha{height:37.625030pt;}
.h12{height:39.200654pt;}
.hf{height:40.480654pt;}
.h2{height:41.855422pt;}
.h9{height:41.875034pt;}
.h1{height:41.876256pt;}
.h7{height:42.916667pt;}
.hc{height:44.435034pt;}
.h11{height:47.109413pt;}
.h4{height:57.579852pt;}
.h3{height:80.627419pt;}
.hb{height:904.000000pt;}
.h8{height:906.666667pt;}
.h0{height:909.333333pt;}
.h10{height:913.333333pt;}
.he{height:920.000000pt;}
.w1{width:477.215983pt;}
.w3{width:801.333333pt;}
.w2{width:805.333333pt;}
.w0{width:806.666667pt;}
.w6{width:810.666667pt;}
.w5{width:813.333333pt;}
.w4{width:818.666667pt;}
.x0{left:0.000000pt;}
.x2f{left:118.080000pt;}
.x25{left:121.600000pt;}
.x1a{left:122.560000pt;}
.x1c{left:123.520000pt;}
.x1{left:124.802853pt;}
.x3{left:126.082880pt;}
.x5{left:127.042907pt;}
.x6{left:128.002933pt;}
.x10{left:133.333333pt;}
.x1b{left:134.400000pt;}
.x1d{left:135.680000pt;}
.x2{left:137.603147pt;}
.x4{left:138.883173pt;}
.x22{left:156.480000pt;}
.x11{left:157.760000pt;}
.x13{left:158.720000pt;}
.x23{left:168.320000pt;}
.x12{left:169.600000pt;}
.x14{left:170.880000pt;}
.x28{left:171.840000pt;}
.x27{left:182.400000pt;}
.x2e{left:305.920000pt;}
.x19{left:310.720000pt;}
.x7{left:357.128173pt;}
.x31{left:387.200000pt;}
.x1e{left:391.680000pt;}
.x20{left:392.640000pt;}
.x21{left:393.600000pt;}
.xb{left:394.569027pt;}
.xc{left:395.529053pt;}
.xd{left:396.489080pt;}
.xf{left:397.449093pt;}
.x30{left:401.920000pt;}
.x26{left:403.520000pt;}
.x1f{left:404.480000pt;}
.xa{left:406.729307pt;}
.xe{left:408.329347pt;}
.x15{left:425.600000pt;}
.x17{left:426.560000pt;}
.x18{left:427.520000pt;}
.x24{left:436.800000pt;}
.x16{left:437.760000pt;}
.x29{left:439.040000pt;}
.x2d{left:440.000000pt;}
.x2b{left:440.960000pt;}
.x2a{left:450.880000pt;}
.x2c{left:454.720000pt;}
.x9{left:501.451480pt;}
.x8{left:512.971747pt;}
}

