﻿#divSearch {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}

    #divSearch > .content {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

        #divSearch > .content .searchform {
            position: absolute;
            width: 100%;
            top: 1px;
            padding-top: 5px;
            height: 90px;
            background-color: #141518;
            display: table;
        }

            #divSearch > .content .searchform .inputs {
                display: table-cell;
                vertical-align: middle;
                width: 100%;
                padding: 0 20px 0 20px;
                box-sizing: border-box;
                text-align: center;
            }

                #divSearch > .content .searchform .inputs input.textbox {
                    width: 50%;
                    height: 30px;
                    text-align: center;
                    font-size: 14px;
                }

                #divSearch > .content .searchform .inputs .searchoptions {
                    display: inline-block;
                    margin-top: 10px;
                    width: 50%;
                    text-align: left;
                    font-size: 14px;
                }

                    #divSearch > .content .searchform .inputs .searchoptions .searchoption {
                        text-align: center;
                        margin-left: 30px;
                        position: relative;
                    }

        #divSearch > .content .results {
            position: absolute;
            top: 96px;
            bottom: 0;
            width: 100%;
            overflow-x: hidden;
            overflow-y: auto;
        }

            #divSearch > .content .results .objects {
                position: absolute;
                left: 1px;
                top: 0;
                right: 1px;
                padding-bottom: 40px;
            }

                #divSearch > .content .results .objects .noresults {
                    position: absolute;
                    display: table;
                    width: 100%;
                    height: 62px;
                    background-color: #3A5058;
                    margin-top: 1px;
                    font-size: 12px;
                    z-index: -1;
                    top: 0;
                }

                    #divSearch > .content .results .objects .noresults .info {
                        display: table-cell;
                        text-align: center;
                        vertical-align: middle;
                    }

                #divSearch > .content .results .objects .user {
                    position: relative;
                    display: table;
                    width: 100%;
                    height: 62px;
                    background-color: #3E4146;
                    margin-top: 1px;
                    font-size: 12px;
                }

                    #divSearch > .content .results .objects .user .type {
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        cursor: pointer;
                        width: 100px;
                        color: #77CAE6;
                        text-align: center;
                    }

                    #divSearch > .content .results .objects .user .picture {
                        position: relative;
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        width: 50px;
                        box-sizing: border-box;
                        cursor: pointer;
                    }

                        #divSearch > .content .results .objects .user .picture .pictureholder {
                            position: relative;
                        }

                            #divSearch > .content .results .objects .user .picture .pictureholder > img.status {
                                position: absolute;
                                bottom: 0;
                                right: 0;
                                width: 16px;
                            }

                            #divSearch > .content .results .objects .user .picture .pictureholder > img.image {
                                width: 50px;
                                max-height: 50px;
                            }

                    #divSearch > .content .results .objects .user .info {
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        cursor: pointer;
                    }

                    #divSearch > .content .results .objects .user .button {
                        display: table-cell;
                        width: 130px;
                        vertical-align: middle;
                        background-color: #191B1F;
                        font-size: 14px;
                        text-align: center;
                        cursor: pointer;
                        position: relative;
                    }

                        #divSearch > .content .results .objects .user .button.borderleft {
                            border-left: 1px solid #3E4146;
                        }

                #divSearch > .content .results .objects .team {
                    position: relative;
                    display: table;
                    width: 100%;
                    height: 62px;
                    background-color: #3E4146;
                    margin-top: 1px;
                    font-size: 12px;
                }

                    #divSearch > .content .results .objects .team .type {
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        cursor: pointer;
                        width: 100px;
                        color: #77CAE6;
                        text-align: center;
                    }

                    #divSearch > .content .results .objects .team .picture {
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        width: 50px;
                        box-sizing: border-box;
                        cursor: pointer;
                    }

                        #divSearch > .content .results .objects .team .picture > IMG {
                            width: 50px;
                            max-height: 50px;
                        }

                    #divSearch > .content .results .objects .team .info {
                        display: table-cell;
                        padding-left: 10px;
                        vertical-align: middle;
                        cursor: pointer;
                    }

                    #divSearch > .content .results .objects .team .button {
                        display: table-cell;
                        width: 130px;
                        vertical-align: middle;
                        background-color: #191B1F;
                        font-size: 14px;
                        text-align: center;
                        cursor: pointer;
                        position: relative;
                    }

                        #divSearch > .content .results .objects .team .button.borderleft {
                            border-left: 1px solid #3E4146;
                        }
